From 82d5887afffc607d5517918fff6a928b078da814 Mon Sep 17 00:00:00 2001 From: tyler-mairose-sp Date: Fri, 12 Jul 2024 19:30:05 +0000 Subject: [PATCH] Apply automatic changes --- dereferenced/deref-sailpoint-api.beta.json | 93 +- dereferenced/deref-sailpoint-api.beta.yaml | 70 +- dereferenced/deref-sailpoint-api.v3.json | 95 +- dereferenced/deref-sailpoint-api.v3.yaml | 73 +- postman/collections/sailpoint-api-beta.json | 9492 +++++++++---------- postman/collections/sailpoint-api-nerm.json | 1706 ++-- postman/collections/sailpoint-api-v3.json | 6376 ++++++------- 7 files changed, 8830 insertions(+), 9075 deletions(-) diff --git a/dereferenced/deref-sailpoint-api.beta.json b/dereferenced/deref-sailpoint-api.beta.json index 1a57e077..3b7654fa 100644 --- a/dereferenced/deref-sailpoint-api.beta.json +++ b/dereferenced/deref-sailpoint-api.beta.json @@ -3956,7 +3956,7 @@ "schema": { "type": "string" }, - "description": "If provided, filters the returned list according to what is visible to the indicated ROLE_SUBADMIN or SOURCE_SUBADMIN identity. The value of the parameter is either an identity ID, or the special value **me**, which is shorthand for the calling Identity's ID.\n\nA 400 Bad Request error is returned if the **for-subadmin** parameter is specified for an identity that is not a subadmin.", + "description": "If provided, filters the returned list according to what is visible to the indicated ROLE_SUBADMIN or SOURCE_SUBADMIN identity. The value of the parameter is either an identity ID, or the special value **me**, which is shorthand for the calling identity's ID.\n\nA 400 Bad Request error is returned if the **for-subadmin** parameter is specified for an identity that is not a subadmin.", "example": "8c190e6787aa4ed9a90bd9d5344523fb", "required": false }, @@ -8814,12 +8814,12 @@ "Access Profiles" ], "summary": "List Access Profile's Entitlements", - "description": "This API lists the Entitlements associated with a given Access Profile\n\nA token with API, ORG_ADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to invoke this API. In addition, a token with SOURCE_SUBADMIN authority must have access to the Source associated with the given Access Profile", + "description": "Use this API to get a list of an access profile's entitlements. \nA token with API, ORG_ADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API. In addition, a token with SOURCE_SUBADMIN authority must have access to the source associated with the specified access profile.", "parameters": [ { "name": "id", "in": "path", - "description": "ID of the containing Access Profile", + "description": "ID of the access profile containing the entitlements.", "required": true, "schema": { "type": "string", @@ -8870,7 +8870,7 @@ "schema": { "type": "string" }, - "description": "Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results)\n\nFiltering is supported for the following fields and operators:\n\n**id**: *eq, in*\n\n**name**: *eq, sw*\n\n**attribute**: *eq, sw*\n\n**value**: *eq, sw*\n\n**created**: *gt, lt, ge, le*\n\n**modified**: *gt, lt, ge, le*\n\n**owner.id**: *eq, in*\n\n**source.id**: *eq, in*", + "description": "Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results)\n\nFiltering is supported for the following fields and operators:\n\n**id**: *eq, in*\n\n**name**: *eq, sw*\n\n**attribute**: *eq, sw*\n\n**value**: *eq, sw*\n\n**created**: *gt, lt, ge, le*\n\n**modified**: *gt, lt, ge, le*\n\n**owner.id**: *eq, in*\n\n**source.id**: *eq, in*\n\nFiltering is not supported for access profiles and entitlements that have the '+' symbol in their names. ", "example": "attribute eq \"memberOf\"", "required": false }, @@ -8888,7 +8888,7 @@ ], "responses": { "200": { - "description": "List of Entitlements", + "description": "List of entitlements.", "content": { "application/json": { "schema": { @@ -22438,7 +22438,7 @@ "Accounts" ], "summary": "Update Account", - "description": "This updates account details. A token with ORG_ADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.\nThis endpoint supports updating an account's correlation. The identityId and manuallyCorrelated fields can be modified for any account. The attributes fields can be modified just for flat file accounts. To re-assign an account from one identity to another, replace the current identityId with a new value. If the account you're assigning was provisioned by IdentityNow, it's possible IdentityNow could create a new account for the previous identity as soon as the account is moved. If the account you're assigning is authoritative, this will cause the previous identity to become uncorrelated and could even result in its deletion. All accounts that are reassigned will be set to manuallyCorrelated: true unless otherwise specified", + "description": "Use this API to update account details. A token with ORG_ADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.\nThis API supports updating an account's correlation. You can modify only the `identityId` and `manuallyCorrelated` fields for any flat file account. To reassign an account from one identity to another, replace the current `identityId` with a new value. If the account you're assigning was provisioned by Identity Security Cloud (ISC), it's possible for ISC to create a new account for the previous identity as soon as the account is moved. If the account you're assigning is authoritative, this causes the previous identity to become uncorrelated and can even result in its deletion. All accounts that are reassigned will be set to `manuallyCorrelated: true` unless you specify otherwise.\n>**Note:** The `attributes` field can only be modified for flat file accounts. ", "security": [ { "UserContextAuth": [ @@ -22466,84 +22466,7 @@ "schema": { "type": "array", "items": { - "type": "object", - "description": "A JSONPatch Operation as defined by [RFC 6902 - JSON Patch](https://tools.ietf.org/html/rfc6902)", - "required": [ - "op", - "path" - ], - "properties": { - "op": { - "type": "string", - "description": "The operation to be performed", - "enum": [ - "add", - "remove", - "replace", - "move", - "copy", - "test" - ], - "example": "replace" - }, - "path": { - "type": "string", - "description": "A string JSON Pointer representing the target path to an element to be affected by the operation", - "example": "/description" - }, - "value": { - "oneOf": [ - { - "type": "string", - "example": "New description", - "title": "string" - }, - { - "type": "boolean", - "example": true, - "title": "boolean" - }, - { - "type": "integer", - "example": 300, - "title": "integer" - }, - { - "type": "object", - "title": "object", - "example": { - "attributes": { - "name": "philip" - } - } - }, - { - "type": "array", - "title": "array", - "items": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "integer" - }, - { - "type": "object" - } - ], - "example": [ - "001", - "002", - "003" - ] - } - } - ], - "description": "The value to be used for the operation, required for \"add\" and \"replace\" operations", - "example": "New description" - } - } + "type": "object" } }, "example": { @@ -88008,7 +87931,7 @@ "Identity Profiles" ], "summary": "Generate Identity Profile Preview", - "description": "This generates a non-persisted IdentityDetails object that will represent as the preview of the identities attribute when the given policy's attribute config is applied.\nA token with ORG_ADMIN authority is required to call this API to generate an identity preview.", + "description": "Use this API to generate a non-persisted `IdentityDetails` object that represents a preview of the identity attributes with a specified policy's attribute config applied.\nThis API supports the `accountAttribute`, `rule`, and `reference` transform types. \nA token with ORG_ADMIN authority is required to call this API to generate an identity preview.", "requestBody": { "description": "Identity Preview request body.", "required": true, diff --git a/dereferenced/deref-sailpoint-api.beta.yaml b/dereferenced/deref-sailpoint-api.beta.yaml index 8cc76d37..11455498 100644 --- a/dereferenced/deref-sailpoint-api.beta.yaml +++ b/dereferenced/deref-sailpoint-api.beta.yaml @@ -3781,7 +3781,7 @@ paths: schema: type: string description: |- - If provided, filters the returned list according to what is visible to the indicated ROLE_SUBADMIN or SOURCE_SUBADMIN identity. The value of the parameter is either an identity ID, or the special value **me**, which is shorthand for the calling Identity's ID. + If provided, filters the returned list according to what is visible to the indicated ROLE_SUBADMIN or SOURCE_SUBADMIN identity. The value of the parameter is either an identity ID, or the special value **me**, which is shorthand for the calling identity's ID. A 400 Bad Request error is returned if the **for-subadmin** parameter is specified for an identity that is not a subadmin. example: 8c190e6787aa4ed9a90bd9d5344523fb @@ -7499,13 +7499,12 @@ paths: - Access Profiles summary: List Access Profile's Entitlements description: |- - This API lists the Entitlements associated with a given Access Profile - - A token with API, ORG_ADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to invoke this API. In addition, a token with SOURCE_SUBADMIN authority must have access to the Source associated with the given Access Profile + Use this API to get a list of an access profile's entitlements. + A token with API, ORG_ADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API. In addition, a token with SOURCE_SUBADMIN authority must have access to the source associated with the specified access profile. parameters: - name: id in: path - description: ID of the containing Access Profile + description: ID of the access profile containing the entitlements. required: true schema: type: string @@ -7572,6 +7571,8 @@ paths: **owner.id**: *eq, in* **source.id**: *eq, in* + + Filtering is not supported for access profiles and entitlements that have the '+' symbol in their names. example: attribute eq "memberOf" required: false - in: query @@ -7587,7 +7588,7 @@ paths: required: false responses: '200': - description: List of Entitlements + description: List of entitlements. content: application/json: schema: @@ -17820,8 +17821,9 @@ paths: - Accounts summary: Update Account description: |- - This updates account details. A token with ORG_ADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API. - This endpoint supports updating an account's correlation. The identityId and manuallyCorrelated fields can be modified for any account. The attributes fields can be modified just for flat file accounts. To re-assign an account from one identity to another, replace the current identityId with a new value. If the account you're assigning was provisioned by IdentityNow, it's possible IdentityNow could create a new account for the previous identity as soon as the account is moved. If the account you're assigning is authoritative, this will cause the previous identity to become uncorrelated and could even result in its deletion. All accounts that are reassigned will be set to manuallyCorrelated: true unless otherwise specified + Use this API to update account details. A token with ORG_ADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API. + This API supports updating an account's correlation. You can modify only the `identityId` and `manuallyCorrelated` fields for any flat file account. To reassign an account from one identity to another, replace the current `identityId` with a new value. If the account you're assigning was provisioned by Identity Security Cloud (ISC), it's possible for ISC to create a new account for the previous identity as soon as the account is moved. If the account you're assigning is authoritative, this causes the previous identity to become uncorrelated and can even result in its deletion. All accounts that are reassigned will be set to `manuallyCorrelated: true` unless you specify otherwise. + >**Note:** The `attributes` field can only be modified for flat file accounts. security: - UserContextAuth: - 'idn:accounts:manage' @@ -17842,55 +17844,6 @@ paths: type: array items: type: object - description: 'A JSONPatch Operation as defined by [RFC 6902 - JSON Patch](https://tools.ietf.org/html/rfc6902)' - required: - - op - - path - properties: - op: - type: string - description: The operation to be performed - enum: - - add - - remove - - replace - - move - - copy - - test - example: replace - path: - type: string - description: A string JSON Pointer representing the target path to an element to be affected by the operation - example: /description - value: - oneOf: - - type: string - example: New description - title: string - - type: boolean - example: true - title: boolean - - type: integer - example: 300 - title: integer - - type: object - title: object - example: - attributes: - name: philip - - type: array - title: array - items: - anyOf: - - type: string - - type: integer - - type: object - example: - - '001' - - '002' - - '003' - description: 'The value to be used for the operation, required for "add" and "replace" operations' - example: New description example: Uncorrelate account: description: Remove account from Identity @@ -66312,7 +66265,8 @@ paths: - Identity Profiles summary: Generate Identity Profile Preview description: |- - This generates a non-persisted IdentityDetails object that will represent as the preview of the identities attribute when the given policy's attribute config is applied. + Use this API to generate a non-persisted `IdentityDetails` object that represents a preview of the identity attributes with a specified policy's attribute config applied. + This API supports the `accountAttribute`, `rule`, and `reference` transform types. A token with ORG_ADMIN authority is required to call this API to generate an identity preview. requestBody: description: Identity Preview request body. diff --git a/dereferenced/deref-sailpoint-api.v3.json b/dereferenced/deref-sailpoint-api.v3.json index e6a52f58..d068bff3 100644 --- a/dereferenced/deref-sailpoint-api.v3.json +++ b/dereferenced/deref-sailpoint-api.v3.json @@ -238,7 +238,7 @@ "Access Profiles" ], "summary": "List Access Profiles", - "description": "Use this API to get a list of access profiles.\nA token with API, ORG_ADMIN, ROLE_ADMIN, ROLE_SUBADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.", + "description": "Use this API to get a list of access profiles.\nA token with API, ORG_ADMIN, ROLE_ADMIN, ROLE_SUBADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.\n>**Note:** When you filter for access profiles that have the '+' symbol in their names, the response is blank. ", "parameters": [ { "in": "query", @@ -246,7 +246,7 @@ "schema": { "type": "string" }, - "description": "If provided, filters the returned list according to what is visible to the indicated ROLE_SUBADMIN or SOURCE_SUBADMIN Identity. The value of the parameter is either an Identity ID, or the special value **me**, which is shorthand for the calling Identity's ID.\n\nA 400 Bad Request error is returned if the **for-subadmin** parameter is specified for an Identity that is not a subadmin.", + "description": "If provided, filters the returned list according to what is visible to the indicated ROLE_SUBADMIN or SOURCE_SUBADMIN identity. The value of the parameter is either an identity ID, or the special value **me**, which is shorthand for the calling identity's ID.\n\nA 400 Bad Request error is returned if the **for-subadmin** parameter is specified for an identity that is not a subadmin.", "example": "8c190e6787aa4ed9a90bd9d5344523fb", "required": false }, @@ -316,7 +316,7 @@ "type": "string", "format": "comma-separated" }, - "description": "If present and not empty, additionally filters access profiles to those which are assigned to the Segment(s) with the specified IDs.\n\nIf segmentation is currently unavailable, specifying this parameter results in an error.", + "description": "If present and not empty, additionally filters access profiles to those which are assigned to the segment(s) with the specified IDs.\n\nIf segmentation is currently unavailable, specifying this parameter results in an error.", "example": "0b5c9f25-83c6-4762-9073-e38f7bb2ae26,2e8d8180-24bc-4d21-91c6-7affdb473b0d", "required": false }, @@ -4676,12 +4676,12 @@ "Access Profiles" ], "summary": "List Access Profile's Entitlements", - "description": "This API lists the Entitlements associated with a given Access Profile\n\nA token with API, ORG_ADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to invoke this API. In addition, a token with SOURCE_SUBADMIN authority must have access to the Source associated with the given Access Profile", + "description": "Use this API to get a list of an access profile's entitlements. \nA token with API, ORG_ADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API. In addition, a token with SOURCE_SUBADMIN authority must have access to the source associated with the specified access profile.\n>**Note:** When you filter for access profiles that have the '+' symbol in their names, the response is blank. ", "parameters": [ { "name": "id", "in": "path", - "description": "ID of the containing Access Profile", + "description": "ID of the access profile containing the entitlements.", "required": true, "schema": { "type": "string", @@ -4732,7 +4732,7 @@ "schema": { "type": "string" }, - "description": "Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results)\n\nFiltering is supported for the following fields and operators:\n\n**id**: *eq, in*\n\n**name**: *eq, sw*\n\n**attribute**: *eq, sw*\n\n**value**: *eq, sw*\n\n**created**: *gt, lt, ge, le*\n\n**modified**: *gt, lt, ge, le*\n\n**owner.id**: *eq, in*\n\n**source.id**: *eq, in*", + "description": "Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results)\n\nFiltering is supported for the following fields and operators:\n\n**id**: *eq, in*\n\n**name**: *eq, sw*\n\n**attribute**: *eq, sw*\n\n**value**: *eq, sw*\n\n**created**: *gt, lt, ge, le*\n\n**modified**: *gt, lt, ge, le*\n\n**owner.id**: *eq, in*\n\n**source.id**: *eq, in*\n\nFiltering is not supported for access profiles and entitlements that have the '+' symbol in their names. ", "example": "attribute eq \"memberOf\"", "required": false }, @@ -4750,7 +4750,7 @@ ], "responses": { "200": { - "description": "List of Entitlements", + "description": "List of entitlements.", "content": { "application/json": { "schema": { @@ -14362,7 +14362,7 @@ "Accounts" ], "summary": "Update Account", - "description": "This updates account details. A token with ORG_ADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.\nThis endpoint supports updating an account's correlation. The identityId and manuallyCorrelated fields can be modified for any account. The attributes fields can be modified just for flat file accounts. To re-assign an account from one identity to another, replace the current identityId with a new value. If the account you're assigning was provisioned by IdentityNow, it's possible IdentityNow could create a new account for the previous identity as soon as the account is moved. If the account you're assigning is authoritative, this will cause the previous identity to become uncorrelated and could even result in its deletion. All accounts that are reassigned will be set to manuallyCorrelated: true unless otherwise specified", + "description": "Use this API to update account details. A token with ORG_ADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.\nThis API supports updating an account's correlation. You can modify only the `identityId` and `manuallyCorrelated` fields for any flat file account. To reassign an account from one identity to another, replace the current `identityId` with a new value. If the account you're assigning was provisioned by Identity Security Cloud (ISC), it's possible for ISC to create a new account for the previous identity as soon as the account is moved. If the account you're assigning is authoritative, this causes the previous identity to become uncorrelated and can even result in its deletion. All accounts that are reassigned will be set to `manuallyCorrelated: true` unless you specify otherwise.\n>**Note:** The `attributes` field can only be modified for flat file accounts. ", "security": [ { "UserContextAuth": [ @@ -14390,84 +14390,7 @@ "schema": { "type": "array", "items": { - "type": "object", - "description": "A JSONPatch Operation as defined by [RFC 6902 - JSON Patch](https://tools.ietf.org/html/rfc6902)", - "required": [ - "op", - "path" - ], - "properties": { - "op": { - "type": "string", - "description": "The operation to be performed", - "enum": [ - "add", - "remove", - "replace", - "move", - "copy", - "test" - ], - "example": "replace" - }, - "path": { - "type": "string", - "description": "A string JSON Pointer representing the target path to an element to be affected by the operation", - "example": "/description" - }, - "value": { - "oneOf": [ - { - "type": "string", - "example": "New description", - "title": "string" - }, - { - "type": "boolean", - "example": true, - "title": "boolean" - }, - { - "type": "integer", - "example": 300, - "title": "integer" - }, - { - "type": "object", - "title": "object", - "example": { - "attributes": { - "name": "philip" - } - } - }, - { - "type": "array", - "title": "array", - "items": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "integer" - }, - { - "type": "object" - } - ], - "example": [ - "001", - "002", - "003" - ] - } - } - ], - "description": "The value to be used for the operation, required for \"add\" and \"replace\" operations", - "example": "New description" - } - } + "type": "object" } }, "examples": { diff --git a/dereferenced/deref-sailpoint-api.v3.yaml b/dereferenced/deref-sailpoint-api.v3.yaml index 3d12ab45..c9d6659a 100644 --- a/dereferenced/deref-sailpoint-api.v3.yaml +++ b/dereferenced/deref-sailpoint-api.v3.yaml @@ -969,15 +969,16 @@ paths: description: |- Use this API to get a list of access profiles. A token with API, ORG_ADMIN, ROLE_ADMIN, ROLE_SUBADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API. + >**Note:** When you filter for access profiles that have the '+' symbol in their names, the response is blank. parameters: - in: query name: for-subadmin schema: type: string description: |- - If provided, filters the returned list according to what is visible to the indicated ROLE_SUBADMIN or SOURCE_SUBADMIN Identity. The value of the parameter is either an Identity ID, or the special value **me**, which is shorthand for the calling Identity's ID. + If provided, filters the returned list according to what is visible to the indicated ROLE_SUBADMIN or SOURCE_SUBADMIN identity. The value of the parameter is either an identity ID, or the special value **me**, which is shorthand for the calling identity's ID. - A 400 Bad Request error is returned if the **for-subadmin** parameter is specified for an Identity that is not a subadmin. + A 400 Bad Request error is returned if the **for-subadmin** parameter is specified for an identity that is not a subadmin. example: 8c190e6787aa4ed9a90bd9d5344523fb required: false - in: query @@ -1063,7 +1064,7 @@ paths: type: string format: comma-separated description: |- - If present and not empty, additionally filters access profiles to those which are assigned to the Segment(s) with the specified IDs. + If present and not empty, additionally filters access profiles to those which are assigned to the segment(s) with the specified IDs. If segmentation is currently unavailable, specifying this parameter results in an error. example: '0b5c9f25-83c6-4762-9073-e38f7bb2ae26,2e8d8180-24bc-4d21-91c6-7affdb473b0d' @@ -4397,13 +4398,13 @@ paths: - Access Profiles summary: List Access Profile's Entitlements description: |- - This API lists the Entitlements associated with a given Access Profile - - A token with API, ORG_ADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to invoke this API. In addition, a token with SOURCE_SUBADMIN authority must have access to the Source associated with the given Access Profile + Use this API to get a list of an access profile's entitlements. + A token with API, ORG_ADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API. In addition, a token with SOURCE_SUBADMIN authority must have access to the source associated with the specified access profile. + >**Note:** When you filter for access profiles that have the '+' symbol in their names, the response is blank. parameters: - name: id in: path - description: ID of the containing Access Profile + description: ID of the access profile containing the entitlements. required: true schema: type: string @@ -4470,6 +4471,8 @@ paths: **owner.id**: *eq, in* **source.id**: *eq, in* + + Filtering is not supported for access profiles and entitlements that have the '+' symbol in their names. example: attribute eq "memberOf" required: false - in: query @@ -4485,7 +4488,7 @@ paths: required: false responses: '200': - description: List of Entitlements + description: List of entitlements. content: application/json: schema: @@ -11809,8 +11812,9 @@ paths: - Accounts summary: Update Account description: |- - This updates account details. A token with ORG_ADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API. - This endpoint supports updating an account's correlation. The identityId and manuallyCorrelated fields can be modified for any account. The attributes fields can be modified just for flat file accounts. To re-assign an account from one identity to another, replace the current identityId with a new value. If the account you're assigning was provisioned by IdentityNow, it's possible IdentityNow could create a new account for the previous identity as soon as the account is moved. If the account you're assigning is authoritative, this will cause the previous identity to become uncorrelated and could even result in its deletion. All accounts that are reassigned will be set to manuallyCorrelated: true unless otherwise specified + Use this API to update account details. A token with ORG_ADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API. + This API supports updating an account's correlation. You can modify only the `identityId` and `manuallyCorrelated` fields for any flat file account. To reassign an account from one identity to another, replace the current `identityId` with a new value. If the account you're assigning was provisioned by Identity Security Cloud (ISC), it's possible for ISC to create a new account for the previous identity as soon as the account is moved. If the account you're assigning is authoritative, this causes the previous identity to become uncorrelated and can even result in its deletion. All accounts that are reassigned will be set to `manuallyCorrelated: true` unless you specify otherwise. + >**Note:** The `attributes` field can only be modified for flat file accounts. security: - UserContextAuth: - 'idn:accounts:manage' @@ -11831,55 +11835,6 @@ paths: type: array items: type: object - description: 'A JSONPatch Operation as defined by [RFC 6902 - JSON Patch](https://tools.ietf.org/html/rfc6902)' - required: - - op - - path - properties: - op: - type: string - description: The operation to be performed - enum: - - add - - remove - - replace - - move - - copy - - test - example: replace - path: - type: string - description: A string JSON Pointer representing the target path to an element to be affected by the operation - example: /description - value: - oneOf: - - type: string - example: New description - title: string - - type: boolean - example: true - title: boolean - - type: integer - example: 300 - title: integer - - type: object - title: object - example: - attributes: - name: philip - - type: array - title: array - items: - anyOf: - - type: string - - type: integer - - type: object - example: - - '001' - - '002' - - '003' - description: 'The value to be used for the operation, required for "add" and "replace" operations' - example: New description examples: Uncorrelate account: description: Remove account from Identity diff --git a/postman/collections/sailpoint-api-beta.json b/postman/collections/sailpoint-api-beta.json index 64e52f33..2ee51abd 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": "d5aa8686-8bd5-4f13-9296-cc212899dafa", + "id": "3c0b1cb1-9952-4048-b2c7-a00b13bf1098", "name": "List Access Model Metadata Attributes", "request": { "name": "List Access Model Metadata Attributes", @@ -45,7 +45,7 @@ }, "response": [ { - "id": "fd0b9e19-9fa5-40cd-a489-aa0242f2aebd", + "id": "ed75e79d-5788-4cef-9174-b7e545334647", "name": "OK", "originalRequest": { "url": { @@ -99,7 +99,7 @@ "_postman_previewlanguage": "json" }, { - "id": "69237a7c-4518-41bf-8e75-f61a206b3f28", + "id": "946a181f-d80b-4852-bb08-255f28057a83", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -153,7 +153,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d1bf1e8f-3508-4a07-91b8-ddc3d8712b91", + "id": "bbbf4312-dd0e-4a87-85ac-8f066cd06391", "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": "6c40a087-4222-44a9-847c-42f8191a3924", + "id": "d4bb1865-9031-4896-8b37-52dc15d85217", "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": "13ee54ed-65e2-4a01-8147-db1d9a65e8ae", + "id": "cdb2452f-2e8c-4739-87e6-5ed30be09f39", "name": "Too Many Requests - Returned in response to too many requests in 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": "b9fb591c-4581-47dc-82ee-7fe4d625d176", + "id": "d9d55280-bcf0-4f48-a38b-234665f9f501", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -375,7 +375,7 @@ } }, { - "id": "43fc6397-0fa0-44ec-83ba-b89f5a3f9ec7", + "id": "fd5c40f1-ab20-4401-b545-48a3567a39f1", "name": "Get Access Model Metadata Attribute", "request": { "name": "Get Access Model Metadata Attribute", @@ -417,7 +417,7 @@ }, "response": [ { - "id": "536a7816-4799-4a82-a360-f36eb92a1ea8", + "id": "13161f67-e8af-4c0f-aee1-a9aea99a5433", "name": "OK", "originalRequest": { "url": { @@ -462,7 +462,7 @@ "_postman_previewlanguage": "json" }, { - "id": "906f5e19-9c94-4497-9a7b-ca30aea4fa4c", + "id": "322bc7e7-bdb9-4faa-913b-f99a65ac4305", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -507,7 +507,7 @@ "_postman_previewlanguage": "json" }, { - "id": "67b8dbb8-c120-457f-98d1-cfc8875411ee", + "id": "1ab591e9-f90f-45c9-8140-8c3fc4aeec85", "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": "e8135be4-8f74-463f-a39f-93e405f7188b", + "id": "3de980cf-1636-44e4-81e0-f227aa9f457c", "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": "17ed27cc-01f8-4c9d-9fb9-5fca97d528ac", + "id": "8f6c8998-b63e-491e-8075-ed4e4d6d34e8", "name": "Too Many Requests - Returned in response to too many requests in 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": "c0da1f26-77d1-43cc-8526-24ee91f273a3", + "id": "5fc36fe8-3adb-40c4-b910-5778a8c657a3", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -693,7 +693,7 @@ } }, { - "id": "9256be4f-83e4-4cfd-b960-4296dd60513a", + "id": "13a6ed86-9b77-4d1d-ae5f-e2c9c6d2e72a", "name": "List Access Model Metadata Values", "request": { "name": "List Access Model Metadata Values", @@ -736,7 +736,7 @@ }, "response": [ { - "id": "d13d6e55-ef2f-4f5f-9a80-4b7938d358c6", + "id": "460d7df1-315a-407f-ab0b-703bd54f18f1", "name": "OK", "originalRequest": { "url": { @@ -782,7 +782,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dce53452-6c6d-49a2-b204-6714920fce96", + "id": "04945824-0b9f-45fb-a60c-885cb1813171", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -828,7 +828,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8ea226f4-9c19-40ef-a9b5-ed9141a88fec", + "id": "1cae4ab7-74cd-46e8-8411-1ffb269f28ee", "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": "8def0de6-e295-4d4d-bfba-fcefc07dd1af", + "id": "242cde23-ebbb-4f4b-8149-a0ea5984d4c9", "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": "cb2670fa-58ee-48be-a1a8-a201701f6b1b", + "id": "15305ef6-c8b5-4819-a3ab-574b5117d171", "name": "Too Many Requests - Returned in response to too many requests in 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": "3fc15feb-1049-4add-8d3c-ed5d8409ff04", + "id": "7f81a54e-1ac0-4c3b-b89c-b146ed8e480d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -1018,7 +1018,7 @@ } }, { - "id": "4b19394d-1faa-4d8b-9264-1bb0bc3569f0", + "id": "12788f46-81ec-4b0f-b8a7-91de587e1959", "name": "Get Access Model Metadata Value", "request": { "name": "Get Access Model Metadata Value", @@ -1072,7 +1072,7 @@ }, "response": [ { - "id": "84be29b3-0162-4b32-bd7c-899cae02c5c2", + "id": "f6a8756b-f9cc-4493-8de7-cb4f02c98486", "name": "OK", "originalRequest": { "url": { @@ -1119,7 +1119,7 @@ "_postman_previewlanguage": "json" }, { - "id": "47bd30c1-6588-48f5-8fe1-c0b5eeb1b408", + "id": "e997d3e4-cf1f-40ee-a5f7-bb6b96f4cd67", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -1166,7 +1166,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5b207a9c-7b0b-42ca-9772-b570ef082f85", + "id": "00ea6e1a-b018-43b9-9ab1-06770ff32de1", "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": "06e9ac1b-9010-4b1d-ac86-1a596f0bde59", + "id": "f247463d-7375-4189-a83a-bf59b718c919", "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": "e803400d-0a54-4d7b-b2da-2d7fd651b362", + "id": "f30351a0-2184-40af-9524-ccdab32c5017", "name": "Too Many Requests - Returned in response to too many requests in 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": "b636d735-12b8-4043-9b3a-0cef5b51cf2b", + "id": "89ac0ffe-ef5a-4f81-afb4-3f59b6c0d40f", "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": "57b0829a-5515-44d1-b05c-aa2a93225f01", + "id": "09207b47-b11f-4518-8e4a-60cd1d926844", "name": "List Access Profiles", "request": { "name": "List Access Profiles", @@ -1385,7 +1385,7 @@ { "disabled": true, "description": { - "content": "If provided, filters the returned list according to what is visible to the indicated ROLE_SUBADMIN or SOURCE_SUBADMIN identity. The value of the parameter is either an identity ID, or the special value **me**, which is shorthand for the calling Identity's ID.\n\nA 400 Bad Request error is returned if the **for-subadmin** parameter is specified for an identity that is not a subadmin.", + "content": "If provided, filters the returned list according to what is visible to the indicated ROLE_SUBADMIN or SOURCE_SUBADMIN identity. The value of the parameter is either an identity ID, or the special value **me**, which is shorthand for the calling identity's ID.\n\nA 400 Bad Request error is returned if the **for-subadmin** parameter is specified for an identity that is not a subadmin.", "type": "text/plain" }, "key": "for-subadmin", @@ -1468,7 +1468,7 @@ }, "response": [ { - "id": "280999b3-cd6c-405f-939e-6bfcecc44347", + "id": "8365292d-31f1-4c49-928b-6593fd86bbb7", "name": "List of access profiles.", "originalRequest": { "url": { @@ -1482,7 +1482,7 @@ { "disabled": true, "description": { - "content": "If provided, filters the returned list according to what is visible to the indicated ROLE_SUBADMIN or SOURCE_SUBADMIN identity. The value of the parameter is either an identity ID, or the special value **me**, which is shorthand for the calling Identity's ID.\n\nA 400 Bad Request error is returned if the **for-subadmin** parameter is specified for an identity that is not a subadmin.", + "content": "If provided, filters the returned list according to what is visible to the indicated ROLE_SUBADMIN or SOURCE_SUBADMIN identity. The value of the parameter is either an identity ID, or the special value **me**, which is shorthand for the calling identity's ID.\n\nA 400 Bad Request error is returned if the **for-subadmin** parameter is specified for an identity that is not a subadmin.", "type": "text/plain" }, "key": "for-subadmin", @@ -1584,7 +1584,7 @@ "_postman_previewlanguage": "json" }, { - "id": "594cc84f-c376-41c2-b9f8-90523a476d86", + "id": "e59ad04b-4778-4ffc-8a53-b75e548c9664", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -1598,7 +1598,7 @@ { "disabled": true, "description": { - "content": "If provided, filters the returned list according to what is visible to the indicated ROLE_SUBADMIN or SOURCE_SUBADMIN identity. The value of the parameter is either an identity ID, or the special value **me**, which is shorthand for the calling Identity's ID.\n\nA 400 Bad Request error is returned if the **for-subadmin** parameter is specified for an identity that is not a subadmin.", + "content": "If provided, filters the returned list according to what is visible to the indicated ROLE_SUBADMIN or SOURCE_SUBADMIN identity. The value of the parameter is either an identity ID, or the special value **me**, which is shorthand for the calling identity's ID.\n\nA 400 Bad Request error is returned if the **for-subadmin** parameter is specified for an identity that is not a subadmin.", "type": "text/plain" }, "key": "for-subadmin", @@ -1700,7 +1700,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1dbd3ac0-b334-4fed-bea7-bcfc55c02d81", + "id": "e9a7cfe4-444a-43cc-aff8-c7427f40cb83", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -1714,7 +1714,7 @@ { "disabled": true, "description": { - "content": "If provided, filters the returned list according to what is visible to the indicated ROLE_SUBADMIN or SOURCE_SUBADMIN identity. The value of the parameter is either an identity ID, or the special value **me**, which is shorthand for the calling Identity's ID.\n\nA 400 Bad Request error is returned if the **for-subadmin** parameter is specified for an identity that is not a subadmin.", + "content": "If provided, filters the returned list according to what is visible to the indicated ROLE_SUBADMIN or SOURCE_SUBADMIN identity. The value of the parameter is either an identity ID, or the special value **me**, which is shorthand for the calling identity's ID.\n\nA 400 Bad Request error is returned if the **for-subadmin** parameter is specified for an identity that is not a subadmin.", "type": "text/plain" }, "key": "for-subadmin", @@ -1816,7 +1816,7 @@ "_postman_previewlanguage": "json" }, { - "id": "17f6bb1b-5c3b-41d5-8306-9d14b35afa63", + "id": "513991fe-9d39-4f1d-87a0-b760ec1be4d5", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -1830,7 +1830,7 @@ { "disabled": true, "description": { - "content": "If provided, filters the returned list according to what is visible to the indicated ROLE_SUBADMIN or SOURCE_SUBADMIN identity. The value of the parameter is either an identity ID, or the special value **me**, which is shorthand for the calling Identity's ID.\n\nA 400 Bad Request error is returned if the **for-subadmin** parameter is specified for an identity that is not a subadmin.", + "content": "If provided, filters the returned list according to what is visible to the indicated ROLE_SUBADMIN or SOURCE_SUBADMIN identity. The value of the parameter is either an identity ID, or the special value **me**, which is shorthand for the calling identity's ID.\n\nA 400 Bad Request error is returned if the **for-subadmin** parameter is specified for an identity that is not a subadmin.", "type": "text/plain" }, "key": "for-subadmin", @@ -1932,7 +1932,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f8889970-d054-446b-bba5-48171dd43086", + "id": "af26d013-fd69-4613-82fe-cb89ce01cdb9", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -1946,7 +1946,7 @@ { "disabled": true, "description": { - "content": "If provided, filters the returned list according to what is visible to the indicated ROLE_SUBADMIN or SOURCE_SUBADMIN identity. The value of the parameter is either an identity ID, or the special value **me**, which is shorthand for the calling Identity's ID.\n\nA 400 Bad Request error is returned if the **for-subadmin** parameter is specified for an identity that is not a subadmin.", + "content": "If provided, filters the returned list according to what is visible to the indicated ROLE_SUBADMIN or SOURCE_SUBADMIN identity. The value of the parameter is either an identity ID, or the special value **me**, which is shorthand for the calling identity's ID.\n\nA 400 Bad Request error is returned if the **for-subadmin** parameter is specified for an identity that is not a subadmin.", "type": "text/plain" }, "key": "for-subadmin", @@ -2048,7 +2048,7 @@ "_postman_previewlanguage": "json" }, { - "id": "20282288-cb8e-4e44-b0ef-f023eff1e4fe", + "id": "4f7f28a0-fe4e-436d-8d7b-4657136b247d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -2062,7 +2062,7 @@ { "disabled": true, "description": { - "content": "If provided, filters the returned list according to what is visible to the indicated ROLE_SUBADMIN or SOURCE_SUBADMIN identity. The value of the parameter is either an identity ID, or the special value **me**, which is shorthand for the calling Identity's ID.\n\nA 400 Bad Request error is returned if the **for-subadmin** parameter is specified for an identity that is not a subadmin.", + "content": "If provided, filters the returned list according to what is visible to the indicated ROLE_SUBADMIN or SOURCE_SUBADMIN identity. The value of the parameter is either an identity ID, or the special value **me**, which is shorthand for the calling identity's ID.\n\nA 400 Bad Request error is returned if the **for-subadmin** parameter is specified for an identity that is not a subadmin.", "type": "text/plain" }, "key": "for-subadmin", @@ -2170,7 +2170,7 @@ } }, { - "id": "4419dd42-447a-4f8b-8f6e-7a696a3b4a74", + "id": "f29167e9-0802-4894-9185-78e68ac44b72", "name": "Create Access Profile", "request": { "name": "Create Access Profile", @@ -2212,7 +2212,7 @@ }, "response": [ { - "id": "a3d5d4fb-2bae-4d46-bde7-c7ea86a7652d", + "id": "c8f2bafb-e03c-4b20-bfef-efe5e052951e", "name": "Access profile created.", "originalRequest": { "url": { @@ -2268,7 +2268,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2abb04a0-d22f-4621-8274-4285c17e9335", + "id": "875ceea3-f793-4824-bc03-1689100cbf3b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -2324,7 +2324,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6133adf9-bcef-4b32-89eb-4f2a6ab17b54", + "id": "bd4c3be7-293d-494c-9f73-cd5e067521da", "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": "f1f35fe7-8be9-4a5c-8404-0f4585819f61", + "id": "8facebff-10bf-4733-b94f-957d8cdaa2e6", "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": "8838b382-52fd-423e-8d5d-c51874581567", + "id": "a39e6380-04e2-4eca-9eaf-53f06950f171", "name": "Too Many Requests - Returned in response to too many requests in 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": "94327714-d03a-400c-bc2f-bf9ff3337dc7", + "id": "d7294917-2b9d-4679-b1a0-4bfbf91d18d3", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -2554,7 +2554,7 @@ } }, { - "id": "74844414-f88d-4541-9e13-c92b43d023e1", + "id": "2f077421-0c77-4126-a16b-7f503660be8c", "name": "Get an Access Profile", "request": { "name": "Get an Access Profile", @@ -2595,7 +2595,7 @@ }, "response": [ { - "id": "9fd0ffcc-4892-4fb6-a2bb-d8c1d678fd9a", + "id": "cf2517e1-eafb-4bc6-a3db-3f7ae05a995c", "name": "An AccessProfile", "originalRequest": { "url": { @@ -2639,7 +2639,7 @@ "_postman_previewlanguage": "json" }, { - "id": "38099486-53f5-454e-941f-dbf21f9ad0a8", + "id": "cfb85726-6cd4-43e0-bec9-7698274b11de", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -2683,7 +2683,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3d714acf-8209-4edc-9181-ff03428f7787", + "id": "9190d292-3ada-445b-b723-57110c9b1b52", "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": "7fd44f38-83bf-47ff-a946-c33d26076931", + "id": "37065b78-9aa8-4d7d-9590-b20cbc823f02", "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": "c4aa5d82-1071-43e7-992a-e2628ce5a39b", + "id": "e12ea4d6-4b3d-4894-8ddd-7d2922be6da7", "name": "Too Many Requests - Returned in response to too many requests in 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": "ebce115d-7888-4e51-8b51-e6600fc20661", + "id": "cfa02273-ce1a-4937-b22a-bb098679dacb", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -2865,7 +2865,7 @@ } }, { - "id": "64371ee3-7657-42c8-8a10-6812d0acf902", + "id": "e110aff3-868d-4b00-99fb-b2783ba64bc7", "name": "Patch a specified Access Profile", "request": { "name": "Patch a specified Access Profile", @@ -2919,7 +2919,7 @@ }, "response": [ { - "id": "20b264ee-af53-4d71-bbc7-7ee3a93e7ec1", + "id": "9dfd06b5-0fe0-4b6a-838a-e1defdd9da43", "name": "Add Entitlements", "originalRequest": { "url": { @@ -2976,7 +2976,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5d348cb6-0e61-4f64-8f05-5523f124c9e5", + "id": "7e5840b2-7cb7-4d99-a15a-9b3a4d1d32f9", "name": "Insert Entitlement", "originalRequest": { "url": { @@ -3033,7 +3033,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b9062d08-022d-483c-85fc-85ba3370a3b4", + "id": "218c327a-6651-44f9-935e-c607f4b3168b", "name": "Replace Entitlements", "originalRequest": { "url": { @@ -3090,7 +3090,7 @@ "_postman_previewlanguage": "json" }, { - "id": "37fdbd11-537f-4048-b929-50c1283e76fc", + "id": "10d043fe-beab-4c4b-8a7b-abd4b15d241a", "name": "Remove Entitlement", "originalRequest": { "url": { @@ -3147,7 +3147,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9df83da5-893b-4aaf-90e9-f0dd4cc67d5e", + "id": "aa10ecb1-102b-4d45-a903-7e3d1d84a94e", "name": "Add Entitlements", "originalRequest": { "url": { @@ -3204,7 +3204,7 @@ "_postman_previewlanguage": "json" }, { - "id": "04fa33fa-f27a-4b6d-a317-2b76ef90477d", + "id": "9bc109fe-3ed6-4b91-9ba9-0a179734da3e", "name": "Insert Entitlement", "originalRequest": { "url": { @@ -3261,7 +3261,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9a887a59-7fe6-4672-89c7-80df6cba0532", + "id": "e7f0e3f9-4327-4ace-bf80-14bc3f931a87", "name": "Replace Entitlements", "originalRequest": { "url": { @@ -3318,7 +3318,7 @@ "_postman_previewlanguage": "json" }, { - "id": "20bc8f57-b0d1-40e6-aadf-f5062338fe76", + "id": "e372bf30-ef18-48bd-9bcf-314f7269b01f", "name": "Remove Entitlement", "originalRequest": { "url": { @@ -3375,7 +3375,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eb5cd7bb-1a34-4d83-a4be-33be40776d16", + "id": "3663d590-c619-4a01-a485-bbf321e73e8e", "name": "Add Entitlements", "originalRequest": { "url": { @@ -3432,7 +3432,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6e05459d-bfcd-4712-b7f9-3d96ab0ca202", + "id": "ed2fef8f-aee8-4bd2-8b61-a1df106721a7", "name": "Insert Entitlement", "originalRequest": { "url": { @@ -3489,7 +3489,7 @@ "_postman_previewlanguage": "json" }, { - "id": "391ab500-da6d-4488-af48-0aeff3b2f4da", + "id": "8fdfe7c7-c544-48c8-81d5-406976f57bde", "name": "Replace Entitlements", "originalRequest": { "url": { @@ -3546,7 +3546,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a8bf789b-48ac-4c74-b1c4-be0848cdcfb0", + "id": "21f7622f-6bf8-48cf-8836-8f03dd6ee6a1", "name": "Remove Entitlement", "originalRequest": { "url": { @@ -3603,7 +3603,7 @@ "_postman_previewlanguage": "json" }, { - "id": "96112357-c4f6-4305-8e1c-77d1d41cf57d", + "id": "0fd6f1da-da54-4136-b77f-d3644f504dae", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -3660,7 +3660,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9f7afece-e804-4790-acf5-4df5676f7a2c", + "id": "49a06954-e6f7-48c1-88c1-946d05563a38", "name": "Insert Entitlement", "originalRequest": { "url": { @@ -3717,7 +3717,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2a38e4b8-5c05-4714-80e8-75c7d842b15a", + "id": "a2e9f5bc-64d6-4bda-a008-ee465b88b714", "name": "Replace Entitlements", "originalRequest": { "url": { @@ -3774,7 +3774,7 @@ "_postman_previewlanguage": "json" }, { - "id": "48fdd970-12a0-426f-9d06-b71c7fda2116", + "id": "c7b53abb-0d30-4f9e-a646-c69771636f21", "name": "Remove Entitlement", "originalRequest": { "url": { @@ -3831,7 +3831,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3861da69-c2fc-4608-bb27-45ac33085d21", + "id": "5e2ff2df-12b5-4067-a5d5-3d101a6e3653", "name": "Add Entitlements", "originalRequest": { "url": { @@ -3888,7 +3888,7 @@ "_postman_previewlanguage": "json" }, { - "id": "63a67b19-a55f-4028-bde1-b953c89d3ae0", + "id": "93f348ac-6b2b-4488-80e4-0947ac924bd2", "name": "Insert Entitlement", "originalRequest": { "url": { @@ -3945,7 +3945,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e882425a-f9ca-429e-b605-00b65ba431b5", + "id": "1e0f987f-9263-459c-a961-3130aa38aa5e", "name": "Replace Entitlements", "originalRequest": { "url": { @@ -4002,7 +4002,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e25a3c84-937b-48f9-90eb-cc5ea21314f5", + "id": "046f5e44-1a5b-48bb-a771-f0ae382fd6a8", "name": "Remove Entitlement", "originalRequest": { "url": { @@ -4059,7 +4059,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7086ec16-6358-4377-bd98-6e002fecde9a", + "id": "975f24b2-59d5-43d9-b4ee-81ee695c75c6", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -4116,7 +4116,7 @@ "_postman_previewlanguage": "json" }, { - "id": "261be10d-9303-485c-a018-0c8cad0be4ce", + "id": "bfc27ed1-6087-494b-85f8-f9f5ec66267e", "name": "Insert Entitlement", "originalRequest": { "url": { @@ -4173,7 +4173,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0ddcfe32-222c-45b8-aab3-6cbca1290f43", + "id": "2d248fdc-9b79-4ff4-bf1a-f49aa3217c31", "name": "Replace Entitlements", "originalRequest": { "url": { @@ -4230,7 +4230,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e550bdca-e78a-4748-a5bd-8c39c63fa093", + "id": "079594bc-8d4a-4871-b510-d9496fac562e", "name": "Remove Entitlement", "originalRequest": { "url": { @@ -4293,7 +4293,7 @@ } }, { - "id": "d0c3ca6f-8c97-4184-b016-97e1be211f38", + "id": "276c6b05-9236-45fa-977d-21ee64d770eb", "name": "Delete the specified Access Profile", "request": { "name": "Delete the specified Access Profile", @@ -4334,7 +4334,7 @@ }, "response": [ { - "id": "a1c84733-9395-4ede-bee6-25605a90c0bb", + "id": "48c82099-b8d9-48eb-b9a8-b39b2032a045", "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": "387d8cae-763a-4e26-8474-354c29c6da36", + "id": "af680a3d-e9b4-469f-b8f1-e0d4c9cff0d2", "name": "Returned when an access profile cannot be deleted as it's being used.", "originalRequest": { "url": { @@ -4412,7 +4412,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3b17be0f-ca4e-47da-9a68-fc683298bcaa", + "id": "0195d6a7-57b0-43e0-88ab-2b20a596e2bd", "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": "3d73a58b-e138-42ac-b917-f99c5223bd81", + "id": "4891ffaf-f666-47b7-88cc-528bb10c8173", "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": "1c7c64bb-df62-4378-83ab-7c9b5d8ce005", + "id": "0e132d59-e217-4369-8d07-7cbc9f64890e", "name": "Too Many Requests - Returned in response to too many requests in 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": "57300111-dc43-4d36-97cd-f5242fcdbc38", + "id": "ad7e62e6-e6a3-4d6f-abb2-3fb258c6116f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -4594,7 +4594,7 @@ } }, { - "id": "7d349cc9-ab9a-4c97-8a30-0e8a3b3a6e2a", + "id": "f69595cf-003e-46e1-aff7-d778d9badc54", "name": "Delete Access Profile(s)", "request": { "name": "Delete Access Profile(s)", @@ -4637,7 +4637,7 @@ }, "response": [ { - "id": "b95aefb6-de61-4036-a116-29a8e612aab4", + "id": "360af71f-dec6-414c-8df8-4676732d11ff", "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": "cec37013-b8da-4bb1-a80c-f6b0fcac7297", + "id": "5d9d00e6-8d17-4584-8158-3c7b90e005ba", "name": "Returned if at least one deletion will be performed.", "originalRequest": { "url": { @@ -4751,7 +4751,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7150f4cd-ad53-45d1-8a5e-1599f7611112", + "id": "ba4bfcee-26ed-46cf-8c20-935c30f0941f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -4808,7 +4808,7 @@ "_postman_previewlanguage": "json" }, { - "id": "190bbc41-0826-4f6e-9267-beb4b98d2846", + "id": "d2e7d490-1878-43e5-8ab9-a942f3b31c80", "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": "9e1a9bd3-6ee4-4b47-928e-e3b8c5105a96", + "id": "c780c4f8-1430-4a0d-a37a-c5a897b9d8cb", "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": "3a7a679c-e932-417f-8e33-03ae921a3e40", + "id": "8f0d637c-bda3-45ec-9d9d-ce1844ee3e90", "name": "Too Many Requests - Returned in response to too many requests in 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": "6fbff183-cc9e-4935-8e70-10d9431303c0", + "id": "9df1a871-bf0d-479d-b954-eabda1f75b2c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -5042,7 +5042,7 @@ } }, { - "id": "dd106eed-6c59-42b1-be66-1c1f7e957c1e", + "id": "df242da7-545f-44ec-8c4c-ea772ae33762", "name": "Update Access Profile(s) requestable field.", "request": { "name": "Update Access Profile(s) requestable field.", @@ -5085,7 +5085,7 @@ }, "response": [ { - "id": "87447205-fc66-49f3-ad96-b6f26d295a9b", + "id": "9ef7c155-bb6b-4e66-a27d-7e93d3caa749", "name": "List of updated and not updated Access Profiles.", "originalRequest": { "url": { @@ -5142,7 +5142,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3aa076c8-52ed-40e9-89a5-c5a52cf10747", + "id": "9d85b4f3-1da4-4a19-87cb-11741fe610c2", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -5199,7 +5199,7 @@ "_postman_previewlanguage": "json" }, { - "id": "28ce2288-812c-4462-9e8f-f775aeecbb25", + "id": "ca9ef69b-5480-4337-9022-ab68835196bf", "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": "110bc15c-4d2c-46ed-9f65-fccf1dbd1b82", + "id": "be5dc841-d8bd-4608-8253-f19e1a4a80cf", "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": "4e6bbabf-2c61-41d9-9172-18a60686235a", + "id": "58d6ab02-3ee2-471d-8d75-d526877336b8", "name": "Precondition Failed - Returned in response if API/Feature not enabled for an organization.", "originalRequest": { "url": { @@ -5370,7 +5370,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1cd3bcb1-b9b7-4a7f-a988-07173b334e3f", + "id": "7e5a0581-7ee8-46d0-9ba2-2fa8e73770a1", "name": "Too Many Requests - Returned in response to too many requests in 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": "36780f13-63e1-42ce-b453-d87da35c2ef3", + "id": "8224a96c-2f7d-405c-9d5d-558bfde2a8ff", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -5490,12 +5490,12 @@ } }, { - "id": "5a476b0d-99d3-4dfd-a155-ea814551017e", + "id": "791c051d-7e8b-4dc6-ad57-c39f61a4c547", "name": "List Access Profile's Entitlements", "request": { "name": "List Access Profile's Entitlements", "description": { - "content": "This API lists the Entitlements associated with a given Access Profile\n\nA token with API, ORG_ADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to invoke this API. In addition, a token with SOURCE_SUBADMIN authority must have access to the Source associated with the given Access Profile", + "content": "Use this API to get a list of an access profile's entitlements. \nA token with API, ORG_ADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API. In addition, a token with SOURCE_SUBADMIN authority must have access to the source associated with the specified access profile.", "type": "text/plain" }, "url": { @@ -5538,7 +5538,7 @@ { "disabled": true, "description": { - "content": "Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results)\n\nFiltering is supported for the following fields and operators:\n\n**id**: *eq, in*\n\n**name**: *eq, sw*\n\n**attribute**: *eq, sw*\n\n**value**: *eq, sw*\n\n**created**: *gt, lt, ge, le*\n\n**modified**: *gt, lt, ge, le*\n\n**owner.id**: *eq, in*\n\n**source.id**: *eq, in*", + "content": "Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results)\n\nFiltering is supported for the following fields and operators:\n\n**id**: *eq, in*\n\n**name**: *eq, sw*\n\n**attribute**: *eq, sw*\n\n**value**: *eq, sw*\n\n**created**: *gt, lt, ge, le*\n\n**modified**: *gt, lt, ge, le*\n\n**owner.id**: *eq, in*\n\n**source.id**: *eq, in*\n\nFiltering is not supported for access profiles and entitlements that have the '+' symbol in their names. ", "type": "text/plain" }, "key": "filters", @@ -5561,7 +5561,7 @@ "key": "id", "disabled": true, "description": { - "content": "(Required) ID of the containing Access Profile", + "content": "(Required) ID of the access profile containing the entitlements.", "type": "text/plain" } } @@ -5578,8 +5578,8 @@ }, "response": [ { - "id": "3b4e9fd0-6b19-419c-b703-9207c8ea3795", - "name": "List of Entitlements", + "id": "2d277cc0-309e-4000-a591-ec39f4871691", + "name": "List of entitlements.", "originalRequest": { "url": { "path": [ @@ -5621,7 +5621,7 @@ { "disabled": true, "description": { - "content": "Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results)\n\nFiltering is supported for the following fields and operators:\n\n**id**: *eq, in*\n\n**name**: *eq, sw*\n\n**attribute**: *eq, sw*\n\n**value**: *eq, sw*\n\n**created**: *gt, lt, ge, le*\n\n**modified**: *gt, lt, ge, le*\n\n**owner.id**: *eq, in*\n\n**source.id**: *eq, in*", + "content": "Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results)\n\nFiltering is supported for the following fields and operators:\n\n**id**: *eq, in*\n\n**name**: *eq, sw*\n\n**attribute**: *eq, sw*\n\n**value**: *eq, sw*\n\n**created**: *gt, lt, ge, le*\n\n**modified**: *gt, lt, ge, le*\n\n**owner.id**: *eq, in*\n\n**source.id**: *eq, in*\n\nFiltering is not supported for access profiles and entitlements that have the '+' symbol in their names. ", "type": "text/plain" }, "key": "filters", @@ -5669,7 +5669,7 @@ "_postman_previewlanguage": "json" }, { - "id": "85495484-c69b-4c72-818a-c235afb8ce76", + "id": "38c830c4-0aca-48dc-9690-f4c99e8d78dd", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -5712,7 +5712,7 @@ { "disabled": true, "description": { - "content": "Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results)\n\nFiltering is supported for the following fields and operators:\n\n**id**: *eq, in*\n\n**name**: *eq, sw*\n\n**attribute**: *eq, sw*\n\n**value**: *eq, sw*\n\n**created**: *gt, lt, ge, le*\n\n**modified**: *gt, lt, ge, le*\n\n**owner.id**: *eq, in*\n\n**source.id**: *eq, in*", + "content": "Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results)\n\nFiltering is supported for the following fields and operators:\n\n**id**: *eq, in*\n\n**name**: *eq, sw*\n\n**attribute**: *eq, sw*\n\n**value**: *eq, sw*\n\n**created**: *gt, lt, ge, le*\n\n**modified**: *gt, lt, ge, le*\n\n**owner.id**: *eq, in*\n\n**source.id**: *eq, in*\n\nFiltering is not supported for access profiles and entitlements that have the '+' symbol in their names. ", "type": "text/plain" }, "key": "filters", @@ -5760,7 +5760,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c89bec07-6e69-4b49-a3eb-ca172b1fac5d", + "id": "cd8f3f86-c3c5-49c2-9fff-f6bbb03df1b3", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -5803,7 +5803,7 @@ { "disabled": true, "description": { - "content": "Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results)\n\nFiltering is supported for the following fields and operators:\n\n**id**: *eq, in*\n\n**name**: *eq, sw*\n\n**attribute**: *eq, sw*\n\n**value**: *eq, sw*\n\n**created**: *gt, lt, ge, le*\n\n**modified**: *gt, lt, ge, le*\n\n**owner.id**: *eq, in*\n\n**source.id**: *eq, in*", + "content": "Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results)\n\nFiltering is supported for the following fields and operators:\n\n**id**: *eq, in*\n\n**name**: *eq, sw*\n\n**attribute**: *eq, sw*\n\n**value**: *eq, sw*\n\n**created**: *gt, lt, ge, le*\n\n**modified**: *gt, lt, ge, le*\n\n**owner.id**: *eq, in*\n\n**source.id**: *eq, in*\n\nFiltering is not supported for access profiles and entitlements that have the '+' symbol in their names. ", "type": "text/plain" }, "key": "filters", @@ -5851,7 +5851,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a3c76b06-ba97-4fc4-98a6-ca6c74f8d472", + "id": "506efdc5-9269-43dc-8f0a-a4d6eca19f3f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -5894,7 +5894,7 @@ { "disabled": true, "description": { - "content": "Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results)\n\nFiltering is supported for the following fields and operators:\n\n**id**: *eq, in*\n\n**name**: *eq, sw*\n\n**attribute**: *eq, sw*\n\n**value**: *eq, sw*\n\n**created**: *gt, lt, ge, le*\n\n**modified**: *gt, lt, ge, le*\n\n**owner.id**: *eq, in*\n\n**source.id**: *eq, in*", + "content": "Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results)\n\nFiltering is supported for the following fields and operators:\n\n**id**: *eq, in*\n\n**name**: *eq, sw*\n\n**attribute**: *eq, sw*\n\n**value**: *eq, sw*\n\n**created**: *gt, lt, ge, le*\n\n**modified**: *gt, lt, ge, le*\n\n**owner.id**: *eq, in*\n\n**source.id**: *eq, in*\n\nFiltering is not supported for access profiles and entitlements that have the '+' symbol in their names. ", "type": "text/plain" }, "key": "filters", @@ -5942,7 +5942,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b42c4c77-1dc8-4e22-a367-4e7ad9c28664", + "id": "9bf80506-4a90-4a84-9c0e-5adffb368fed", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -5985,7 +5985,7 @@ { "disabled": true, "description": { - "content": "Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results)\n\nFiltering is supported for the following fields and operators:\n\n**id**: *eq, in*\n\n**name**: *eq, sw*\n\n**attribute**: *eq, sw*\n\n**value**: *eq, sw*\n\n**created**: *gt, lt, ge, le*\n\n**modified**: *gt, lt, ge, le*\n\n**owner.id**: *eq, in*\n\n**source.id**: *eq, in*", + "content": "Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results)\n\nFiltering is supported for the following fields and operators:\n\n**id**: *eq, in*\n\n**name**: *eq, sw*\n\n**attribute**: *eq, sw*\n\n**value**: *eq, sw*\n\n**created**: *gt, lt, ge, le*\n\n**modified**: *gt, lt, ge, le*\n\n**owner.id**: *eq, in*\n\n**source.id**: *eq, in*\n\nFiltering is not supported for access profiles and entitlements that have the '+' symbol in their names. ", "type": "text/plain" }, "key": "filters", @@ -6033,7 +6033,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4d7865f2-ddf4-438c-8546-92cb6537e095", + "id": "6c052ee6-aca9-4e86-af19-53d15e6be073", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -6076,7 +6076,7 @@ { "disabled": true, "description": { - "content": "Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results)\n\nFiltering is supported for the following fields and operators:\n\n**id**: *eq, in*\n\n**name**: *eq, sw*\n\n**attribute**: *eq, sw*\n\n**value**: *eq, sw*\n\n**created**: *gt, lt, ge, le*\n\n**modified**: *gt, lt, ge, le*\n\n**owner.id**: *eq, in*\n\n**source.id**: *eq, in*", + "content": "Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results)\n\nFiltering is supported for the following fields and operators:\n\n**id**: *eq, in*\n\n**name**: *eq, sw*\n\n**attribute**: *eq, sw*\n\n**value**: *eq, sw*\n\n**created**: *gt, lt, ge, le*\n\n**modified**: *gt, lt, ge, le*\n\n**owner.id**: *eq, in*\n\n**source.id**: *eq, in*\n\nFiltering is not supported for access profiles and entitlements that have the '+' symbol in their names. ", "type": "text/plain" }, "key": "filters", @@ -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": "a4dea12b-0e9d-4bda-a13e-b013c6f5ff7b", + "id": "7453e4b3-8f1c-41bd-bc26-ad2d48c6aa80", "name": "Pending Access Request Approvals List", "request": { "name": "Pending Access Request Approvals List", @@ -6160,7 +6160,7 @@ "type": "text/plain" }, "key": "owner-id", - "value": "labore" + "value": "laborum qui aliquip irure" }, { "disabled": true, @@ -6196,7 +6196,7 @@ "type": "text/plain" }, "key": "filters", - "value": "labore" + "value": "laborum qui aliquip irure" }, { "disabled": true, @@ -6205,7 +6205,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "labore" + "value": "laborum qui aliquip irure" } ], "variable": [] @@ -6221,7 +6221,7 @@ }, "response": [ { - "id": "b424d3ac-d9a2-4680-afea-30702516cbe5", + "id": "c667eca9-28fc-4121-81ef-291af6bc0e6b", "name": "List of Pending Approvals.", "originalRequest": { "url": { @@ -6240,7 +6240,7 @@ "type": "text/plain" }, "key": "owner-id", - "value": "labore" + "value": "laborum qui aliquip irure" }, { "disabled": true, @@ -6276,7 +6276,7 @@ "type": "text/plain" }, "key": "filters", - "value": "labore" + "value": "laborum qui aliquip irure" }, { "disabled": true, @@ -6285,7 +6285,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "labore" + "value": "laborum qui aliquip irure" } ], "variable": [] @@ -6320,7 +6320,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e43339e2-18bc-4365-b632-76d05a77f820", + "id": "b068c998-a1aa-47d8-b300-a5363af14f08", "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": "labore" + "value": "laborum qui aliquip irure" }, { "disabled": true, @@ -6375,7 +6375,7 @@ "type": "text/plain" }, "key": "filters", - "value": "labore" + "value": "laborum qui aliquip irure" }, { "disabled": true, @@ -6384,7 +6384,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "labore" + "value": "laborum qui aliquip irure" } ], "variable": [] @@ -6419,7 +6419,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5a19c1eb-607f-44fc-8309-68862a80c0f6", + "id": "af58ccd0-e64b-40c3-bacc-217de7cc31b6", "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": "labore" + "value": "laborum qui aliquip irure" }, { "disabled": true, @@ -6474,7 +6474,7 @@ "type": "text/plain" }, "key": "filters", - "value": "labore" + "value": "laborum qui aliquip irure" }, { "disabled": true, @@ -6483,7 +6483,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "labore" + "value": "laborum qui aliquip irure" } ], "variable": [] @@ -6518,7 +6518,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1757e99a-8e47-4438-ad4c-f976029767bf", + "id": "dc0600dc-8ce7-44d0-aff9-3c96fa8171bf", "name": "Too Many Requests - Returned in response to too many requests in 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": "labore" + "value": "laborum qui aliquip irure" }, { "disabled": true, @@ -6573,7 +6573,7 @@ "type": "text/plain" }, "key": "filters", - "value": "labore" + "value": "laborum qui aliquip irure" }, { "disabled": true, @@ -6582,7 +6582,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "labore" + "value": "laborum qui aliquip irure" } ], "variable": [] @@ -6617,7 +6617,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7a685d9c-ca8c-437c-97dd-ed3657a0d424", + "id": "67411333-7557-4e65-be66-3181f83db9d1", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -6636,7 +6636,7 @@ "type": "text/plain" }, "key": "owner-id", - "value": "labore" + "value": "laborum qui aliquip irure" }, { "disabled": true, @@ -6672,7 +6672,7 @@ "type": "text/plain" }, "key": "filters", - "value": "labore" + "value": "laborum qui aliquip irure" }, { "disabled": true, @@ -6681,7 +6681,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "labore" + "value": "laborum qui aliquip irure" } ], "variable": [] @@ -6722,7 +6722,7 @@ } }, { - "id": "c4975776-6fa5-4426-beee-4f84f584142e", + "id": "89f89492-adc2-4392-b292-2894108208ef", "name": "Completed Access Request Approvals List", "request": { "name": "Completed Access Request Approvals List", @@ -6746,7 +6746,7 @@ "type": "text/plain" }, "key": "owner-id", - "value": "labore" + "value": "laborum qui aliquip irure" }, { "disabled": true, @@ -6782,7 +6782,7 @@ "type": "text/plain" }, "key": "filters", - "value": "labore" + "value": "laborum qui aliquip irure" }, { "disabled": true, @@ -6791,7 +6791,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "labore" + "value": "laborum qui aliquip irure" } ], "variable": [] @@ -6807,7 +6807,7 @@ }, "response": [ { - "id": "a3fd408a-fd7f-4510-ba27-f553c4dbe4fb", + "id": "f20d2dd2-617f-40af-b779-db4a235136cd", "name": "List of Completed Approvals.", "originalRequest": { "url": { @@ -6826,7 +6826,7 @@ "type": "text/plain" }, "key": "owner-id", - "value": "labore" + "value": "laborum qui aliquip irure" }, { "disabled": true, @@ -6862,7 +6862,7 @@ "type": "text/plain" }, "key": "filters", - "value": "labore" + "value": "laborum qui aliquip irure" }, { "disabled": true, @@ -6871,7 +6871,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "labore" + "value": "laborum qui aliquip irure" } ], "variable": [] @@ -6901,12 +6901,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"2c938083633d259901633d25c68c00fa\",\n \"name\": \"Approval Name\",\n \"created\": \"2017-07-11T18:45:37.098Z\",\n \"modified\": \"2018-07-25T20:22:28.104Z\",\n \"requestCreated\": \"2017-07-11T18:45:35.098Z\",\n \"requestType\": \"GRANT_ACCESS\",\n \"requester\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c7180a46faadee4016fb4e018c20648\",\n \"name\": \"William Wilson\"\n },\n \"requestedFor\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"William Wilson\"\n },\n \"reviewedBy\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c3780a46faadee4016fb4e018c20652\",\n \"name\": \"Allen Albertson\"\n },\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Support\"\n },\n \"requestedObject\": {\n \"id\": \"2c938083633d259901633d25c68c00fa\",\n \"name\": \"Object Name\",\n \"description\": \"Object Description\",\n \"type\": \"ROLE\"\n },\n \"requesterComment\": {\n \"comment\": \"This is a comment.\",\n \"created\": \"2017-07-11T18:45:37.098Z\",\n \"author\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180847e25f377017e2ae8cae4650b\",\n \"name\": \"john.doe\"\n }\n },\n \"reviewerComment\": {\n \"comment\": \"This is a comment.\",\n \"author\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"Adam Kennedy\"\n },\n \"created\": \"2017-07-11T18:45:37.098Z\"\n },\n \"previousReviewersComments\": [\n {\n \"comment\": \"This is a comment.\",\n \"created\": \"2017-07-11T18:45:37.098Z\",\n \"author\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180847e25f377017e2ae8cae4650b\",\n \"name\": \"john.doe\"\n }\n },\n {\n \"comment\": \"This is a comment.\",\n \"created\": \"2017-07-11T18:45:37.098Z\",\n \"author\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180847e25f377017e2ae8cae4650b\",\n \"name\": \"john.doe\"\n }\n }\n ],\n \"forwardHistory\": [\n {\n \"oldApproverName\": \"Frank Mir\",\n \"newApproverName\": \"Al Volta\",\n \"comment\": \"Forwarding from Frank to Al\",\n \"modified\": \"2019-08-23T18:52:57.398Z\",\n \"forwarderName\": \"William Wilson\",\n \"reassignmentType\": \"AUTOMATIC_REASSIGNMENT\"\n },\n {\n \"oldApproverName\": \"Frank Mir\",\n \"newApproverName\": \"Al Volta\",\n \"comment\": \"Forwarding from Frank to Al\",\n \"modified\": \"2019-08-23T18:52:57.398Z\",\n \"forwarderName\": \"William Wilson\",\n \"reassignmentType\": \"AUTOMATIC_REASSIGNMENT\"\n }\n ],\n \"commentRequiredWhenRejected\": true,\n \"state\": \"APPROVED\",\n \"removeDate\": \"2020-07-11T00:00:00Z\",\n \"removeDateUpdateRequested\": true,\n \"currentRemoveDate\": \"2020-07-11T00:00:00Z\",\n \"sodViolationContext\": {\n \"state\": \"SUCCESS\",\n \"uuid\": \"f73d16e9-a038-46c5-b217-1246e15fdbdd\",\n \"violationCheckResult\": {\n \"message\": {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n },\n \"clientMetadata\": {\n \"requestedAppName\": \"test-app\",\n \"requestedAppId\": \"2c91808f7892918f0178b78da4a305a1\"\n },\n \"violationContexts\": [\n {\n \"policy\": {\n \"type\": \"SOD_POLICY\",\n \"id\": \"0f11f2a4-7c94-4bf3-a2bd-742580fe3bde\",\n \"name\": \"Business SOD Policy\"\n },\n \"conflictingAccessCriteria\": {\n \"leftCriteria\": {\n \"criteriaList\": [\n {\n \"existing\": true,\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c918085771e9d3301773b3cb66f6398\",\n \"name\": \"My HR Entitlement\"\n },\n {\n \"existing\": true,\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c918085771e9d3301773b3cb66f6398\",\n \"name\": \"My HR Entitlement\"\n }\n ]\n },\n \"rightCriteria\": {\n \"criteriaList\": [\n {\n \"existing\": true,\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c918085771e9d3301773b3cb66f6398\",\n \"name\": \"My HR Entitlement\"\n },\n {\n \"existing\": true,\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c918085771e9d3301773b3cb66f6398\",\n \"name\": \"My HR Entitlement\"\n }\n ]\n }\n }\n },\n {\n \"policy\": {\n \"type\": \"SOD_POLICY\",\n \"id\": \"0f11f2a4-7c94-4bf3-a2bd-742580fe3bde\",\n \"name\": \"Business SOD Policy\"\n },\n \"conflictingAccessCriteria\": {\n \"leftCriteria\": {\n \"criteriaList\": [\n {\n \"existing\": true,\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c918085771e9d3301773b3cb66f6398\",\n \"name\": \"My HR Entitlement\"\n },\n {\n \"existing\": true,\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c918085771e9d3301773b3cb66f6398\",\n \"name\": \"My HR Entitlement\"\n }\n ]\n },\n \"rightCriteria\": {\n \"criteriaList\": [\n {\n \"existing\": true,\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c918085771e9d3301773b3cb66f6398\",\n \"name\": \"My HR Entitlement\"\n },\n {\n \"existing\": true,\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c918085771e9d3301773b3cb66f6398\",\n \"name\": \"My HR Entitlement\"\n }\n ]\n }\n }\n }\n ],\n \"violatedPolicies\": [\n {\n \"type\": \"SOD_POLICY\",\n \"id\": \"0f11f2a4-7c94-4bf3-a2bd-742580fe3bde\",\n \"name\": \"Business SOD Policy\"\n },\n {\n \"type\": \"SOD_POLICY\",\n \"id\": \"0f11f2a4-7c94-4bf3-a2bd-742580fe3bde\",\n \"name\": \"Business SOD Policy\"\n }\n ]\n }\n },\n \"preApprovalTriggerResult\": {\n \"comment\": \"This request was autoapproved by our automated ETS subscriber\",\n \"decision\": \"APPROVED\",\n \"reviewer\": \"Automated AR Approval\",\n \"date\": \"2022-06-07T19:18:40.748Z\"\n },\n \"clientMetadata\": {\n \"requestedAppName\": \"test-app\",\n \"requestedAppId\": \"2c91808f7892918f0178b78da4a305a1\"\n },\n \"requestedAccounts\": \"Excepteur\"\n },\n {\n \"id\": \"2c938083633d259901633d25c68c00fa\",\n \"name\": \"Approval Name\",\n \"created\": \"2017-07-11T18:45:37.098Z\",\n \"modified\": \"2018-07-25T20:22:28.104Z\",\n \"requestCreated\": \"2017-07-11T18:45:35.098Z\",\n \"requestType\": \"GRANT_ACCESS\",\n \"requester\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c7180a46faadee4016fb4e018c20648\",\n \"name\": \"William Wilson\"\n },\n \"requestedFor\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"William Wilson\"\n },\n \"reviewedBy\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c3780a46faadee4016fb4e018c20652\",\n \"name\": \"Allen Albertson\"\n },\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Support\"\n },\n \"requestedObject\": {\n \"id\": \"2c938083633d259901633d25c68c00fa\",\n \"name\": \"Object Name\",\n \"description\": \"Object Description\",\n \"type\": \"ROLE\"\n },\n \"requesterComment\": {\n \"comment\": \"This is a comment.\",\n \"created\": \"2017-07-11T18:45:37.098Z\",\n \"author\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180847e25f377017e2ae8cae4650b\",\n \"name\": \"john.doe\"\n }\n },\n \"reviewerComment\": {\n \"comment\": \"This is a comment.\",\n \"author\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"Adam Kennedy\"\n },\n \"created\": \"2017-07-11T18:45:37.098Z\"\n },\n \"previousReviewersComments\": [\n {\n \"comment\": \"This is a comment.\",\n \"created\": \"2017-07-11T18:45:37.098Z\",\n \"author\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180847e25f377017e2ae8cae4650b\",\n \"name\": \"john.doe\"\n }\n },\n {\n \"comment\": \"This is a comment.\",\n \"created\": \"2017-07-11T18:45:37.098Z\",\n \"author\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180847e25f377017e2ae8cae4650b\",\n \"name\": \"john.doe\"\n }\n }\n ],\n \"forwardHistory\": [\n {\n \"oldApproverName\": \"Frank Mir\",\n \"newApproverName\": \"Al Volta\",\n \"comment\": \"Forwarding from Frank to Al\",\n \"modified\": \"2019-08-23T18:52:57.398Z\",\n \"forwarderName\": \"William Wilson\",\n \"reassignmentType\": \"AUTOMATIC_REASSIGNMENT\"\n },\n {\n \"oldApproverName\": \"Frank Mir\",\n \"newApproverName\": \"Al Volta\",\n \"comment\": \"Forwarding from Frank to Al\",\n \"modified\": \"2019-08-23T18:52:57.398Z\",\n \"forwarderName\": \"William Wilson\",\n \"reassignmentType\": \"AUTOMATIC_REASSIGNMENT\"\n }\n ],\n \"commentRequiredWhenRejected\": true,\n \"state\": \"APPROVED\",\n \"removeDate\": \"2020-07-11T00:00:00Z\",\n \"removeDateUpdateRequested\": true,\n \"currentRemoveDate\": \"2020-07-11T00:00:00Z\",\n \"sodViolationContext\": {\n \"state\": \"SUCCESS\",\n \"uuid\": \"f73d16e9-a038-46c5-b217-1246e15fdbdd\",\n \"violationCheckResult\": {\n \"message\": {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n },\n \"clientMetadata\": {\n \"requestedAppName\": \"test-app\",\n \"requestedAppId\": \"2c91808f7892918f0178b78da4a305a1\"\n },\n \"violationContexts\": [\n {\n \"policy\": {\n \"type\": \"SOD_POLICY\",\n \"id\": \"0f11f2a4-7c94-4bf3-a2bd-742580fe3bde\",\n \"name\": \"Business SOD Policy\"\n },\n \"conflictingAccessCriteria\": {\n \"leftCriteria\": {\n \"criteriaList\": [\n {\n \"existing\": true,\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c918085771e9d3301773b3cb66f6398\",\n \"name\": \"My HR Entitlement\"\n },\n {\n \"existing\": true,\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c918085771e9d3301773b3cb66f6398\",\n \"name\": \"My HR Entitlement\"\n }\n ]\n },\n \"rightCriteria\": {\n \"criteriaList\": [\n {\n \"existing\": true,\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c918085771e9d3301773b3cb66f6398\",\n \"name\": \"My HR Entitlement\"\n },\n {\n \"existing\": true,\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c918085771e9d3301773b3cb66f6398\",\n \"name\": \"My HR Entitlement\"\n }\n ]\n }\n }\n },\n {\n \"policy\": {\n \"type\": \"SOD_POLICY\",\n \"id\": \"0f11f2a4-7c94-4bf3-a2bd-742580fe3bde\",\n \"name\": \"Business SOD Policy\"\n },\n \"conflictingAccessCriteria\": {\n \"leftCriteria\": {\n \"criteriaList\": [\n {\n \"existing\": true,\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c918085771e9d3301773b3cb66f6398\",\n \"name\": \"My HR Entitlement\"\n },\n {\n \"existing\": true,\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c918085771e9d3301773b3cb66f6398\",\n \"name\": \"My HR Entitlement\"\n }\n ]\n },\n \"rightCriteria\": {\n \"criteriaList\": [\n {\n \"existing\": true,\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c918085771e9d3301773b3cb66f6398\",\n \"name\": \"My HR Entitlement\"\n },\n {\n \"existing\": true,\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c918085771e9d3301773b3cb66f6398\",\n \"name\": \"My HR Entitlement\"\n }\n ]\n }\n }\n }\n ],\n \"violatedPolicies\": [\n {\n \"type\": \"SOD_POLICY\",\n \"id\": \"0f11f2a4-7c94-4bf3-a2bd-742580fe3bde\",\n \"name\": \"Business SOD Policy\"\n },\n {\n \"type\": \"SOD_POLICY\",\n \"id\": \"0f11f2a4-7c94-4bf3-a2bd-742580fe3bde\",\n \"name\": \"Business SOD Policy\"\n }\n ]\n }\n },\n \"preApprovalTriggerResult\": {\n \"comment\": \"This request was autoapproved by our automated ETS subscriber\",\n \"decision\": \"APPROVED\",\n \"reviewer\": \"Automated AR Approval\",\n \"date\": \"2022-06-07T19:18:40.748Z\"\n },\n \"clientMetadata\": {\n \"requestedAppName\": \"test-app\",\n \"requestedAppId\": \"2c91808f7892918f0178b78da4a305a1\"\n },\n \"requestedAccounts\": \"culpa ea dolor\"\n }\n]", + "body": "[\n {\n \"id\": \"2c938083633d259901633d25c68c00fa\",\n \"name\": \"Approval Name\",\n \"created\": \"2017-07-11T18:45:37.098Z\",\n \"modified\": \"2018-07-25T20:22:28.104Z\",\n \"requestCreated\": \"2017-07-11T18:45:35.098Z\",\n \"requestType\": \"GRANT_ACCESS\",\n \"requester\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c7180a46faadee4016fb4e018c20648\",\n \"name\": \"William Wilson\"\n },\n \"requestedFor\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"William Wilson\"\n },\n \"reviewedBy\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c3780a46faadee4016fb4e018c20652\",\n \"name\": \"Allen Albertson\"\n },\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Support\"\n },\n \"requestedObject\": {\n \"id\": \"2c938083633d259901633d25c68c00fa\",\n \"name\": \"Object Name\",\n \"description\": \"Object Description\",\n \"type\": \"ROLE\"\n },\n \"requesterComment\": {\n \"comment\": \"This is a comment.\",\n \"created\": \"2017-07-11T18:45:37.098Z\",\n \"author\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180847e25f377017e2ae8cae4650b\",\n \"name\": \"john.doe\"\n }\n },\n \"reviewerComment\": {\n \"comment\": \"This is a comment.\",\n \"author\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"Adam Kennedy\"\n },\n \"created\": \"2017-07-11T18:45:37.098Z\"\n },\n \"previousReviewersComments\": [\n {\n \"comment\": \"This is a comment.\",\n \"created\": \"2017-07-11T18:45:37.098Z\",\n \"author\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180847e25f377017e2ae8cae4650b\",\n \"name\": \"john.doe\"\n }\n },\n {\n \"comment\": \"This is a comment.\",\n \"created\": \"2017-07-11T18:45:37.098Z\",\n \"author\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180847e25f377017e2ae8cae4650b\",\n \"name\": \"john.doe\"\n }\n }\n ],\n \"forwardHistory\": [\n {\n \"oldApproverName\": \"Frank Mir\",\n \"newApproverName\": \"Al Volta\",\n \"comment\": \"Forwarding from Frank to Al\",\n \"modified\": \"2019-08-23T18:52:57.398Z\",\n \"forwarderName\": \"William Wilson\",\n \"reassignmentType\": \"AUTOMATIC_REASSIGNMENT\"\n },\n {\n \"oldApproverName\": \"Frank Mir\",\n \"newApproverName\": \"Al Volta\",\n \"comment\": \"Forwarding from Frank to Al\",\n \"modified\": \"2019-08-23T18:52:57.398Z\",\n \"forwarderName\": \"William Wilson\",\n \"reassignmentType\": \"AUTOMATIC_REASSIGNMENT\"\n }\n ],\n \"commentRequiredWhenRejected\": true,\n \"state\": \"APPROVED\",\n \"removeDate\": \"2020-07-11T00:00:00Z\",\n \"removeDateUpdateRequested\": true,\n \"currentRemoveDate\": \"2020-07-11T00:00:00Z\",\n \"sodViolationContext\": {\n \"state\": \"SUCCESS\",\n \"uuid\": \"f73d16e9-a038-46c5-b217-1246e15fdbdd\",\n \"violationCheckResult\": {\n \"message\": {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n },\n \"clientMetadata\": {\n \"requestedAppName\": \"test-app\",\n \"requestedAppId\": \"2c91808f7892918f0178b78da4a305a1\"\n },\n \"violationContexts\": [\n {\n \"policy\": {\n \"type\": \"SOD_POLICY\",\n \"id\": \"0f11f2a4-7c94-4bf3-a2bd-742580fe3bde\",\n \"name\": \"Business SOD Policy\"\n },\n \"conflictingAccessCriteria\": {\n \"leftCriteria\": {\n \"criteriaList\": [\n {\n \"existing\": true,\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c918085771e9d3301773b3cb66f6398\",\n \"name\": \"My HR Entitlement\"\n },\n {\n \"existing\": true,\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c918085771e9d3301773b3cb66f6398\",\n \"name\": \"My HR Entitlement\"\n }\n ]\n },\n \"rightCriteria\": {\n \"criteriaList\": [\n {\n \"existing\": true,\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c918085771e9d3301773b3cb66f6398\",\n \"name\": \"My HR Entitlement\"\n },\n {\n \"existing\": true,\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c918085771e9d3301773b3cb66f6398\",\n \"name\": \"My HR Entitlement\"\n }\n ]\n }\n }\n },\n {\n \"policy\": {\n \"type\": \"SOD_POLICY\",\n \"id\": \"0f11f2a4-7c94-4bf3-a2bd-742580fe3bde\",\n \"name\": \"Business SOD Policy\"\n },\n \"conflictingAccessCriteria\": {\n \"leftCriteria\": {\n \"criteriaList\": [\n {\n \"existing\": true,\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c918085771e9d3301773b3cb66f6398\",\n \"name\": \"My HR Entitlement\"\n },\n {\n \"existing\": true,\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c918085771e9d3301773b3cb66f6398\",\n \"name\": \"My HR Entitlement\"\n }\n ]\n },\n \"rightCriteria\": {\n \"criteriaList\": [\n {\n \"existing\": true,\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c918085771e9d3301773b3cb66f6398\",\n \"name\": \"My HR Entitlement\"\n },\n {\n \"existing\": true,\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c918085771e9d3301773b3cb66f6398\",\n \"name\": \"My HR Entitlement\"\n }\n ]\n }\n }\n }\n ],\n \"violatedPolicies\": [\n {\n \"type\": \"SOD_POLICY\",\n \"id\": \"0f11f2a4-7c94-4bf3-a2bd-742580fe3bde\",\n \"name\": \"Business SOD Policy\"\n },\n {\n \"type\": \"SOD_POLICY\",\n \"id\": \"0f11f2a4-7c94-4bf3-a2bd-742580fe3bde\",\n \"name\": \"Business SOD Policy\"\n }\n ]\n }\n },\n \"preApprovalTriggerResult\": {\n \"comment\": \"This request was autoapproved by our automated ETS subscriber\",\n \"decision\": \"APPROVED\",\n \"reviewer\": \"Automated AR Approval\",\n \"date\": \"2022-06-07T19:18:40.748Z\"\n },\n \"clientMetadata\": {\n \"requestedAppName\": \"test-app\",\n \"requestedAppId\": \"2c91808f7892918f0178b78da4a305a1\"\n },\n \"requestedAccounts\": \"velit au\"\n },\n {\n \"id\": \"2c938083633d259901633d25c68c00fa\",\n \"name\": \"Approval Name\",\n \"created\": \"2017-07-11T18:45:37.098Z\",\n \"modified\": \"2018-07-25T20:22:28.104Z\",\n \"requestCreated\": \"2017-07-11T18:45:35.098Z\",\n \"requestType\": \"GRANT_ACCESS\",\n \"requester\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c7180a46faadee4016fb4e018c20648\",\n \"name\": \"William Wilson\"\n },\n \"requestedFor\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"William Wilson\"\n },\n \"reviewedBy\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c3780a46faadee4016fb4e018c20652\",\n \"name\": \"Allen Albertson\"\n },\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Support\"\n },\n \"requestedObject\": {\n \"id\": \"2c938083633d259901633d25c68c00fa\",\n \"name\": \"Object Name\",\n \"description\": \"Object Description\",\n \"type\": \"ROLE\"\n },\n \"requesterComment\": {\n \"comment\": \"This is a comment.\",\n \"created\": \"2017-07-11T18:45:37.098Z\",\n \"author\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180847e25f377017e2ae8cae4650b\",\n \"name\": \"john.doe\"\n }\n },\n \"reviewerComment\": {\n \"comment\": \"This is a comment.\",\n \"author\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"Adam Kennedy\"\n },\n \"created\": \"2017-07-11T18:45:37.098Z\"\n },\n \"previousReviewersComments\": [\n {\n \"comment\": \"This is a comment.\",\n \"created\": \"2017-07-11T18:45:37.098Z\",\n \"author\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180847e25f377017e2ae8cae4650b\",\n \"name\": \"john.doe\"\n }\n },\n {\n \"comment\": \"This is a comment.\",\n \"created\": \"2017-07-11T18:45:37.098Z\",\n \"author\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180847e25f377017e2ae8cae4650b\",\n \"name\": \"john.doe\"\n }\n }\n ],\n \"forwardHistory\": [\n {\n \"oldApproverName\": \"Frank Mir\",\n \"newApproverName\": \"Al Volta\",\n \"comment\": \"Forwarding from Frank to Al\",\n \"modified\": \"2019-08-23T18:52:57.398Z\",\n \"forwarderName\": \"William Wilson\",\n \"reassignmentType\": \"AUTOMATIC_REASSIGNMENT\"\n },\n {\n \"oldApproverName\": \"Frank Mir\",\n \"newApproverName\": \"Al Volta\",\n \"comment\": \"Forwarding from Frank to Al\",\n \"modified\": \"2019-08-23T18:52:57.398Z\",\n \"forwarderName\": \"William Wilson\",\n \"reassignmentType\": \"AUTOMATIC_REASSIGNMENT\"\n }\n ],\n \"commentRequiredWhenRejected\": true,\n \"state\": \"APPROVED\",\n \"removeDate\": \"2020-07-11T00:00:00Z\",\n \"removeDateUpdateRequested\": true,\n \"currentRemoveDate\": \"2020-07-11T00:00:00Z\",\n \"sodViolationContext\": {\n \"state\": \"SUCCESS\",\n \"uuid\": \"f73d16e9-a038-46c5-b217-1246e15fdbdd\",\n \"violationCheckResult\": {\n \"message\": {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n },\n \"clientMetadata\": {\n \"requestedAppName\": \"test-app\",\n \"requestedAppId\": \"2c91808f7892918f0178b78da4a305a1\"\n },\n \"violationContexts\": [\n {\n \"policy\": {\n \"type\": \"SOD_POLICY\",\n \"id\": \"0f11f2a4-7c94-4bf3-a2bd-742580fe3bde\",\n \"name\": \"Business SOD Policy\"\n },\n \"conflictingAccessCriteria\": {\n \"leftCriteria\": {\n \"criteriaList\": [\n {\n \"existing\": true,\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c918085771e9d3301773b3cb66f6398\",\n \"name\": \"My HR Entitlement\"\n },\n {\n \"existing\": true,\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c918085771e9d3301773b3cb66f6398\",\n \"name\": \"My HR Entitlement\"\n }\n ]\n },\n \"rightCriteria\": {\n \"criteriaList\": [\n {\n \"existing\": true,\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c918085771e9d3301773b3cb66f6398\",\n \"name\": \"My HR Entitlement\"\n },\n {\n \"existing\": true,\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c918085771e9d3301773b3cb66f6398\",\n \"name\": \"My HR Entitlement\"\n }\n ]\n }\n }\n },\n {\n \"policy\": {\n \"type\": \"SOD_POLICY\",\n \"id\": \"0f11f2a4-7c94-4bf3-a2bd-742580fe3bde\",\n \"name\": \"Business SOD Policy\"\n },\n \"conflictingAccessCriteria\": {\n \"leftCriteria\": {\n \"criteriaList\": [\n {\n \"existing\": true,\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c918085771e9d3301773b3cb66f6398\",\n \"name\": \"My HR Entitlement\"\n },\n {\n \"existing\": true,\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c918085771e9d3301773b3cb66f6398\",\n \"name\": \"My HR Entitlement\"\n }\n ]\n },\n \"rightCriteria\": {\n \"criteriaList\": [\n {\n \"existing\": true,\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c918085771e9d3301773b3cb66f6398\",\n \"name\": \"My HR Entitlement\"\n },\n {\n \"existing\": true,\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c918085771e9d3301773b3cb66f6398\",\n \"name\": \"My HR Entitlement\"\n }\n ]\n }\n }\n }\n ],\n \"violatedPolicies\": [\n {\n \"type\": \"SOD_POLICY\",\n \"id\": \"0f11f2a4-7c94-4bf3-a2bd-742580fe3bde\",\n \"name\": \"Business SOD Policy\"\n },\n {\n \"type\": \"SOD_POLICY\",\n \"id\": \"0f11f2a4-7c94-4bf3-a2bd-742580fe3bde\",\n \"name\": \"Business SOD Policy\"\n }\n ]\n }\n },\n \"preApprovalTriggerResult\": {\n \"comment\": \"This request was autoapproved by our automated ETS subscriber\",\n \"decision\": \"APPROVED\",\n \"reviewer\": \"Automated AR Approval\",\n \"date\": \"2022-06-07T19:18:40.748Z\"\n },\n \"clientMetadata\": {\n \"requestedAppName\": \"test-app\",\n \"requestedAppId\": \"2c91808f7892918f0178b78da4a305a1\"\n },\n \"requestedAccounts\": \"aliquip ut tempor\"\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "19fd9e0f-318c-427f-b676-89ca3f9c9ced", + "id": "ace13732-cfb4-4ce1-8079-f1ba414a825b", "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": "labore" + "value": "laborum qui aliquip irure" }, { "disabled": true, @@ -6961,7 +6961,7 @@ "type": "text/plain" }, "key": "filters", - "value": "labore" + "value": "laborum qui aliquip irure" }, { "disabled": true, @@ -6970,7 +6970,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "labore" + "value": "laborum qui aliquip irure" } ], "variable": [] @@ -7005,7 +7005,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0a045caf-85b7-45f9-8618-5743bf886a5a", + "id": "a2626f59-8daf-4e2d-b055-f7f24d803326", "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": "labore" + "value": "laborum qui aliquip irure" }, { "disabled": true, @@ -7060,7 +7060,7 @@ "type": "text/plain" }, "key": "filters", - "value": "labore" + "value": "laborum qui aliquip irure" }, { "disabled": true, @@ -7069,7 +7069,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "labore" + "value": "laborum qui aliquip irure" } ], "variable": [] @@ -7104,7 +7104,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8b9e023b-fd3e-4367-8126-6e572ce7176c", + "id": "60ed7d74-890b-4a35-8149-c986a3c78562", "name": "Too Many Requests - Returned in response to too many requests in 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": "labore" + "value": "laborum qui aliquip irure" }, { "disabled": true, @@ -7159,7 +7159,7 @@ "type": "text/plain" }, "key": "filters", - "value": "labore" + "value": "laborum qui aliquip irure" }, { "disabled": true, @@ -7168,7 +7168,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "labore" + "value": "laborum qui aliquip irure" } ], "variable": [] @@ -7203,7 +7203,7 @@ "_postman_previewlanguage": "json" }, { - "id": "62bb92e5-0f22-41bf-a019-dd335a66e45f", + "id": "c7174fdc-c7a4-4662-b7ba-b416f8cb9e96", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -7222,7 +7222,7 @@ "type": "text/plain" }, "key": "owner-id", - "value": "labore" + "value": "laborum qui aliquip irure" }, { "disabled": true, @@ -7258,7 +7258,7 @@ "type": "text/plain" }, "key": "filters", - "value": "labore" + "value": "laborum qui aliquip irure" }, { "disabled": true, @@ -7267,7 +7267,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "labore" + "value": "laborum qui aliquip irure" } ], "variable": [] @@ -7308,7 +7308,7 @@ } }, { - "id": "fc3c8629-6b3b-4913-8811-b0a998cbd789", + "id": "db9913bf-3f6e-4759-92c3-46b3d44ab972", "name": "Approve Access Request Approval", "request": { "name": "Approve Access Request Approval", @@ -7363,7 +7363,7 @@ }, "response": [ { - "id": "41ca5c53-fc58-4e25-8574-bdaa37fa8143", + "id": "539b3796-dab6-4257-adb5-166d95868701", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -7421,7 +7421,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7b5fe232-c16b-4325-a136-4d4a7aaaa429", + "id": "f77c75dc-4d2f-4005-8fba-333dc180ae1e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -7479,7 +7479,7 @@ "_postman_previewlanguage": "json" }, { - "id": "96296579-de44-40c5-b078-f3f89f9637d6", + "id": "63cf7cff-bedb-46c5-a29a-adf8f702656f", "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": "b9df3742-784b-4086-9852-66881bd65ebe", + "id": "d98a038b-92ce-49c7-b656-fea2a0c28e6c", "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": "984d00ab-9d10-4515-8b11-96cce850ee5d", + "id": "fa96c479-4cde-4466-bfa2-834e0bd4e9e8", "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": "98883eb6-6260-4e92-b53e-c072ac4ee44f", + "id": "b1df1df1-357e-4ce4-be6d-623f6d24f761", "name": "Too Many Requests - Returned in response to too many requests in 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": "0e7d05c7-eb6d-42f3-9f8d-746b893655c8", + "id": "f02613bf-92f2-469b-9629-f2d6b12ccd0a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -7775,7 +7775,7 @@ } }, { - "id": "679cf5bb-420b-44f0-a8fa-cd86467e65e3", + "id": "08368b80-9b3b-4a15-ad51-4976e2caa065", "name": "Reject Access Request Approval", "request": { "name": "Reject Access Request Approval", @@ -7830,7 +7830,7 @@ }, "response": [ { - "id": "cb7df8ff-6fef-4e22-9e80-08b14ebb7158", + "id": "053fb4ae-2e41-4e4d-8a90-7205cdee062f", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -7888,7 +7888,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5727e348-efb0-4e73-be15-5f41913ca06c", + "id": "be7c79c3-6a5e-43ed-a62b-8c8b921ab288", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -7946,7 +7946,7 @@ "_postman_previewlanguage": "json" }, { - "id": "de4e402e-9d43-48b3-bee5-351dc13c57f5", + "id": "661184d1-c22e-4ccc-b853-0ba12376a421", "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": "7d789abb-1989-426b-bf51-b8a8646e100c", + "id": "acd4ee5e-ff03-4de9-8572-aadd6e40a261", "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": "26fa09ac-5b42-400d-a429-fa7e66ced7fa", + "id": "7e6c05ee-f88d-4470-8dec-943d58206633", "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": "ff7f6751-8c6c-4c21-bcfb-fbe09ffcbae8", + "id": "c67a2f34-c16b-4a30-aa4d-687ad0137721", "name": "Too Many Requests - Returned in response to too many requests in 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": "42327fb2-4cd5-400e-a701-e405f6737100", + "id": "80f41f25-d17a-4935-8657-d82066eed070", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -8242,7 +8242,7 @@ } }, { - "id": "1e91cb1c-82e4-4d16-add9-7cb381065974", + "id": "29487d0c-2a06-4ed8-8207-ebb91063246c", "name": "Forward Access Request Approval", "request": { "name": "Forward Access Request Approval", @@ -8286,7 +8286,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"newOwnerId\": \"anim incididunt laborum dolor\",\n \"comment\": \"laborum Duis fugiat\"\n}", + "raw": "{\n \"newOwnerId\": \"culpa mollit quis\",\n \"comment\": \"consequat dolor dolore\"\n}", "options": { "raw": { "headerFamily": "json", @@ -8297,7 +8297,7 @@ }, "response": [ { - "id": "f8bdef54-db2e-4d11-bcf3-92748042f1ec", + "id": "8652853d-acc2-467f-a27f-45d26d66325b", "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\": \"anim incididunt laborum dolor\",\n \"comment\": \"laborum Duis fugiat\"\n}", + "raw": "{\n \"newOwnerId\": \"culpa mollit quis\",\n \"comment\": \"consequat dolor dolore\"\n}", "options": { "raw": { "headerFamily": "json", @@ -8355,7 +8355,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f7465830-ab32-4a0d-b9cc-6c0e04c5374f", + "id": "65a2522f-6a3b-48d1-bab2-fbb910ad2d72", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -8391,7 +8391,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"newOwnerId\": \"anim incididunt laborum dolor\",\n \"comment\": \"laborum Duis fugiat\"\n}", + "raw": "{\n \"newOwnerId\": \"culpa mollit quis\",\n \"comment\": \"consequat dolor dolore\"\n}", "options": { "raw": { "headerFamily": "json", @@ -8413,7 +8413,7 @@ "_postman_previewlanguage": "json" }, { - "id": "767a27eb-2d1e-4272-9767-48c713defe25", + "id": "d13133b1-1309-4bcb-8326-349cbafc5b7e", "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\": \"anim incididunt laborum dolor\",\n \"comment\": \"laborum Duis fugiat\"\n}", + "raw": "{\n \"newOwnerId\": \"culpa mollit quis\",\n \"comment\": \"consequat dolor dolore\"\n}", "options": { "raw": { "headerFamily": "json", @@ -8471,7 +8471,7 @@ "_postman_previewlanguage": "json" }, { - "id": "aa33735d-87df-423a-8ebf-e79201b55d36", + "id": "ee9cd793-ecc1-45c4-9def-8550b669e31e", "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\": \"anim incididunt laborum dolor\",\n \"comment\": \"laborum Duis fugiat\"\n}", + "raw": "{\n \"newOwnerId\": \"culpa mollit quis\",\n \"comment\": \"consequat dolor dolore\"\n}", "options": { "raw": { "headerFamily": "json", @@ -8529,7 +8529,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1193c87e-9cc2-4957-9cad-2aa15ea516bb", + "id": "b22c2d54-3480-4e34-a73d-76bb80bd6f96", "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\": \"anim incididunt laborum dolor\",\n \"comment\": \"laborum Duis fugiat\"\n}", + "raw": "{\n \"newOwnerId\": \"culpa mollit quis\",\n \"comment\": \"consequat dolor dolore\"\n}", "options": { "raw": { "headerFamily": "json", @@ -8587,7 +8587,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bb298aaf-b122-4c0b-a4f6-3ed0e9e54a29", + "id": "0d538903-958d-4b81-86b4-ec3233521d0b", "name": "Too Many Requests - Returned in response to too many requests in 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\": \"anim incididunt laborum dolor\",\n \"comment\": \"laborum Duis fugiat\"\n}", + "raw": "{\n \"newOwnerId\": \"culpa mollit quis\",\n \"comment\": \"consequat dolor dolore\"\n}", "options": { "raw": { "headerFamily": "json", @@ -8645,7 +8645,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6e7c050c-99d7-476a-8460-5b6b0d6cb40c", + "id": "0096a0eb-ff76-44a9-af04-5a4df8c76e3a", "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\": \"anim incididunt laborum dolor\",\n \"comment\": \"laborum Duis fugiat\"\n}", + "raw": "{\n \"newOwnerId\": \"culpa mollit quis\",\n \"comment\": \"consequat dolor dolore\"\n}", "options": { "raw": { "headerFamily": "json", @@ -8709,7 +8709,7 @@ } }, { - "id": "4b220867-28d9-458d-a214-f795b6eb3847", + "id": "5c4e1c69-0fcf-41ad-88e6-5cf9f82f40de", "name": "Get Access Requests Approvals Number", "request": { "name": "Get Access Requests Approvals Number", @@ -8758,7 +8758,7 @@ }, "response": [ { - "id": "98a232d6-4e64-4485-b8f6-5207f826a816", + "id": "d4cb894d-cee7-41a6-ac9b-9fcf370b754a", "name": "Number of pending, approved, rejected access request approvals.", "originalRequest": { "url": { @@ -8816,12 +8816,12 @@ "value": "application/json" } ], - "body": "{\n \"pending\": -82629574,\n \"approved\": -79895806,\n \"rejected\": -97611414\n}", + "body": "{\n \"pending\": 49267182,\n \"approved\": 19509349,\n \"rejected\": -68778335\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e4544467-24d8-4f40-b83d-cd56aa6f7c6e", + "id": "1df8fb12-e9c0-416f-b989-e059837a60db", "name": "Client Error - Returned if the query parameter is invalid.", "originalRequest": { "url": { @@ -8884,7 +8884,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3d57e376-a380-45cb-bf93-127cefeced1c", + "id": "e9d66127-0c38-4955-8046-75ec6bd0c51f", "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": "74ec4520-9e11-4996-9940-e1540445f0c6", + "id": "280e6392-70b7-4186-97f2-7e0d4d3c87b9", "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": "deed7ae4-e54b-477c-84f3-6ffcb4e8b912", + "id": "796d06b1-22ae-483b-9faf-e3f0a0b92dc1", "name": "Too Many Requests - Returned in response to too many requests in 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": "ad5beda4-b639-46e1-9243-1097cf8216e5", + "id": "c8d91163-8dbd-4c13-b550-1583d3691dcb", "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": "a376807f-2222-426e-a04a-77c7c5a13df8", + "id": "f4340cec-a1dd-4704-ab47-072c5cb4bcd0", "name": "Return access request identity metrics", "request": { "name": "Return access request identity metrics", @@ -9213,7 +9213,7 @@ }, "response": [ { - "id": "25ced8b1-10db-427f-a5ae-3b9492b7f9fe", + "id": "cd1edb51-88cd-4516-b714-e38c137c3728", "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": "05b55a59-3e10-4e79-8ae6-58cad2c7f855", + "id": "93383f52-5e4a-4195-9de4-9a1ce37f45a6", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -9309,7 +9309,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5a98c0e5-69ac-4d97-9e27-0698f239c02a", + "id": "a4549860-7b88-4056-95bd-8e043819b592", "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": "f0e0945e-5588-4794-b6a4-64f49264f3b7", + "id": "72e0a3f7-745d-49fe-8270-c34296d5f481", "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": "2518baae-0a13-4977-b35e-f9e3df42283f", + "id": "05ef4e51-43af-4d46-8975-e167a05c6e2b", "name": "Too Many Requests - Returned in response to too many requests in 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": "b19c5373-8ee1-4bd5-bfe9-5c0d29d5ef2f", + "id": "f9681eb8-257b-4671-8eb7-939d168992ef", "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": "a78a53d5-ef76-4655-a5fc-a375b3766f5f", + "id": "8929d6db-272b-4a89-97f6-f1a4cd79447b", "name": "Submit Access Request", "request": { "name": "Submit Access Request", @@ -9555,7 +9555,7 @@ }, "response": [ { - "id": "0879d203-1839-4265-8aa2-799d599b1369", + "id": "071720ef-b845-4f85-80ee-9adc8b0bc1c4", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -9611,7 +9611,7 @@ "_postman_previewlanguage": "json" }, { - "id": "39e6be72-5fe3-4471-bc46-7c54e44b4719", + "id": "8c875bfc-89a4-4c6c-bbad-481b5526851e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -9667,7 +9667,7 @@ "_postman_previewlanguage": "json" }, { - "id": "10fe45c3-b77d-4a4d-ba5f-cb76d51a8113", + "id": "2091dd4f-82d6-4be4-9513-816d9a847d4a", "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": "28b68e35-4f1f-4779-82ec-d7f308cd65ea", + "id": "421630da-d9ad-41d6-bf03-5b1336f294f4", "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": "fc31bc7d-96a1-471b-8663-0315f1fbb620", + "id": "22a0f22a-7a81-4baf-be91-d185f73609dd", "name": "Too Many Requests - Returned in response to too many requests in 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": "69c6a579-93bf-4c68-9bf5-80ed9d3f237e", + "id": "acb6ae35-6c58-4142-aa84-b96d34b3215e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -9897,7 +9897,7 @@ } }, { - "id": "f3a6cb53-c657-4e47-bc54-b13112c5e15b", + "id": "eb99671b-3605-4653-8e7c-261e22792e0b", "name": "Cancel Access Request", "request": { "name": "Cancel Access Request", @@ -9940,7 +9940,7 @@ }, "response": [ { - "id": "e9600576-8f7a-489b-9a03-fbd0dab1a3c5", + "id": "7c70c223-65f1-4e59-b447-57bd602fcc65", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -9997,7 +9997,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a1bb4659-1337-490a-b35d-1ce1b2e2e519", + "id": "06b31695-33cd-45e6-8d3d-cb101e8c74a3", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -10054,7 +10054,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5aa92c80-0189-4310-bd1b-ed4e168f2d93", + "id": "c9b204af-8159-44ae-8a8e-5b273f4a0b71", "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": "325583bd-b815-434f-afac-4b98712f0a34", + "id": "777d60ac-d681-4a26-a042-76db80f81f1a", "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": "19f124f3-e079-4d71-bf5e-e841966a6a1b", + "id": "a8715d04-297a-4182-8356-9e4f609041ac", "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": "a5e01e8a-b549-4bfe-828e-a8c130fde24e", + "id": "6ade12f1-265a-476f-b274-abbca7e1e594", "name": "Too Many Requests - Returned in response to too many requests in 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": "6e1beadc-a1c8-4ea4-816e-b1e0439f74e1", + "id": "7872d464-d9d4-497e-b89c-27a1181b9f20", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -10345,7 +10345,7 @@ } }, { - "id": "ba2b6383-fd8f-47dd-ada5-578c158923ca", + "id": "4a3343b8-f65f-493b-8e3e-ba911e4107dd", "name": "Close Access Request", "request": { "name": "Close Access Request", @@ -10388,7 +10388,7 @@ }, "response": [ { - "id": "7eaf614d-0787-4212-800a-6b328599b026", + "id": "8881a63d-2fda-4fb8-813e-838fea4ee6b2", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -10445,7 +10445,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9f011be1-8b4b-4245-99fb-d936a1db8ae8", + "id": "21f6991f-65cb-4f25-96f7-a01225a18bb2", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -10502,7 +10502,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3dcfee63-8a3f-4f2c-be51-3b57dfcfcb1e", + "id": "d29e1638-1514-4cfc-92d6-6328e033ec7b", "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": "ac5ecdfe-9bc7-44bd-9eff-40cac58cb5a5", + "id": "0c76e9ff-b585-47de-b4a2-9681edbe4178", "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": "5e68edee-cc62-46eb-a8a6-bbe96fdc6324", + "id": "47f8e8b0-5b9b-4952-82a7-ebaf0d7fd255", "name": "Too Many Requests - Returned in response to too many requests in 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": "3e633b18-d278-4aac-950e-877e6d62680b", + "id": "51c2fecb-8eac-4699-85f1-3aa2e4326a8c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -10736,7 +10736,7 @@ } }, { - "id": "2caed6a7-4dd8-4449-bbe0-6dbd9934900e", + "id": "cedee9be-3363-4840-b3b5-0e4f653bfa30", "name": "Get Access Request Configuration", "request": { "name": "Get Access Request Configuration", @@ -10765,7 +10765,7 @@ }, "response": [ { - "id": "df968a63-d93a-4620-9ffa-76e077d69215", + "id": "c13f21c1-9731-47eb-b317-499112a332f8", "name": "Access Request Configuration Details.", "originalRequest": { "url": { @@ -10808,7 +10808,7 @@ "_postman_previewlanguage": "json" }, { - "id": "916f117c-190d-4476-97d4-ae7c8e4f25c8", + "id": "a4ed20a0-c6b8-4d5d-a203-2c91d9de1f66", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -10851,7 +10851,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2bb75376-8333-4c1f-8ef9-8cd87f28afa7", + "id": "57dd308e-eade-44e3-8fb1-6de8e3080777", "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": "ba474085-e45c-43c3-8b4a-dd5103a1232d", + "id": "7f265515-74f7-48e4-b845-6c92d98b4ad7", "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": "8bfc2231-cc43-414d-8a74-9a79b1cfcdd0", + "id": "090c1103-9d09-4c89-abae-7ff985e4d243", "name": "Too Many Requests - Returned in response to too many requests in 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": "780e5828-0662-41a1-8436-b680742361d6", + "id": "4849f9f5-935a-431a-8079-94bb9fb41e4d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -11029,7 +11029,7 @@ } }, { - "id": "d7bb1f9e-7a4e-4696-b51b-d0514ee1026b", + "id": "5c31f1a3-6c16-47ba-914f-a5ca242580b8", "name": "Update Access Request Configuration", "request": { "name": "Update Access Request Configuration", @@ -11071,7 +11071,7 @@ }, "response": [ { - "id": "cb96ff64-a967-4ab2-b5bb-91a41454523c", + "id": "dbc15afd-ffd8-4673-a609-4263364760e6", "name": "Access Request Configuration Details.", "originalRequest": { "url": { @@ -11127,7 +11127,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3a9115b1-61e3-4e54-b1f7-5bb0cf8bac26", + "id": "559c31b5-3bc0-47fa-91bc-52019538f00f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -11183,7 +11183,7 @@ "_postman_previewlanguage": "json" }, { - "id": "05b721a6-1e9a-4437-bb0c-aa3c9e0170a9", + "id": "b62b96a9-f60b-4e26-8c44-135e3ffa9b24", "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": "c549f818-ecb5-4fa1-95a4-73b9d35cba1c", + "id": "dc31a7ac-d242-4eec-94d9-7b44e8e8bb95", "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": "8e05c640-3278-49c4-abc0-a1367d9fd628", + "id": "6861dacc-de63-4768-a985-d6b0bb73ce63", "name": "Too Many Requests - Returned in response to too many requests in 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": "fb09d374-8b47-41d6-bb34-dcf13c52938c", + "id": "83a59eb6-113b-4075-9b5b-3c5684d49401", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -11413,7 +11413,7 @@ } }, { - "id": "8d78695a-8711-44e8-a2b5-5ba8f8d4fc14", + "id": "161ccb29-bea0-473a-92da-42b808044ffb", "name": "Access Request Status", "request": { "name": "Access Request Status", @@ -11524,7 +11524,7 @@ }, "response": [ { - "id": "b5e67eaf-a0db-41df-88e6-b2a6fcef89e2", + "id": "0dcd135e-cfc6-4313-9bd4-6fc63cb48290", "name": "List of requested item statuses.", "originalRequest": { "url": { @@ -11649,7 +11649,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c6f082cf-2f8c-4bd1-8544-5b7c7420c342", + "id": "01ffaf0f-d0fb-4eaf-b88b-0302adf74edc", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -11774,7 +11774,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e4b3caac-d191-48a9-89f3-9a6fc6a00949", + "id": "11573b84-e776-4dce-bd74-1309ceb3ddf9", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -11899,7 +11899,7 @@ "_postman_previewlanguage": "json" }, { - "id": "91af2065-0820-482c-9d99-94855a302db5", + "id": "e4a19583-5f88-4177-91d5-c0dba7e747c2", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -12024,7 +12024,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4f869986-8aee-4e07-9d23-25317f7c0e4e", + "id": "21af0486-5d58-432c-8457-19e17f1375eb", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -12149,7 +12149,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fd6174b0-488f-405f-82d5-3bb4eda35fcf", + "id": "418cd891-ce1c-483e-a039-9d621870ecdf", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -12286,7 +12286,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": "aabae0a7-2da5-4b41-bc85-a25b8e112224", + "id": "c9a33347-6338-4450-b69c-75ffdc4245f4", "name": "List Account Activities", "request": { "name": "List Account Activities", @@ -12309,7 +12309,7 @@ "type": "text/plain" }, "key": "requested-for", - "value": "labore" + "value": "laborum qui aliquip irure" }, { "disabled": true, @@ -12318,7 +12318,7 @@ "type": "text/plain" }, "key": "requested-by", - "value": "labore" + "value": "laborum qui aliquip irure" }, { "disabled": true, @@ -12327,7 +12327,7 @@ "type": "text/plain" }, "key": "regarding-identity", - "value": "labore" + "value": "laborum qui aliquip irure" }, { "disabled": true, @@ -12336,7 +12336,7 @@ "type": "text/plain" }, "key": "type", - "value": "labore" + "value": "laborum qui aliquip irure" }, { "disabled": true, @@ -12372,7 +12372,7 @@ "type": "text/plain" }, "key": "filters", - "value": "labore" + "value": "laborum qui aliquip irure" }, { "disabled": true, @@ -12381,7 +12381,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "labore" + "value": "laborum qui aliquip irure" } ], "variable": [] @@ -12397,7 +12397,7 @@ }, "response": [ { - "id": "fc2b259c-4ba9-40f2-aebc-9e15f523d10f", + "id": "d990b9b8-113b-4dcc-87a1-6f0f60b1fdad", "name": "List of account activities", "originalRequest": { "url": { @@ -12415,7 +12415,7 @@ "type": "text/plain" }, "key": "requested-for", - "value": "labore" + "value": "laborum qui aliquip irure" }, { "disabled": true, @@ -12424,7 +12424,7 @@ "type": "text/plain" }, "key": "requested-by", - "value": "labore" + "value": "laborum qui aliquip irure" }, { "disabled": true, @@ -12433,7 +12433,7 @@ "type": "text/plain" }, "key": "regarding-identity", - "value": "labore" + "value": "laborum qui aliquip irure" }, { "disabled": true, @@ -12442,7 +12442,7 @@ "type": "text/plain" }, "key": "type", - "value": "labore" + "value": "laborum qui aliquip irure" }, { "disabled": true, @@ -12478,7 +12478,7 @@ "type": "text/plain" }, "key": "filters", - "value": "labore" + "value": "laborum qui aliquip irure" }, { "disabled": true, @@ -12487,7 +12487,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "labore" + "value": "laborum qui aliquip irure" } ], "variable": [] @@ -12517,12 +12517,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 \"ut93\": \"tempor aliquip\",\n \"mollit_51\": \"nisi laboris pariatur\",\n \"deserunt_6\": \"ullamco proident elit nostrud veniam\"\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 \"deserunt_\": \"laborum Ut aliqua dolor\",\n \"irure_074\": \"magna in in adipisicing aliquip\",\n \"sed6\": \"do\"\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]", + "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 \"consequat452\": \"\"\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 \"cillum_1f\": \"exercitation ut nostrud labore\",\n \"quisd\": \"nisi dolore occaecat\",\n \"incididunt8_b\": \"labore id\"\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": "63287e10-c33a-49ed-b290-f7323d726a0f", + "id": "ff39a2d8-94be-4984-8ca1-eaf1202c3b88", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -12540,7 +12540,7 @@ "type": "text/plain" }, "key": "requested-for", - "value": "labore" + "value": "laborum qui aliquip irure" }, { "disabled": true, @@ -12549,7 +12549,7 @@ "type": "text/plain" }, "key": "requested-by", - "value": "labore" + "value": "laborum qui aliquip irure" }, { "disabled": true, @@ -12558,7 +12558,7 @@ "type": "text/plain" }, "key": "regarding-identity", - "value": "labore" + "value": "laborum qui aliquip irure" }, { "disabled": true, @@ -12567,7 +12567,7 @@ "type": "text/plain" }, "key": "type", - "value": "labore" + "value": "laborum qui aliquip irure" }, { "disabled": true, @@ -12603,7 +12603,7 @@ "type": "text/plain" }, "key": "filters", - "value": "labore" + "value": "laborum qui aliquip irure" }, { "disabled": true, @@ -12612,7 +12612,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "labore" + "value": "laborum qui aliquip irure" } ], "variable": [] @@ -12647,7 +12647,7 @@ "_postman_previewlanguage": "json" }, { - "id": "24df6fbe-8fed-498e-9e25-6b3069843edf", + "id": "31b179d8-2eed-472e-93d5-613626cffac7", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -12665,7 +12665,7 @@ "type": "text/plain" }, "key": "requested-for", - "value": "labore" + "value": "laborum qui aliquip irure" }, { "disabled": true, @@ -12674,7 +12674,7 @@ "type": "text/plain" }, "key": "requested-by", - "value": "labore" + "value": "laborum qui aliquip irure" }, { "disabled": true, @@ -12683,7 +12683,7 @@ "type": "text/plain" }, "key": "regarding-identity", - "value": "labore" + "value": "laborum qui aliquip irure" }, { "disabled": true, @@ -12692,7 +12692,7 @@ "type": "text/plain" }, "key": "type", - "value": "labore" + "value": "laborum qui aliquip irure" }, { "disabled": true, @@ -12728,7 +12728,7 @@ "type": "text/plain" }, "key": "filters", - "value": "labore" + "value": "laborum qui aliquip irure" }, { "disabled": true, @@ -12737,7 +12737,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "labore" + "value": "laborum qui aliquip irure" } ], "variable": [] @@ -12772,7 +12772,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bda7e800-18cf-4221-97ab-e0aaf396246b", + "id": "260b77c6-a4e7-40d5-9596-a6df6017b6c0", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -12790,7 +12790,7 @@ "type": "text/plain" }, "key": "requested-for", - "value": "labore" + "value": "laborum qui aliquip irure" }, { "disabled": true, @@ -12799,7 +12799,7 @@ "type": "text/plain" }, "key": "requested-by", - "value": "labore" + "value": "laborum qui aliquip irure" }, { "disabled": true, @@ -12808,7 +12808,7 @@ "type": "text/plain" }, "key": "regarding-identity", - "value": "labore" + "value": "laborum qui aliquip irure" }, { "disabled": true, @@ -12817,7 +12817,7 @@ "type": "text/plain" }, "key": "type", - "value": "labore" + "value": "laborum qui aliquip irure" }, { "disabled": true, @@ -12853,7 +12853,7 @@ "type": "text/plain" }, "key": "filters", - "value": "labore" + "value": "laborum qui aliquip irure" }, { "disabled": true, @@ -12862,7 +12862,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "labore" + "value": "laborum qui aliquip irure" } ], "variable": [] @@ -12897,7 +12897,7 @@ "_postman_previewlanguage": "json" }, { - "id": "39d52257-56cd-468a-a2a9-6b90e637be1e", + "id": "5ec46ed6-90f4-4e35-8576-1a7bbb678a7d", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -12915,7 +12915,7 @@ "type": "text/plain" }, "key": "requested-for", - "value": "labore" + "value": "laborum qui aliquip irure" }, { "disabled": true, @@ -12924,7 +12924,7 @@ "type": "text/plain" }, "key": "requested-by", - "value": "labore" + "value": "laborum qui aliquip irure" }, { "disabled": true, @@ -12933,7 +12933,7 @@ "type": "text/plain" }, "key": "regarding-identity", - "value": "labore" + "value": "laborum qui aliquip irure" }, { "disabled": true, @@ -12942,7 +12942,7 @@ "type": "text/plain" }, "key": "type", - "value": "labore" + "value": "laborum qui aliquip irure" }, { "disabled": true, @@ -12978,7 +12978,7 @@ "type": "text/plain" }, "key": "filters", - "value": "labore" + "value": "laborum qui aliquip irure" }, { "disabled": true, @@ -12987,7 +12987,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "labore" + "value": "laborum qui aliquip irure" } ], "variable": [] @@ -13022,7 +13022,7 @@ "_postman_previewlanguage": "json" }, { - "id": "19d86ad4-047a-41e0-beb7-e69841788f02", + "id": "a59acc14-3757-469c-9d71-2f1309e7125e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -13040,7 +13040,7 @@ "type": "text/plain" }, "key": "requested-for", - "value": "labore" + "value": "laborum qui aliquip irure" }, { "disabled": true, @@ -13049,7 +13049,7 @@ "type": "text/plain" }, "key": "requested-by", - "value": "labore" + "value": "laborum qui aliquip irure" }, { "disabled": true, @@ -13058,7 +13058,7 @@ "type": "text/plain" }, "key": "regarding-identity", - "value": "labore" + "value": "laborum qui aliquip irure" }, { "disabled": true, @@ -13067,7 +13067,7 @@ "type": "text/plain" }, "key": "type", - "value": "labore" + "value": "laborum qui aliquip irure" }, { "disabled": true, @@ -13103,7 +13103,7 @@ "type": "text/plain" }, "key": "filters", - "value": "labore" + "value": "laborum qui aliquip irure" }, { "disabled": true, @@ -13112,7 +13112,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "labore" + "value": "laborum qui aliquip irure" } ], "variable": [] @@ -13153,7 +13153,7 @@ } }, { - "id": "62dd38e7-e895-4464-8e6b-b6affb9966c9", + "id": "6220fc6f-9680-4aaf-85ea-93d6add7d5a4", "name": "Get Account Activity", "request": { "name": "Get Account Activity", @@ -13194,7 +13194,7 @@ }, "response": [ { - "id": "1cec2de1-4f09-4eda-afe0-7e4f84c08bc3", + "id": "80ef5e74-358a-45f8-af0d-351bfadd0024", "name": "An account activity object", "originalRequest": { "url": { @@ -13233,12 +13233,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 \"enimf7\": \"laboris\",\n \"Duis3\": \"nostrud magna elit\"\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 \"dolor_7\": \"nostrud deserunt eiusmod\",\n \"exercitation26\": \"irure in\"\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}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "126ce1c5-1f46-456f-a132-f3bdc34c0412", + "id": "001c9ed0-c54a-4250-8889-79ec0ef4780c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -13282,7 +13282,7 @@ "_postman_previewlanguage": "json" }, { - "id": "59ebd595-a791-4b25-bab2-59d1a314ec4d", + "id": "d478bfdc-7a50-454a-a08c-d1860fd318aa", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -13326,7 +13326,7 @@ "_postman_previewlanguage": "json" }, { - "id": "df780469-1810-4816-81ad-4a2b236de02e", + "id": "0f9cf30b-6bb5-4542-9b6c-db4625d6ad07", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -13370,7 +13370,7 @@ "_postman_previewlanguage": "json" }, { - "id": "83718485-0669-49fd-8b8c-68371df60bc6", + "id": "bffbc79e-9090-42e2-a113-cad0a51eb860", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -13414,7 +13414,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eb5cda6e-4b3e-4ad6-a21a-0288327f1786", + "id": "18d0333f-23dd-45e8-85a6-c8ff6836e1db", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -13458,7 +13458,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3ef9c669-0333-496d-af43-c8edd3cdc365", + "id": "9d419a6f-83e3-4440-85f9-91bb12fd05db", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -13514,7 +13514,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": "dbc2db70-4a9c-4443-bd1a-2c9ad0d84d6d", + "id": "3a345ee6-f469-44cd-9234-a05751488e99", "name": "In-progress Account Aggregation status", "request": { "name": "In-progress Account Aggregation status", @@ -13556,7 +13556,7 @@ }, "response": [ { - "id": "571ebbf0-85e8-401b-b0c4-26245cc990c7", + "id": "44ee3948-7406-4926-a1ed-a5c3a4f22d62", "name": "An account aggregation status object", "originalRequest": { "url": { @@ -13601,7 +13601,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3c480e5e-1ced-4c2f-88ca-5cc7500d4446", + "id": "6db18c82-f9bc-477c-a40d-da4408f0b653", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -13646,7 +13646,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c93517a0-a4fe-4854-a77c-70b0cff03a29", + "id": "01671db2-6f8f-48ce-be64-430ba9b7f985", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -13691,7 +13691,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2b1d9d6f-bb9e-4c26-9dd6-4e43546d48e3", + "id": "2bf5ff03-d013-4582-9455-56486377769b", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -13736,7 +13736,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dbb7ac1d-4774-4be8-a88d-37dbe2cbd906", + "id": "da879487-8c70-4e9e-8c19-30e6d2174c3e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -13781,7 +13781,7 @@ "_postman_previewlanguage": "json" }, { - "id": "450e1083-8b27-4975-bf7a-e4dca3443ccc", + "id": "f790ca60-603b-4565-9d09-0a7f0a2283b7", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -13838,7 +13838,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": "89f2918b-8b1a-43bb-9949-13568983a1d4", + "id": "a556bad8-de73-4660-9418-c71b0ff2faf5", "name": "Returns account usage insights", "request": { "name": "Returns account usage insights", @@ -13917,7 +13917,7 @@ }, "response": [ { - "id": "ab160414-20bb-464d-831f-d26765182d72", + "id": "afe109a6-4316-40d1-9403-a96c875ce9c5", "name": "Summary of account usage insights for past 12 months.", "originalRequest": { "url": { @@ -13999,7 +13999,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5d76cccf-759b-45cf-a3dc-9ca0ec22feb5", + "id": "9c33b440-7bef-45ee-bd47-10839cf7f82f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -14081,7 +14081,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5de22232-29dd-4637-90aa-46832457c417", + "id": "4bb04273-d2bf-44ee-b810-be101ff8f800", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -14163,7 +14163,7 @@ "_postman_previewlanguage": "json" }, { - "id": "12a0650a-bac0-42fa-87ad-e5a7aaa93917", + "id": "cf6badac-9bcd-451f-825f-43db9eaa997d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -14245,7 +14245,7 @@ "_postman_previewlanguage": "json" }, { - "id": "37c6888c-bb62-45f3-9351-a9731a4e37ba", + "id": "bde1cbdd-d832-4ecc-809a-f80ccb5bc2ac", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -14327,7 +14327,7 @@ "_postman_previewlanguage": "json" }, { - "id": "61f3f1f4-e558-4681-8f91-6cd11b39e150", + "id": "e58447f5-8620-40f1-81cd-27a540b9e8f1", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -14421,7 +14421,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": "5b9a3ddf-b84c-4002-aa1e-b1ade0d8ea6b", + "id": "76c6be69-874b-4d59-832b-6791296c28a5", "name": "Accounts List", "request": { "name": "Accounts List", @@ -14505,7 +14505,7 @@ }, "response": [ { - "id": "49c61816-8410-402e-a39d-d0307cbe9f85", + "id": "ce38ab3c-63d0-4ea9-9adb-23181bd677e7", "name": "SlimAccounts", "originalRequest": { "url": { @@ -14603,7 +14603,7 @@ "_postman_previewlanguage": "json" }, { - "id": "273db324-9dfa-4295-be46-0534a43794b0", + "id": "d927a8b1-0131-4ec7-8fbf-07f84cbaedc6", "name": "FullAccounts", "originalRequest": { "url": { @@ -14701,7 +14701,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a48b8170-ba66-473d-a7e7-2ad5acc044d5", + "id": "8a68b8ce-af7b-451b-8e66-f00f8232b30c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -14799,7 +14799,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c86b0f2d-9d40-4222-a344-b2b31c3d0819", + "id": "16154c27-874e-4d73-835e-2edcdab4ab4a", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -14897,7 +14897,7 @@ "_postman_previewlanguage": "json" }, { - "id": "77da68b3-8e31-4f0a-9d49-907d0d8b2f71", + "id": "05ad512d-8d28-4503-bcb4-2e47f1b7effd", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -14995,7 +14995,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9e634ea8-1886-4fd0-b9f5-3b2a0af6ed72", + "id": "5cdd5a96-c380-4787-918b-82c33caebbca", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -15093,7 +15093,7 @@ "_postman_previewlanguage": "json" }, { - "id": "79fde211-e2b0-4a8f-814d-4e612333b8b1", + "id": "aecc034e-d232-493a-acf7-851d32b2fba8", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -15197,7 +15197,7 @@ } }, { - "id": "563fee4c-e1eb-4dbd-a905-e8b037a75472", + "id": "2f90ebce-b174-4d75-a5c7-8043cc06e39c", "name": "Create Account", "request": { "name": "Create Account", @@ -15239,7 +15239,7 @@ }, "response": [ { - "id": "965f8305-d37e-41de-acc0-b94d31633675", + "id": "fce533d9-8235-4833-affa-61eeaf11a0c6", "name": "Async task details", "originalRequest": { "url": { @@ -15295,7 +15295,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cf4f5992-b2f0-41b5-a00f-fafa6eef673d", + "id": "1f0bea8e-f248-479a-af09-e6ede03fa013", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -15351,7 +15351,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9448a42c-b5a1-4e52-92b9-1e6426c5a60f", + "id": "de22abbf-7f94-4a20-a24e-80ac25c56ec4", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -15407,7 +15407,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6ae110c5-326a-4a95-ba78-d09028a6da29", + "id": "e6ff5048-71f8-4c0b-9556-fc338ac1cca7", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -15463,7 +15463,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ce07a833-45fc-4da6-9567-00499966e853", + "id": "d7f01ebe-b8db-41f5-b4b3-7ef29b004e0c", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -15519,7 +15519,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6b245fd5-f771-4685-b944-52f981414006", + "id": "8d65cbb7-6d0e-467b-9cf5-9da7cd2157f2", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -15581,7 +15581,7 @@ } }, { - "id": "dd664e46-5325-4e39-a0ad-f78b2290a521", + "id": "14f1a311-b3cb-434f-b0d7-fd3124c265f0", "name": "Account Details", "request": { "name": "Account Details", @@ -15622,7 +15622,7 @@ }, "response": [ { - "id": "c70279dd-989b-4472-904c-ae74848ac90a", + "id": "45a26aa2-35ef-4d5d-8537-833c5acb887f", "name": "Account object.", "originalRequest": { "url": { @@ -15666,7 +15666,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7a9e9476-e2a5-4c0f-8e2f-7cfd3e82b977", + "id": "b92b0c2e-0b8b-4184-9c57-d5f3c878645e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -15710,7 +15710,7 @@ "_postman_previewlanguage": "json" }, { - "id": "df468b44-4f96-4f5b-b2a5-dce80ae47368", + "id": "ca707009-8422-449d-a883-1316b7431948", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -15754,7 +15754,7 @@ "_postman_previewlanguage": "json" }, { - "id": "70ef2a9e-e0d3-4d16-b63c-ea69522d703a", + "id": "5f6cc8dd-a4ba-4968-a471-05aacec94fa6", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -15798,7 +15798,7 @@ "_postman_previewlanguage": "json" }, { - "id": "08827107-79a5-4820-8b2e-949a2532d6bc", + "id": "d62aa38b-9c2a-4f44-a863-61aafda2ca96", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -15842,7 +15842,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d9b9b56e-f253-4380-a3aa-2b7e1f47d425", + "id": "28eeb430-8172-42ae-9b3c-0d9b13e339d0", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -15886,7 +15886,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1934335a-b69f-4397-b449-4ab533924fae", + "id": "9a35e6c8-1d00-4c29-92f0-d3a886771531", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -15936,12 +15936,12 @@ } }, { - "id": "73d04058-bc93-4dad-b6e6-5a03c83653c1", + "id": "fc9ed1ea-8a74-4bd8-a88d-c57e34e7105e", "name": "Update Account", "request": { "name": "Update Account", "description": { - "content": "This updates account details. A token with ORG_ADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.\nThis endpoint supports updating an account's correlation. The identityId and manuallyCorrelated fields can be modified for any account. The attributes fields can be modified just for flat file accounts. To re-assign an account from one identity to another, replace the current identityId with a new value. If the account you're assigning was provisioned by IdentityNow, it's possible IdentityNow could create a new account for the previous identity as soon as the account is moved. If the account you're assigning is authoritative, this will cause the previous identity to become uncorrelated and could even result in its deletion. All accounts that are reassigned will be set to manuallyCorrelated: true unless otherwise specified", + "content": "Use this API to update account details. A token with ORG_ADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.\nThis API supports updating an account's correlation. You can modify only the `identityId` and `manuallyCorrelated` fields for any flat file account. To reassign an account from one identity to another, replace the current `identityId` with a new value. If the account you're assigning was provisioned by Identity Security Cloud (ISC), it's possible for ISC to create a new account for the previous identity as soon as the account is moved. If the account you're assigning is authoritative, this causes the previous identity to become uncorrelated and can even result in its deletion. All accounts that are reassigned will be set to `manuallyCorrelated: true` unless you specify otherwise.\n>**Note:** The `attributes` field can only be modified for flat file accounts. ", "type": "text/plain" }, "url": { @@ -15990,7 +15990,7 @@ }, "response": [ { - "id": "9f24c9c9-b159-4bbe-9e56-682de79b9d94", + "id": "9382f2ed-da1f-48d7-b38e-815c9159a504", "name": "Accepted. Update request accepted and is in progress.", "originalRequest": { "url": { @@ -16047,7 +16047,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0c003ded-17ec-4223-b275-47b075cc8975", + "id": "93fcac2d-1e6f-4399-a6d0-90f0862e530a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -16104,7 +16104,7 @@ "_postman_previewlanguage": "json" }, { - "id": "24f4159e-f537-4705-94d0-90d4ae61b7b6", + "id": "8d6f52af-da40-4451-9387-31249607f9a1", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -16161,7 +16161,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d8f83c5d-9841-4ba0-9940-db6247a45ee8", + "id": "51fce0de-6024-4df8-a767-ff5de54c41eb", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -16218,7 +16218,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1b7a0d2f-eada-416a-9dcb-5a1656734500", + "id": "93ce9508-ed95-464f-a7bb-0f394605f5ec", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -16275,7 +16275,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cff11e08-e184-4d50-bfe5-65575c82e8d3", + "id": "961485d3-ecef-4f2a-852f-1fd9573ac25c", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -16332,7 +16332,7 @@ "_postman_previewlanguage": "json" }, { - "id": "506e58bf-8c93-465b-9de5-65cd137ed3d9", + "id": "616d2ae9-f198-4d08-bbb1-f4d64dfec23c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -16395,7 +16395,7 @@ } }, { - "id": "23d185d8-78b0-4008-b020-16aba1e63d6c", + "id": "4e935fda-343e-453a-bc51-316fa7de5248", "name": "Update Account", "request": { "name": "Update Account", @@ -16449,7 +16449,7 @@ }, "response": [ { - "id": "8b817a67-3a65-468a-8855-084a9ea8f7b0", + "id": "3248ce57-bc0a-4286-b8d4-f7009fe5d1de", "name": "Async task details.", "originalRequest": { "url": { @@ -16506,7 +16506,7 @@ "_postman_previewlanguage": "json" }, { - "id": "21cb0520-e318-4ca2-9b03-668eac5a0beb", + "id": "6d3551bc-0d3a-4062-9308-739ec322ab4a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -16563,7 +16563,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f8057eae-2e4f-42a2-9f66-f4739042b086", + "id": "ebe882a8-f58c-4ea0-a7ef-08d7bb0b1861", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -16620,7 +16620,7 @@ "_postman_previewlanguage": "json" }, { - "id": "db20b2a1-bae0-4dc8-9793-282886eae549", + "id": "54245c72-f143-4cfb-84ad-d80f391cc26d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -16677,7 +16677,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d689cbdb-d7d4-4b81-b054-a9fa5b91a637", + "id": "9d9fd8c8-10e0-4391-9cb0-601e49db3412", "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": "d725e539-4b20-4cef-b66d-72d78b0feb91", + "id": "91c121ed-24e7-4a8a-b94e-ed3afa0185ea", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -16791,7 +16791,7 @@ "_postman_previewlanguage": "json" }, { - "id": "40c73a46-afeb-4f6f-b66e-63d9a4f9e8a4", + "id": "afd47f41-d7f1-402f-874a-d8dbac1f2830", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -16854,7 +16854,7 @@ } }, { - "id": "8e0ef5c2-d4fc-4ee8-9059-5412ec2af244", + "id": "493ef6a1-3cc3-4c59-9742-3d8c9fa10990", "name": "Delete Account", "request": { "name": "Delete Account", @@ -16895,7 +16895,7 @@ }, "response": [ { - "id": "19db33f3-ea6b-4293-a17f-90b4a8858f88", + "id": "79765841-25b7-4dc2-be13-cf1f0a34271a", "name": "Async task details.", "originalRequest": { "url": { @@ -16939,7 +16939,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5bc2b825-e7a4-4152-b062-f6aa2f82565c", + "id": "076b7924-069d-4a1c-8f9b-741edc9df5a5", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -16983,7 +16983,7 @@ "_postman_previewlanguage": "json" }, { - "id": "68418d72-7b1e-4365-a20d-37a3fc1c8a6d", + "id": "0237f689-e48b-4c70-a4c9-df5fdce4488e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -17027,7 +17027,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a7519eab-243f-412c-969c-d93ba5975582", + "id": "c45fbca5-413e-434c-a54c-f6248f369724", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -17071,7 +17071,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2f9cd40b-b274-46f3-8cdd-1462fa47fd9b", + "id": "aa62c8d3-9616-4fea-963e-41d9ca47f85e", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -17115,7 +17115,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e18ee210-35ad-436c-9752-d398996fe9a4", + "id": "a7dec108-1c73-4811-a12e-5e202516cad5", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -17159,7 +17159,7 @@ "_postman_previewlanguage": "json" }, { - "id": "62cd04fe-0478-413f-8470-f51ec0e4ef21", + "id": "e80513e6-f083-4343-abe4-9ec501768e8f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -17209,7 +17209,7 @@ } }, { - "id": "c401a455-1c19-45af-a3ef-d18ca77f6a99", + "id": "e8c3b622-8d33-49a5-97e3-87829d51fcdc", "name": "Account Entitlements", "request": { "name": "Account Entitlements", @@ -17279,7 +17279,7 @@ }, "response": [ { - "id": "edd94f45-4bb6-4b8b-b37e-22163e2e20b3", + "id": "daa03552-828c-4317-b1d8-fe5c1e988683", "name": "An array of account entitlements", "originalRequest": { "url": { @@ -17352,7 +17352,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e25cab98-b083-4cd2-b16f-7db6383a6418", + "id": "a8af48ab-3dc3-44ba-8cc2-0916950ff26d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -17425,7 +17425,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b9d57edb-dca7-46eb-813a-a99ae866a3f5", + "id": "1f4a5cc7-28ec-40ef-ad8c-e60cbe1242ac", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -17498,7 +17498,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2b0ae602-8d22-421e-8071-5a1601108f67", + "id": "6e5d4399-33b0-4375-b14b-94cecdca467d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -17571,7 +17571,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4ee79c37-a9c0-49bb-b997-7ea005d224b6", + "id": "ddbe33a4-31de-457b-87ab-94cfe85f788d", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -17644,7 +17644,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e3463797-d866-42ba-ac65-130c13da9caf", + "id": "8c3c40ce-b4ad-4ce9-9be3-77e866f6141d", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -17717,7 +17717,7 @@ "_postman_previewlanguage": "json" }, { - "id": "74c365dc-5738-4a3d-b7f6-ff00f1efe1b3", + "id": "e34746e8-baef-4d86-b565-eea2d51e6d88", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -17796,7 +17796,7 @@ } }, { - "id": "baaf63f1-ac6a-49b2-8329-9c62e5c3ce0f", + "id": "a921999d-906c-4211-95f8-33450721d8ff", "name": "Reload Account", "request": { "name": "Reload Account", @@ -17838,7 +17838,7 @@ }, "response": [ { - "id": "fa52c4ec-c51b-4bca-8cb4-cbcd52da5d10", + "id": "c3de3946-9bea-4204-9b36-a4bbe2300f05", "name": "Async task details", "originalRequest": { "url": { @@ -17883,7 +17883,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e8366b77-b8eb-4530-9e79-1c5f4347c799", + "id": "f854fd05-7029-4609-9b33-7091d10c770f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -17928,7 +17928,7 @@ "_postman_previewlanguage": "json" }, { - "id": "36f6d27a-d4ec-4391-8ed3-2bcd48981bc1", + "id": "e66cdca0-cf0f-4ef8-8657-4c95766d7fb7", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -17973,7 +17973,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f65bae12-55dd-47e1-beed-283989d7e28a", + "id": "5d189e15-6a41-4c79-bd70-afb5299c2434", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -18018,7 +18018,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b6fbc2e1-e82b-4c4e-9a45-c08a611b9511", + "id": "59accd59-1653-4706-856c-c04f834ab766", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -18063,7 +18063,7 @@ "_postman_previewlanguage": "json" }, { - "id": "86e0fdc4-5c8e-4087-a721-d2295fb978f0", + "id": "ace136c3-8b72-4803-986f-9c26ba225940", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -18108,7 +18108,7 @@ "_postman_previewlanguage": "json" }, { - "id": "34363a70-1f2f-472d-9271-b2c6dfd42f2e", + "id": "d0fa5285-2fb2-4a4b-9aa9-d0adf022fe03", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -18159,7 +18159,7 @@ } }, { - "id": "6dcc0712-73d9-4f0d-bd11-a8ed0107c2f1", + "id": "61d08cf5-9f55-40d1-a240-821203344947", "name": "Enable Account", "request": { "name": "Enable Account", @@ -18214,7 +18214,7 @@ }, "response": [ { - "id": "14959273-591c-4e15-8b80-2537acbbd9d6", + "id": "8587d6a9-6e68-433f-a638-ec2ceaa9a33b", "name": "Async task details", "originalRequest": { "url": { @@ -18272,7 +18272,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f231709e-da7f-4298-90bf-ae7655c53266", + "id": "67b231e2-95ec-4db6-91f1-ce06c76e4757", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -18330,7 +18330,7 @@ "_postman_previewlanguage": "json" }, { - "id": "19b4d52a-f117-4624-880f-d426b88e7bdc", + "id": "c086d0d7-457c-45bb-af48-7c551c5a495d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -18388,7 +18388,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ab66f7cb-91f2-475b-9780-7eae421f5728", + "id": "22a2766c-89fe-4f42-b271-f78ef9e1951e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -18446,7 +18446,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ba0d49f2-8015-490e-973e-d82fa59c5692", + "id": "effe7ec9-bf1f-4cb9-a6ed-6392745aeff4", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -18504,7 +18504,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e33b4892-3c74-4018-8ea7-e2174f4b28f0", + "id": "2ece4df3-e405-458d-9e09-f29a1958d173", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -18562,7 +18562,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7eb8f4d9-f494-46f2-8390-70c972c7786e", + "id": "860009ca-c2bf-445c-bb4a-5d944c16d7ec", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -18626,7 +18626,7 @@ } }, { - "id": "b64e67e5-81fe-4639-955c-35b63a786b3d", + "id": "072b7ef3-d923-4b93-bb74-d1ee139293b2", "name": "Disable Account", "request": { "name": "Disable Account", @@ -18681,7 +18681,7 @@ }, "response": [ { - "id": "59e207e3-0560-4339-ae05-1d01b7116636", + "id": "c9638e4c-f2ef-4344-8b5e-3e67b88908cd", "name": "Async task details", "originalRequest": { "url": { @@ -18739,7 +18739,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e3dfdcfa-096e-4f37-8d4f-4d93201dce27", + "id": "8144ecb3-00e8-4464-81b3-7f5906d16019", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -18797,7 +18797,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cbd04969-49e8-4bb4-ba48-e48d636de294", + "id": "31a2b982-03a2-4484-94b4-814cb5dad01a", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -18855,7 +18855,7 @@ "_postman_previewlanguage": "json" }, { - "id": "22013ca7-f380-41a2-882f-64cf6818e18b", + "id": "c92fccb4-f45c-4106-bac0-0d9887a1c04c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -18913,7 +18913,7 @@ "_postman_previewlanguage": "json" }, { - "id": "358f881d-d20d-4c48-8ca8-9db13fd74962", + "id": "9569ffa8-e25e-4b81-95f2-d5ed1bff1913", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -18971,7 +18971,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4137bc59-8173-4e8b-9828-b192d58d3841", + "id": "739e8325-777a-47a2-b78f-3977c881f02b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -19029,7 +19029,7 @@ "_postman_previewlanguage": "json" }, { - "id": "57c2b780-b756-46f4-9070-846329c65baf", + "id": "507c3957-91b1-4577-b963-a399be0781b5", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -19093,7 +19093,7 @@ } }, { - "id": "ac43d05b-826d-494b-87f4-a795c20b61f6", + "id": "fa872318-aeda-475b-8b19-8e7953958a85", "name": "Unlock Account", "request": { "name": "Unlock Account", @@ -19148,7 +19148,7 @@ }, "response": [ { - "id": "ec069fa3-eaa3-45e5-ab02-44c2d7a33a4c", + "id": "69dac908-90e9-4d36-89d1-50c4bf11b1e9", "name": "Async task details", "originalRequest": { "url": { @@ -19206,7 +19206,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bd060ef4-b050-4ef6-a0bc-0e836d0f6e0e", + "id": "ac1faff6-7b59-4c1e-a8e2-57ece5a97d1d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -19264,7 +19264,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f4ae96ec-5e5f-46e9-93da-cb83f54d4a82", + "id": "a5db12ba-c275-4eee-9cce-46cd4180e46f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -19322,7 +19322,7 @@ "_postman_previewlanguage": "json" }, { - "id": "464189a7-0211-4684-b437-a8a703d3430e", + "id": "7378a29e-7f93-4f0c-8d67-b292cea9c939", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -19380,7 +19380,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e92026c4-72df-4e0b-a9fe-a3e6fee775bc", + "id": "68dab1c5-439b-4565-a3dd-127830a1ece2", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -19438,7 +19438,7 @@ "_postman_previewlanguage": "json" }, { - "id": "beae3b47-f70f-45d3-a141-75615759674f", + "id": "de45e17a-6f45-4d7a-bcf8-a34a2d832b2f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -19496,7 +19496,7 @@ "_postman_previewlanguage": "json" }, { - "id": "20823ecb-f200-4323-af0d-a51fe0573782", + "id": "dc8afe98-acc7-4e58-8d1f-08591fec0e97", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -19560,7 +19560,7 @@ } }, { - "id": "0cd1b679-1a90-4c3f-8bd9-71b74b6416e9", + "id": "6c105a90-fa36-4f32-842e-4ed815c20bda", "name": "Remove Account", "request": { "name": "Remove Account", @@ -19602,7 +19602,7 @@ }, "response": [ { - "id": "a6788fa1-c7fc-4cdc-985e-3362eb2d44e3", + "id": "5152b57e-d442-4aad-a321-882d6a9fe0b0", "name": "Accepted. Returns task result details of removal request.", "originalRequest": { "url": { @@ -19647,7 +19647,7 @@ "_postman_previewlanguage": "json" }, { - "id": "785f17fb-ac44-40be-8a28-b3f92d2fb725", + "id": "5096e694-92ab-49eb-b498-4d992e0d6f62", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -19692,7 +19692,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3827f306-58a8-4214-af5e-f6679e62a3e5", + "id": "14ed54cb-70df-438c-b012-281736245773", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -19737,7 +19737,7 @@ "_postman_previewlanguage": "json" }, { - "id": "97fc70a5-f3a8-4315-bb99-4cfd47d94a30", + "id": "6cd67f6f-f0e8-4404-ab57-57c80d07ede0", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -19782,7 +19782,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8690369b-c099-484f-9b34-21afee855fe6", + "id": "abc7d304-f912-40f1-b8d0-674a92384158", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -19827,7 +19827,7 @@ "_postman_previewlanguage": "json" }, { - "id": "05b79464-511f-4430-88f8-e35d1f6e74d9", + "id": "08b225c1-2a2d-410b-ae48-42f79d89c3d7", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -19878,7 +19878,7 @@ } }, { - "id": "ffb7f276-384b-4fa2-a6c9-41fcdb701ec5", + "id": "e69557ee-c4ee-4047-8043-13c08f5d5f79", "name": "Enable IDN Account for Identity", "request": { "name": "Enable IDN Account for Identity", @@ -19920,7 +19920,7 @@ }, "response": [ { - "id": "6129e731-d77f-4a1e-8bda-2e0bf6abe212", + "id": "f52d55b5-de90-42c4-8249-7bcc9083bf26", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -19965,7 +19965,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a7af8f5f-1447-476d-bd85-7c75b4f6e7ad", + "id": "f30e2a7c-ada8-4846-9e6d-142f871c01da", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -20010,7 +20010,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9ab1ce7c-b4f8-423a-86a9-e1b8dc1e08bf", + "id": "0f560f00-f5f5-45f3-8691-6a9ec84d14c4", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -20055,7 +20055,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eac2741e-78a1-47d2-a063-4cd5f5a17758", + "id": "bb82dd17-a29b-4c06-b10e-038c286b5c45", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -20100,7 +20100,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5db9e98d-9613-4d69-967d-cef2c3c48b35", + "id": "c3818477-0f71-4632-be32-24da90332dbb", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -20145,7 +20145,7 @@ "_postman_previewlanguage": "json" }, { - "id": "934f674f-1122-432a-8ad2-228d484e02dc", + "id": "ce066d86-d1dd-4886-8353-e7418c85a2e7", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -20190,7 +20190,7 @@ "_postman_previewlanguage": "json" }, { - "id": "19ccd198-9aff-4cd4-a0f1-4a4d5565ec24", + "id": "6110c823-e968-467d-b426-a801693db361", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -20241,7 +20241,7 @@ } }, { - "id": "952ca9a9-6330-4dc9-b243-9bf82204ce11", + "id": "d6eb9199-6669-4ecf-88ee-0b9511d61355", "name": "Disable IDN Account for Identity", "request": { "name": "Disable IDN Account for Identity", @@ -20283,7 +20283,7 @@ }, "response": [ { - "id": "abc53ec6-54c7-4201-a051-075ac28b0558", + "id": "d91ff252-4f92-494b-bdee-512f6679db7c", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -20328,7 +20328,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0fe188fc-36d9-4cea-8442-3d8e76af0f26", + "id": "ba52fda0-479d-4281-928d-525abc25dfcb", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -20373,7 +20373,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cb0d69cd-de56-475f-ad65-775a53e059dd", + "id": "29f63d5c-41f6-48ca-bb82-91ea0209ba7c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -20418,7 +20418,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ab4e3594-1555-4992-80a0-507007a4d5a9", + "id": "77bf8faa-d37f-4b57-b9c6-240fa1ca7180", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -20463,7 +20463,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e24bcac6-af28-4617-a643-8e35fab71571", + "id": "c4af0a3a-9abe-479b-9712-898e68bb6f0e", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -20508,7 +20508,7 @@ "_postman_previewlanguage": "json" }, { - "id": "724b175c-1337-4a8f-963b-18953afb2319", + "id": "e1eda234-c43b-40bb-af08-dab2e2ddb619", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -20553,7 +20553,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8c703727-9085-4003-a6f2-b2d7d5e64f50", + "id": "648319bf-20d6-4694-b03a-9f531557a956", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -20604,7 +20604,7 @@ } }, { - "id": "06c69ee0-69dd-4e7c-be36-eec40fe0e236", + "id": "3e449dc0-9fc4-495f-9b33-77bc043905f1", "name": "Enable IDN Accounts for Identities", "request": { "name": "Enable IDN Accounts for Identities", @@ -20647,7 +20647,7 @@ }, "response": [ { - "id": "bb7b66fe-e8a8-47b2-ad7f-82879e6f081b", + "id": "ea7fc232-e4d6-4cdb-b78a-f0d076a876ae", "name": "Bulk response details.", "originalRequest": { "url": { @@ -20704,7 +20704,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b1e40e83-abdb-4c9b-9ad7-60d613bd6127", + "id": "1cbd03ad-5810-4390-8e2e-f64e261d6f23", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -20761,7 +20761,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0ca95f39-6301-4762-b587-971d00f74be9", + "id": "546fd7a2-71b4-409d-8e4a-2eb7ced283a4", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -20818,7 +20818,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b444ad36-afc2-4fae-ae07-09c3e098712c", + "id": "2b8cad48-2acc-482f-976e-c499ff94ed13", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -20875,7 +20875,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7cfec552-0498-4f97-9272-87ad46f7c01b", + "id": "484176d2-c45f-4b60-8646-4ef8e07840d6", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -20932,7 +20932,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a0d10426-991b-4d57-96e6-6e9435ab04ea", + "id": "8b981bb9-8db8-4bcf-bcfc-e509c6258894", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -20995,7 +20995,7 @@ } }, { - "id": "3cd6e71c-bb84-4b22-a26e-93da530b163d", + "id": "7867c15c-7c07-4349-a5ff-08bbbd4693fd", "name": "Disable IDN Accounts for Identities", "request": { "name": "Disable IDN Accounts for Identities", @@ -21038,7 +21038,7 @@ }, "response": [ { - "id": "c1073b4e-ff7e-4d14-9436-03b87c3b8702", + "id": "f542ce97-283d-40b9-ae04-f1025a92391d", "name": "Bulk response details.", "originalRequest": { "url": { @@ -21095,7 +21095,7 @@ "_postman_previewlanguage": "json" }, { - "id": "36396110-8270-41cf-9904-4fc43ffd868a", + "id": "067cb847-232c-492e-9397-211af5bed61a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -21152,7 +21152,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9f2f26f7-948a-4eca-b934-ecd27b556cea", + "id": "a97ccba7-168d-4bab-9781-7597e82c9ee0", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -21209,7 +21209,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c342079c-763b-485f-8488-511658c0af92", + "id": "4000f788-e2ef-402e-a81e-8d43e85987a0", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -21266,7 +21266,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d735a9f8-3e77-4357-8348-713fb9742194", + "id": "64559756-8b4a-4375-967e-c454581785df", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -21323,7 +21323,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9505d814-03b6-4d10-9042-27bc0fc40d5c", + "id": "9ea6f4d5-dca5-44fa-9995-b24dbff85e7e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -21392,7 +21392,7 @@ "description": "Use this API to discover applications within your Okta connector and receive connector recommendations by manually uploading application names.\n", "item": [ { - "id": "817a9c6c-ea39-425d-b787-c4e8c15755ef", + "id": "8aaf57cd-6428-4909-bc81-c93121bea79f", "name": "CSV template download for discovery", "request": { "name": "CSV template download for discovery", @@ -21421,7 +21421,7 @@ }, "response": [ { - "id": "4ee78213-5b3d-458f-b9a8-56baf6500f9b", + "id": "b6d941e8-9fbf-4187-8860-752307409f6a", "name": "A CSV file download was successful.", "originalRequest": { "url": { @@ -21464,7 +21464,7 @@ "_postman_previewlanguage": "text" }, { - "id": "dd1bf955-23e5-4202-9b50-eaed7f5530e1", + "id": "9ff09a04-c100-4787-98dc-6a33efb2f19a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -21507,7 +21507,7 @@ "_postman_previewlanguage": "json" }, { - "id": "25259cca-cf0f-4981-bcbd-9a31469ba3bc", + "id": "f223cf1e-5a84-4da5-9535-7019c5437cdf", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -21550,7 +21550,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8bf41a7b-8a1a-4151-9c2e-f7cd33ae25fb", + "id": "44fe897c-840e-4a0b-8360-cfd6defd1ca2", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -21593,7 +21593,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4880e154-fac1-4a6e-8271-bb591ee9a67b", + "id": "cf1e771c-0e5b-4882-a1f3-afa116bbe679", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -21636,7 +21636,7 @@ "_postman_previewlanguage": "json" }, { - "id": "39004459-6ab2-4881-89db-6f17ab8edf8e", + "id": "cf828291-528f-4a92-958a-f9ff0eab081a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -21685,7 +21685,7 @@ } }, { - "id": "d6fd02ac-663f-41e2-bf5b-5de7d64fa9b0", + "id": "71e9de78-c5b8-484d-8d93-22ac0ca7175d", "name": "CSV Upload to discover applications", "request": { "name": "CSV Upload to discover applications", @@ -21731,7 +21731,7 @@ }, "response": [ { - "id": "810a70c8-69e9-4679-b220-c22d22179fe1", + "id": "2d05ef07-14d3-4c5c-b8a0-242078acfc44", "name": "The CSV has been successfully processed.", "originalRequest": { "url": { @@ -21781,7 +21781,7 @@ "_postman_previewlanguage": "text" }, { - "id": "e4dcc3a0-0696-424a-9052-2b1e89de25f6", + "id": "e57f5822-f2c9-4688-bffd-7333e1ae30b1", "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": { @@ -21841,7 +21841,7 @@ "_postman_previewlanguage": "json" }, { - "id": "22944f2b-2225-47f8-b427-856f12db7579", + "id": "ba3a4410-c632-497a-914d-05ee74ca888c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -21901,7 +21901,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ab315847-f08e-4b46-b2f4-c3fdcebc898d", + "id": "07a91644-b31d-4f85-8906-cf76a5fdd40c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -21961,7 +21961,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ed1eb373-38c0-4625-9025-cb6f2f9efba8", + "id": "4bb16e52-847c-492e-b7f0-8e73bd67acbb", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -22021,7 +22021,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5ba785d8-3464-4296-b397-3c47039b8b96", + "id": "b8e19e4b-5a1f-476c-bbab-fd207510e3e0", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -22087,7 +22087,7 @@ } }, { - "id": "660bba09-edc7-4d28-a8d9-3a5e77541d76", + "id": "66e14b6d-4fe5-4370-92e4-6da2e36b945b", "name": "Retrieve discovered applications for tenant", "request": { "name": "Retrieve discovered applications for tenant", @@ -22153,7 +22153,7 @@ }, "response": [ { - "id": "95829be9-da31-4b5b-94f0-568f98aca264", + "id": "68b3b6e8-2411-49bd-a48f-e57955826d10", "name": "Successfully retrieved list of discovered applications.", "originalRequest": { "url": { @@ -22233,7 +22233,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e647648c-f08d-4d12-bee4-cdf33b78b63c", + "id": "05536550-a8ff-45dd-90c9-ff4eb2f0ad99", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -22313,7 +22313,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b9840156-f93e-490f-987b-5d8f213ee3fe", + "id": "8c6deeae-9e09-4169-b8be-aa7caf74d396", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -22393,7 +22393,7 @@ "_postman_previewlanguage": "json" }, { - "id": "21699199-a573-48b1-a1f5-f8c810aa20cb", + "id": "dc0972f1-62da-4047-a02e-75c05e728b5e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -22473,7 +22473,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c0698fcd-8368-410b-b076-7a96d4770ca0", + "id": "923f379f-1bdf-4193-8a6c-0f9cb62a6f64", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -22553,7 +22553,7 @@ "_postman_previewlanguage": "json" }, { - "id": "74feb849-bf59-4b71-83e5-fd52b3df68a5", + "id": "5f4eed27-7a88-478c-89d8-5c9082ba1ee5", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -22639,7 +22639,7 @@ } }, { - "id": "73783740-eec6-43e7-8d43-cb5e64226c1c", + "id": "67778d12-73a5-4c00-9c99-ae880ad41349", "name": "List vendor connector mappings", "request": { "name": "List vendor connector mappings", @@ -22668,7 +22668,7 @@ }, "response": [ { - "id": "371093b6-8e18-4123-87ba-0f88934a674d", + "id": "c24daec5-bad4-483f-8faf-f1754c8b6522", "name": "Successfully retrieved list.", "originalRequest": { "url": { @@ -22711,7 +22711,7 @@ "_postman_previewlanguage": "json" }, { - "id": "38ede0d1-8ef5-4f9f-a845-474fef8cdfd9", + "id": "28dc9ba5-6c1c-4476-8b66-e5e73bbda08d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -22754,7 +22754,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5464ffe3-8021-41d4-ad28-7034988a6d1b", + "id": "f52356de-fa40-4e80-b2ee-751e58d76fa7", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -22797,7 +22797,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8c4f0b7e-ca97-45a7-906d-6f759c001c7a", + "id": "9426af42-e94f-4457-ae6d-80af44440500", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -22840,7 +22840,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2aa2e5d6-f0d9-46f1-ab74-3454c8a3caf2", + "id": "d6825b5e-36a9-40e7-8a9d-a545a38692bc", "name": "Method Not Allowed - indicates that the server knows the request method, but the target resource doesn't support this method.", "originalRequest": { "url": { @@ -22883,7 +22883,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b04cc7d2-75ad-4511-b4b4-6b0a36f07ce2", + "id": "5b66ff33-49f5-4f03-b415-f8b84f106f96", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -22926,7 +22926,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ccb74804-348d-4d8d-b558-0c09823408bb", + "id": "43a40d63-6b8a-4386-b8f0-442f8e69ce45", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -22981,7 +22981,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": "2a6bcdf4-bab1-4b67-89c7-703c78d1ed7b", + "id": "aac8798d-9033-4cb5-9409-9734552823e3", "name": "Get list of Auth Profiles.", "request": { "name": "Get list of Auth Profiles.", @@ -23010,7 +23010,7 @@ }, "response": [ { - "id": "98d890b9-2577-49ba-bdc4-e12c90b30fe3", + "id": "9d3e76ca-21ae-4106-aabd-c82d974e230c", "name": "List of Auth Profiles", "originalRequest": { "url": { @@ -23053,7 +23053,7 @@ "_postman_previewlanguage": "json" }, { - "id": "66728abe-3dd1-4006-9226-af9202c7be3d", + "id": "ec6d086c-7273-4f9d-afda-5eddea8f994f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -23096,7 +23096,7 @@ "_postman_previewlanguage": "json" }, { - "id": "72fd2af7-3471-4757-a159-e1b09a2d21b6", + "id": "efc2df61-dd43-418a-8c9f-8bfc4e1d3ff3", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -23139,7 +23139,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f2cb6127-6763-4616-b94c-2dc908e46ce5", + "id": "1a1ecd25-9d07-4321-bf82-895931e2e0ca", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -23182,7 +23182,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5a062de7-444c-4780-bcdb-1d820e5588bc", + "id": "9b6f8a97-77ff-4753-9a1a-648e7496464a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -23225,7 +23225,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3e8be318-b268-4d7f-8e1a-68d464df0db3", + "id": "d8c7108c-9085-4e24-9a8b-dc0e885d3d3e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -23274,7 +23274,7 @@ } }, { - "id": "49b91b56-52da-405e-9581-1fd698a781cd", + "id": "e77e0bae-a9e7-49ea-b275-c565cc1a5099", "name": "Get Auth Profile.", "request": { "name": "Get Auth Profile.", @@ -23309,7 +23309,7 @@ }, "response": [ { - "id": "e6e99a6a-93e0-477f-be7d-2a3b1beabba0", + "id": "e62cf0c7-5b13-4da6-8ca0-fcc78164e52f", "name": "Auth Profile", "originalRequest": { "url": { @@ -23353,7 +23353,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e18793f7-4b53-449c-9ca5-d8ef4ae17368", + "id": "a2fe6897-156f-44ca-9329-2b02924b83d8", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -23397,7 +23397,7 @@ "_postman_previewlanguage": "json" }, { - "id": "810f6080-4ee2-4d8a-aaf3-0be262d10871", + "id": "1870fa5a-c4af-42d7-acf6-f25831e011fe", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -23441,7 +23441,7 @@ "_postman_previewlanguage": "json" }, { - "id": "026604bf-2e02-479f-950c-490a528a0af8", + "id": "82184306-93be-4d44-b42e-34f08795ef16", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -23485,7 +23485,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ea2b0e13-45ea-42e4-8c69-eab887661602", + "id": "8333a76b-7cf4-4fb2-b190-9b1b3a8bf288", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -23529,7 +23529,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2af01ab7-fcc0-40f7-803c-27419a74eda0", + "id": "5223ee6d-31fe-4aec-86f0-d22bbf4ef00d", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -23573,7 +23573,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c5bf6de9-afa8-495e-9c0f-317702350455", + "id": "aa8b491a-c09f-4dfd-96b0-c158e9458828", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -23623,7 +23623,7 @@ } }, { - "id": "b583c6ca-d11d-4fcf-aba9-2a69dc3d5ac4", + "id": "cbd0e60d-3617-45bb-88e7-4c3b5bf98d36", "name": "Patch a specified Auth Profile", "request": { "name": "Patch a specified Auth Profile", @@ -23677,7 +23677,7 @@ }, "response": [ { - "id": "15059998-17d4-48d7-a837-0f8d08e59b58", + "id": "1b671ce2-b61c-4319-9286-a679a2d390e4", "name": "Responds with the Auth Profile as updated.", "originalRequest": { "url": { @@ -23734,7 +23734,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c5346ec5-2bf8-4a75-b3bc-2c5007644aa8", + "id": "5c889619-21f7-4c90-b615-cc9506d9e76a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -23791,7 +23791,7 @@ "_postman_previewlanguage": "json" }, { - "id": "00774639-68fd-4aac-bd83-82a2e7f35a00", + "id": "7cfe7f3e-9a54-4754-b43b-92544d0fd5dc", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -23848,7 +23848,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8daf3da8-502f-47a6-9a77-c95e7e0cb01f", + "id": "878294ef-c8a7-4c5e-b483-403aeccd0290", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -23905,7 +23905,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3bf1e531-9faf-43b6-bc2d-05e03a9b6bd8", + "id": "0b90394c-0fec-4939-b6af-23a0b0591d7b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -23962,7 +23962,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b1b481ec-5ea9-486c-afe3-6ef408b38188", + "id": "f17111b6-8a95-4439-891d-c4b8b3ebf40f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -24031,7 +24031,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": "81ab560f-535c-44d3-8cf4-d35b1eff0796", + "id": "5175e176-de54-480d-b474-a81bd577d27b", "name": "List Campaigns", "request": { "name": "List Campaigns", @@ -24115,7 +24115,7 @@ }, "response": [ { - "id": "5b2d514f-14a1-4924-8a03-5f8edd9c8f8e", + "id": "ed0e3db7-a251-45de-87c8-18e3f85f4298", "name": "Slim Campaign", "originalRequest": { "url": { @@ -24213,7 +24213,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ba7d68c3-6d6b-422b-a821-8a15f151ff77", + "id": "3d9429c2-4b59-4bb8-86eb-67651eb398bc", "name": "Full Campaign", "originalRequest": { "url": { @@ -24311,7 +24311,7 @@ "_postman_previewlanguage": "json" }, { - "id": "afbd961f-00bf-4cd9-bdbf-495d4ed28577", + "id": "54e8dd40-5f0f-4b0d-ae76-94dc4059c20b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -24409,7 +24409,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d944b672-8788-4479-9ee8-d08ae517d2e2", + "id": "608a3092-86c2-4302-8d8d-54cf43012385", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -24507,7 +24507,7 @@ "_postman_previewlanguage": "json" }, { - "id": "af670033-b6b7-4a1b-8464-f9dcade05ec7", + "id": "65b91514-8b2b-433c-a796-8f4c571e056c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -24605,7 +24605,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d5df34fb-c5c3-4f5f-ab7d-54d78da36f10", + "id": "6a50a022-de2a-41da-916b-cc4f012df6f4", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -24703,7 +24703,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bcbfdde1-272b-48f0-b769-239e98b623e4", + "id": "f13ea817-ce65-40cf-b28a-8b6dfddc09a3", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -24807,7 +24807,7 @@ } }, { - "id": "bda92861-1b25-41bc-9c3f-6418d70b2ac7", + "id": "6862f415-6b44-46dc-8aac-223349911a26", "name": "Create Campaign", "request": { "name": "Create Campaign", @@ -24849,7 +24849,7 @@ }, "response": [ { - "id": "a8ae5ce8-5411-4623-8fef-76a347d0cc90", + "id": "eabb77d1-d527-4243-aa31-7d6f3646c2f7", "name": "Manager", "originalRequest": { "url": { @@ -24905,7 +24905,7 @@ "_postman_previewlanguage": "json" }, { - "id": "58d9bd92-16a4-4bc7-9b55-a6278bf10dd9", + "id": "15ea001c-a1bb-42f1-b73c-85403d9555cb", "name": "Search", "originalRequest": { "url": { @@ -24961,7 +24961,7 @@ "_postman_previewlanguage": "json" }, { - "id": "836c8136-0659-48a0-88fe-18e4012c5e92", + "id": "62f58899-b4fa-4d9c-9338-4aecf7d7bf0a", "name": "Source Owner", "originalRequest": { "url": { @@ -25017,7 +25017,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5b4d4647-77ad-424f-b8c6-cf6d62c0401c", + "id": "5a5d0e1f-4686-447e-8a37-b81a720b6ab0", "name": "Role Composition", "originalRequest": { "url": { @@ -25073,7 +25073,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dfcef368-da3b-4fe4-a933-a29bfcbe7cdf", + "id": "0b8d4c4c-03b7-4028-a940-23c6ac489c3b", "name": "Manager", "originalRequest": { "url": { @@ -25129,7 +25129,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e444cd44-b878-42e3-9b42-274ceef6e232", + "id": "95f4bdea-4eb5-4379-b6aa-ff60738f9cd7", "name": "Search", "originalRequest": { "url": { @@ -25185,7 +25185,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dc37f9a4-95e9-4ac6-b2cc-f972faa0bd18", + "id": "1399044b-290a-4fdd-9f34-f6e0be7cd673", "name": "Source Owner", "originalRequest": { "url": { @@ -25241,7 +25241,7 @@ "_postman_previewlanguage": "json" }, { - "id": "51ce6a8d-ec42-4684-b6f2-421a3c3158fc", + "id": "092d9490-b0d4-4304-918b-0b9c0621e44a", "name": "Role Composition", "originalRequest": { "url": { @@ -25297,7 +25297,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b2032af3-beed-4c7d-92fc-e67cf7fff988", + "id": "85abca38-801f-4d7d-9b82-06f40d9b045e", "name": "Manager", "originalRequest": { "url": { @@ -25353,7 +25353,7 @@ "_postman_previewlanguage": "json" }, { - "id": "abe62eb8-2aa1-4e1c-b6b2-1942d87609d4", + "id": "88dfc159-241f-42e4-825d-cf84d4ed9a78", "name": "Search", "originalRequest": { "url": { @@ -25409,7 +25409,7 @@ "_postman_previewlanguage": "json" }, { - "id": "83d1ba24-1e1f-4cfc-a47c-40c4ef0bfe80", + "id": "a5b228e9-18a6-4ea9-b790-004411998a52", "name": "Source Owner", "originalRequest": { "url": { @@ -25465,7 +25465,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4dfdc847-2f32-4dbe-878c-0e965927205c", + "id": "0fb12a56-5ed3-494b-91b0-a56fd2d15af9", "name": "Role Composition", "originalRequest": { "url": { @@ -25521,7 +25521,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cbdeeb4b-59e7-492b-9ecb-e0a32ccee87f", + "id": "af1603ad-4fe3-4a6c-99f8-ce0704285280", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -25577,7 +25577,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6e4e6b75-85bd-4d28-a507-8d741eba5e34", + "id": "2a8d97c1-ff07-419d-a106-127edc5ef56a", "name": "Search", "originalRequest": { "url": { @@ -25633,7 +25633,7 @@ "_postman_previewlanguage": "json" }, { - "id": "baadc1ea-6371-45b2-800c-49dccfed1f2f", + "id": "a0037e6f-3eaf-4121-ad84-2ed12fa0d10c", "name": "Source Owner", "originalRequest": { "url": { @@ -25689,7 +25689,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6f1a7bd6-9528-4ade-b3bc-9bc2df6a7757", + "id": "bf5d016b-4cc4-4578-a8b7-ed2bd1f29fc5", "name": "Role Composition", "originalRequest": { "url": { @@ -25745,7 +25745,7 @@ "_postman_previewlanguage": "json" }, { - "id": "38115b49-3607-4791-a647-0202104c3a94", + "id": "712e6a63-ffbe-4177-b6b5-18c7254fe00a", "name": "Manager", "originalRequest": { "url": { @@ -25801,7 +25801,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c8a154cb-e232-4db7-80a2-078c63a5d77c", + "id": "be702169-3e38-422e-af73-23a9b4f6bb5d", "name": "Search", "originalRequest": { "url": { @@ -25857,7 +25857,7 @@ "_postman_previewlanguage": "json" }, { - "id": "48d173ea-688b-4679-b05e-f8e6069a2a53", + "id": "48559b96-f856-4966-90c1-6e580b43e1c4", "name": "Source Owner", "originalRequest": { "url": { @@ -25913,7 +25913,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f2d54c29-468d-4ce3-a865-fd2b2c667e65", + "id": "72cb90d3-55e4-4c28-b3dc-a58e1e015b6f", "name": "Role Composition", "originalRequest": { "url": { @@ -25969,7 +25969,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e627d6b6-df0f-4f83-8baf-58a7a4685336", + "id": "fb1192f8-f87c-4b86-b5c5-e05fa502d8d8", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -26025,7 +26025,7 @@ "_postman_previewlanguage": "json" }, { - "id": "419cf73f-d76b-40d8-a195-a62ec1de74c0", + "id": "6f687e00-b116-4bd9-9cbf-7ee7ce2b1132", "name": "Search", "originalRequest": { "url": { @@ -26081,7 +26081,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5e6bc5d5-9b66-4521-af50-a5eeb09e7c9c", + "id": "eb4f17b9-bb1e-40b6-82f1-54788c05dd26", "name": "Source Owner", "originalRequest": { "url": { @@ -26137,7 +26137,7 @@ "_postman_previewlanguage": "json" }, { - "id": "444f0667-31af-4fe9-baeb-c7d2f6d5129d", + "id": "bec02427-ff46-4caf-8a17-e98fa59063ef", "name": "Role Composition", "originalRequest": { "url": { @@ -26199,7 +26199,7 @@ } }, { - "id": "67d90351-9972-434a-8bf4-b5e2c3befa68", + "id": "6f7bf09a-7c72-40f2-b374-c049236ffb99", "name": "Delete Campaigns", "request": { "name": "Delete Campaigns", @@ -26242,7 +26242,7 @@ }, "response": [ { - "id": "6b806f6c-64a4-40fb-957d-8ee7cc4d0100", + "id": "9a82d90c-fd5d-4287-94a9-ef0c1bceee3a", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -26299,7 +26299,7 @@ "_postman_previewlanguage": "json" }, { - "id": "71942776-022f-4485-ae93-6622e80a2c99", + "id": "89110308-247f-49b2-b9dc-a82a49715896", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -26356,7 +26356,7 @@ "_postman_previewlanguage": "json" }, { - "id": "98153936-bc2e-4581-b4ec-36355d2e7aea", + "id": "89acb2c1-26ec-4db5-ba04-a89725cd7826", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -26413,7 +26413,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a3efd5a7-82fd-4dd2-92d5-0cbfe96f372b", + "id": "61d2dffd-042f-45a4-8cc1-a7f12c5d979c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -26470,7 +26470,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f5b120e2-5bd6-4cc8-bf5b-15c8dd0382f7", + "id": "91e0de40-0486-443e-a783-d3612f8077c2", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -26527,7 +26527,7 @@ "_postman_previewlanguage": "json" }, { - "id": "55f3a106-605d-41a1-b67e-537898ffdbc1", + "id": "2d5b9076-1335-4f9a-bc9f-f467d73bba58", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -26584,7 +26584,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6186cdd3-e8fb-4482-9d5c-1e91c18379c9", + "id": "67b75e49-ce7f-4918-bd1e-829479514b13", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -26647,7 +26647,7 @@ } }, { - "id": "087b39c9-e0da-486f-b7cc-b225dbc161a9", + "id": "cba6563e-2fb5-4a21-91b7-b30bd872bcf7", "name": "Get Campaign", "request": { "name": "Get Campaign", @@ -26688,7 +26688,7 @@ }, "response": [ { - "id": "d1036399-5708-4eed-b7c5-5c926c2ba467", + "id": "9869f676-bf28-4b3b-8709-2d45cdaa024e", "name": "Manager", "originalRequest": { "url": { @@ -26732,7 +26732,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b9756121-7720-404d-92bb-88821b058210", + "id": "799c2efc-2085-4e6e-b237-1aee0877eb22", "name": "Search", "originalRequest": { "url": { @@ -26776,7 +26776,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c308dc0f-fc71-409c-803e-528eacaaf96e", + "id": "6b4f9726-0745-44f2-b172-d34daebce482", "name": "Source Owner", "originalRequest": { "url": { @@ -26820,7 +26820,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f5ff5e3a-fca0-4c84-82b0-153079bbc2e6", + "id": "8f0e472d-9463-48bc-b21a-7e22a0a016e0", "name": "RoleComposition", "originalRequest": { "url": { @@ -26864,7 +26864,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5f25d3d8-1e7b-4d55-9892-04e7354b4146", + "id": "84a038cb-6a91-4b1a-bb4a-e0b9fe3432c1", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -26908,7 +26908,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2973edc2-437a-4967-8eec-d3889bd4af9a", + "id": "9b459f5a-a4a7-40bf-838e-d2663dcae6bf", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -26952,7 +26952,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ac4252c3-e0c8-4be9-9918-19d01e98033a", + "id": "b9d894bb-8948-42aa-8a5b-d45cc5f6381b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -26996,7 +26996,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bf73e103-2fd4-40de-b750-6e02496d8d8d", + "id": "2d040f1c-71c3-45ba-a9bc-610233702098", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -27040,7 +27040,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bf5bcaa2-e448-45ce-b796-c82152c68af1", + "id": "69c5149a-5e74-490f-88da-2c8b404bb5d0", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -27084,7 +27084,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8f78f592-1c97-44ad-973e-f9aa107bbbc9", + "id": "87e9d9b5-5466-4cf1-903b-e928e5ba4da5", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -27134,7 +27134,7 @@ } }, { - "id": "35da2e1b-7a56-4be1-9047-066b3b151aad", + "id": "a0cdcdde-69ed-4c93-aaba-a39c1df160f3", "name": "Update a Campaign", "request": { "name": "Update a Campaign", @@ -27188,7 +27188,7 @@ }, "response": [ { - "id": "9d13d8e2-17e0-4a48-9eb9-89b7e6eeb35e", + "id": "350c968a-2906-4852-bef2-9d7b7c55e624", "name": "Manager", "originalRequest": { "url": { @@ -27245,7 +27245,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d8f30059-27ca-426e-952c-83706d6dd2f3", + "id": "92725907-f25b-41c3-a7e4-cfb4aa5a1fcd", "name": "Search", "originalRequest": { "url": { @@ -27302,7 +27302,7 @@ "_postman_previewlanguage": "json" }, { - "id": "08073ba5-4428-43bb-80ae-23c72f66a949", + "id": "f3af0594-2b63-4d94-8945-a3cafe5f6ae3", "name": "Source Owner", "originalRequest": { "url": { @@ -27359,7 +27359,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c3cc36e2-e4dc-4c1c-a586-325a82befe37", + "id": "6d654b38-3ed9-48d9-aa68-e33f070f7b99", "name": "RoleComposition", "originalRequest": { "url": { @@ -27416,7 +27416,7 @@ "_postman_previewlanguage": "json" }, { - "id": "14cc8e48-e76b-432a-8093-58dc0e9eb289", + "id": "0aeb380c-90ac-49d2-acab-467b718e92fa", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -27473,7 +27473,7 @@ "_postman_previewlanguage": "json" }, { - "id": "762c30aa-05e3-4534-b427-459145de0fd4", + "id": "08f877f6-df28-432d-831a-678e6acef5e7", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -27530,7 +27530,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bcb9c63a-d904-403b-82bc-aefe2a022469", + "id": "10b3d034-f01e-4f95-9982-00d1567c80a2", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -27587,7 +27587,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9bea3a41-1ecb-426d-9a05-70c1deb0ef63", + "id": "b6835fd4-6189-4609-9413-7033c60cdb9c", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -27644,7 +27644,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7322456b-3bcb-481c-b351-a6605ec96098", + "id": "6be9ddad-f281-4f41-a512-60f4437df4cf", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -27701,7 +27701,7 @@ "_postman_previewlanguage": "json" }, { - "id": "96ffdf61-ef48-4909-a05f-a50589b8ed35", + "id": "daf014c7-698f-4a17-9f1a-70bb82d869e8", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -27764,7 +27764,7 @@ } }, { - "id": "3380a106-809c-4552-9da5-ca166570d653", + "id": "e98b1b1f-b30f-4810-b1cc-c7d708dd9771", "name": "Activate a Campaign", "request": { "name": "Activate a Campaign", @@ -27819,7 +27819,7 @@ }, "response": [ { - "id": "769704b5-abed-48fa-b725-9f0d29c699e5", + "id": "27bb4e90-73d2-4246-bf36-bc78128fc5d1", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -27877,7 +27877,7 @@ "_postman_previewlanguage": "json" }, { - "id": "176fcd9f-a4b7-4d9c-84d6-87b421c98604", + "id": "a1699c2e-2242-45d3-b258-03c4a84138c2", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -27935,7 +27935,7 @@ "_postman_previewlanguage": "json" }, { - "id": "38333507-b667-417c-8b89-5634ffc0f202", + "id": "5d382c2f-3690-4594-b3f7-935ea0031e74", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -27993,7 +27993,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6a845fc3-decc-435e-9e22-342e526a770a", + "id": "6e95a818-f29c-4439-a211-4e3f88341475", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -28051,7 +28051,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3df36bd2-2169-4f97-a163-847ff5ab27ec", + "id": "7e218407-a4ad-4e15-86cb-234b7de074c0", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -28109,7 +28109,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1402b691-4b5e-4b29-ba71-12b7dd696219", + "id": "a7788a2f-5f90-42aa-a49c-d0fab705c697", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -28167,7 +28167,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a28b3483-153b-4d9d-ba64-ef4d92799d83", + "id": "3e76da12-15f3-42c7-8284-ddfdc07cb53f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -28231,7 +28231,7 @@ } }, { - "id": "12f2a2c1-0a23-4899-9672-8e9a9112e16c", + "id": "8c16670b-e41e-4750-be24-b7606aea0882", "name": "Complete a Campaign", "request": { "name": "Complete a Campaign", @@ -28286,7 +28286,7 @@ }, "response": [ { - "id": "ba3344a7-ff66-4e82-ad6a-6cf663bf4583", + "id": "6c675cfb-c292-4fc9-866a-47e2200fe0bd", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -28344,7 +28344,7 @@ "_postman_previewlanguage": "json" }, { - "id": "65aeef26-bb89-48fa-8c8d-f2d2fd49ad38", + "id": "b7e53e99-d199-45ad-979f-64d5f1f2ee57", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -28402,7 +28402,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3ad0509b-2844-4333-924f-c359d177b3b5", + "id": "b64a61e8-1bb3-443d-a463-049ef49e713c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -28460,7 +28460,7 @@ "_postman_previewlanguage": "json" }, { - "id": "057ed475-783b-4b59-ad6b-545fa3d16ff0", + "id": "93356f39-a541-48eb-be54-2f05aa9d0d50", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -28518,7 +28518,7 @@ "_postman_previewlanguage": "json" }, { - "id": "883a7092-d150-42f1-b6e2-8d53d03d8611", + "id": "ccddd1a9-9238-4ea6-8649-101d6801583a", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -28576,7 +28576,7 @@ "_postman_previewlanguage": "json" }, { - "id": "118c0e72-86b2-43ed-9914-c9c1f81f96c6", + "id": "6daa3303-df95-4b10-ab27-ba96962d61ad", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -28634,7 +28634,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3a52a205-3c8d-4f06-b2e6-8ba594c7decd", + "id": "7ddc2a22-4b2a-4826-8971-efd1ca9617f2", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -28698,7 +28698,7 @@ } }, { - "id": "29df86f3-b5dc-4917-9137-70b730c1bc74", + "id": "b58c6c0d-d148-4690-9309-2e4a70ebb2d4", "name": "Run Campaign Remediation Scan", "request": { "name": "Run Campaign Remediation Scan", @@ -28740,7 +28740,7 @@ }, "response": [ { - "id": "83cd95b6-cfe4-410c-b7b0-b13d79f5c941", + "id": "039229e5-608c-4c53-b900-8927e3652153", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -28785,7 +28785,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1ef28a06-0110-4f62-b194-6a960f4b6c0e", + "id": "8d0e2dad-cbe8-4b39-a4dc-08691ef752cd", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -28830,7 +28830,7 @@ "_postman_previewlanguage": "json" }, { - "id": "51feb2ae-6385-480f-b81c-cdbe60ad8591", + "id": "6f63b076-ee40-4849-9adc-8e0695189d36", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -28875,7 +28875,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6874f4da-64a7-44e8-aa20-0732ba01d5f3", + "id": "18d658da-fa32-4414-9fc3-52c8b4bf1465", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -28920,7 +28920,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b6fc02c2-85f1-42cf-b3c3-32a1371548cb", + "id": "8e4fe432-336c-4909-b160-548e03323c62", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -28965,7 +28965,7 @@ "_postman_previewlanguage": "json" }, { - "id": "67a83314-384c-4104-b15d-1fc72400687c", + "id": "4c0999ff-9230-4332-820c-7dd5912408d9", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -29010,7 +29010,7 @@ "_postman_previewlanguage": "json" }, { - "id": "156c2754-f99b-4aa1-a7cf-66defda2b6f4", + "id": "70f2796b-62c1-4217-88ab-5fa7435662a1", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -29061,7 +29061,7 @@ } }, { - "id": "478b8b94-9c2c-4179-9ca3-f870f762ff91", + "id": "2e1139aa-0f47-48da-9f2d-becc7e8a538e", "name": "Reassign Certifications", "request": { "name": "Reassign Certifications", @@ -29116,7 +29116,7 @@ }, "response": [ { - "id": "3ebf94af-0673-420d-a335-85c5ac5ae821", + "id": "fc55d014-ba9d-41e5-8127-9b44148bb886", "name": "The reassign task that has been submitted.", "originalRequest": { "url": { @@ -29174,7 +29174,7 @@ "_postman_previewlanguage": "json" }, { - "id": "35890faa-b8e9-4285-84d5-6de9013abde9", + "id": "7ff47512-166e-4bfc-9c8b-4986cd05e34a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -29232,7 +29232,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0e609608-2fb5-44be-bb3d-a1dcea2214ad", + "id": "d8652d65-27cd-4004-bdd2-10648a6cfc82", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -29290,7 +29290,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c6d32f1f-856e-4219-9ab8-f426eef53036", + "id": "75cc3682-9575-4d4f-8bfa-589b4bb3db07", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -29348,7 +29348,7 @@ "_postman_previewlanguage": "json" }, { - "id": "60160215-92c3-46e1-9a8c-eb55daba2967", + "id": "8a0841a0-c0a2-4faa-9e82-66e06d816684", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -29406,7 +29406,7 @@ "_postman_previewlanguage": "json" }, { - "id": "25aeaad0-aa62-41d5-8506-2b87749a6648", + "id": "240eb947-dcde-4391-af16-c3a20d6afe16", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -29464,7 +29464,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ed904871-a4e8-477f-aa93-7aa242d4b748", + "id": "c1bf3a6c-8f50-414e-8efa-3f6fe2ffca56", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -29528,7 +29528,7 @@ } }, { - "id": "2d67836d-966b-46ff-80f7-286d1593cb77", + "id": "6386b8bf-47cd-4382-9ec2-a1b72c6d39f0", "name": "Get Campaign Reports", "request": { "name": "Get Campaign Reports", @@ -29570,7 +29570,7 @@ }, "response": [ { - "id": "d2fa512d-a565-4384-bcbd-2dc1020c4217", + "id": "45acb23e-c472-4f1f-81a1-b4919f4132ba", "name": "Array of campaign report objects.", "originalRequest": { "url": { @@ -29615,7 +29615,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6d257c80-8f67-49df-9c32-832de7e7a655", + "id": "71d14394-aeeb-4cf4-849c-e81feb017134", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -29660,7 +29660,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a9171464-4ff8-42d1-8e46-9a76bdf713f6", + "id": "7445bf9b-2d68-453b-a532-4a4e89535ea7", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -29705,7 +29705,7 @@ "_postman_previewlanguage": "json" }, { - "id": "15f9d254-b51b-489c-bc84-d03f44a6a64a", + "id": "11542577-5501-4386-bece-83c9a18dac87", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -29750,7 +29750,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d8abcd63-b20a-4e2e-b65a-378549d79923", + "id": "663bb098-6798-40c7-813a-6681de73c507", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -29795,7 +29795,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f38f333f-f1c2-427f-8747-f3463bbe6ab8", + "id": "bf5a1814-8d72-430b-9a05-a48b9337619f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -29840,7 +29840,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4165cb89-9081-497e-a7af-86fcfff9abce", + "id": "6184fff0-9387-4494-a779-1170165e0208", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -29891,7 +29891,7 @@ } }, { - "id": "cdf16bd8-6fbc-40fd-90df-f406b3c33eaa", + "id": "9036ae84-71e2-4f25-b73f-31a5fad3448b", "name": "Run Campaign Report", "request": { "name": "Run Campaign Report", @@ -29944,7 +29944,7 @@ }, "response": [ { - "id": "510ba6ab-37c8-434e-b2bf-da684c580b50", + "id": "8ba29fea-ee75-4257-8a0a-113f93db05fb", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -29990,7 +29990,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b5e17d6c-763d-4095-afe1-862b6c0dfb6d", + "id": "8e1f8f8d-7561-41fa-869c-1165c2cac10a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -30036,7 +30036,7 @@ "_postman_previewlanguage": "json" }, { - "id": "adab401f-4800-4b23-9be6-ba6d69399b2f", + "id": "4e601cda-1598-46a9-a585-86595a97015d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -30082,7 +30082,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cc97ae4a-f909-4cae-9ab0-0474c4adf46b", + "id": "b018b3c3-f91f-44ff-909f-2bc46d970b63", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -30128,7 +30128,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b6222bc6-8082-42ae-9c56-fecfc346ad70", + "id": "02068fc1-fb84-40f8-ba90-1f25b67b782a", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -30174,7 +30174,7 @@ "_postman_previewlanguage": "json" }, { - "id": "534f504c-c817-45f6-bf57-f3b1579f59e5", + "id": "fc28c5e8-8226-43f9-9892-1db73cd1ab55", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -30220,7 +30220,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bd192bd6-624e-4bb0-bfc5-9e12d78322b4", + "id": "78cdbbe2-61c4-42a9-ad09-9264b4932ea8", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -30272,7 +30272,7 @@ } }, { - "id": "a68626ae-d490-48f8-86de-8836e5ff9275", + "id": "5583482b-df9f-427e-8596-09d4c733f1c4", "name": "Get Campaign Reports Configuration", "request": { "name": "Get Campaign Reports Configuration", @@ -30302,7 +30302,7 @@ }, "response": [ { - "id": "cb54827e-0e41-4595-a335-c53aa95d7fc2", + "id": "72dd644c-281f-46b2-b1d8-1fa39a159f4c", "name": "Campaign report configuration.", "originalRequest": { "url": { @@ -30346,7 +30346,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5012e53c-0951-485d-bebd-422d8aff0e5d", + "id": "a7ffefd1-bc8d-4090-af4f-a5b1ee85f86a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -30390,7 +30390,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4c73e140-22ac-4d17-8251-976fc16b3daa", + "id": "133b41b4-48eb-40a5-8340-8ca05e3e915f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -30434,7 +30434,7 @@ "_postman_previewlanguage": "json" }, { - "id": "24d87191-3838-43c5-96fa-7b6b62f228cc", + "id": "b044c926-1e26-41a6-930f-fa81741f75f5", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -30478,7 +30478,7 @@ "_postman_previewlanguage": "json" }, { - "id": "53c226fd-1493-443a-8634-c6d5c5c30f3c", + "id": "3eb14e24-0b0a-421e-963b-99f6e1a3413e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -30522,7 +30522,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8fed81d2-0511-4554-95a4-ce132028b8a1", + "id": "4dc5e3cf-67e5-488b-96bf-2cbce26aba0e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -30572,7 +30572,7 @@ } }, { - "id": "d78260ed-1fed-4893-9853-675ce890cc23", + "id": "de2d5d9f-ba6b-4b05-a8ac-8837ae9bb386", "name": "Set Campaign Reports Configuration", "request": { "name": "Set Campaign Reports Configuration", @@ -30615,7 +30615,7 @@ }, "response": [ { - "id": "c68b0213-1efa-451c-8d78-e72aa79c3892", + "id": "3ebb2312-de09-4c9f-bce0-877fe709fc2f", "name": "The persisted campaign report configuration.", "originalRequest": { "url": { @@ -30672,7 +30672,7 @@ "_postman_previewlanguage": "json" }, { - "id": "562926a8-6ba0-4c33-a999-f9089106b046", + "id": "32ed5456-2aa5-46bd-932e-095ca7326140", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -30729,7 +30729,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ddcc3ed6-67da-4e1f-bf38-cfb939172393", + "id": "63091753-e3db-4f00-8078-82c15d1a751d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -30786,7 +30786,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a007ebb5-edfd-4461-8f30-c89dee684e41", + "id": "a35feb63-30ac-4c80-8ae9-9e2620e4d765", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -30843,7 +30843,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ab5bbb86-4aa7-4945-bcb5-e1e9347dc6b2", + "id": "49a0583f-172c-4bf7-8560-abeabe0cbff2", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -30900,7 +30900,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c2d53825-060c-4b8e-ac40-6c8a33c4e062", + "id": "1db12d2a-bbcc-43fe-85fd-9e20dda6183f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -30963,7 +30963,7 @@ } }, { - "id": "cecf698c-08fc-4c74-8cc3-c559025ffbc1", + "id": "a207c3e7-6c05-48bb-bd55-6d2ae7fcee0a", "name": "List Campaign Templates", "request": { "name": "List Campaign Templates", @@ -31038,7 +31038,7 @@ }, "response": [ { - "id": "df025449-8526-4def-b012-a630c2158289", + "id": "848dc2ce-e8ca-4f02-b1ae-1d22cee76561", "name": "List of campaign template objects.", "originalRequest": { "url": { @@ -31127,7 +31127,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9a2c6805-7b7b-4ac2-9cba-b5d7d278145f", + "id": "bb077983-d2d9-4d95-81ed-2b096d1ff550", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -31216,7 +31216,7 @@ "_postman_previewlanguage": "json" }, { - "id": "188cf388-0a9c-4e60-a6c3-4769fdec4003", + "id": "8b4f8eaa-ee12-49a7-a0f3-292fb0b7eb16", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -31305,7 +31305,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9e247505-5465-470d-8621-d09043f69f26", + "id": "0029d08f-0609-4134-9eb3-5046ec33a03c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -31394,7 +31394,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d7d1f8d8-159b-4fd3-886c-1474fcce1b0c", + "id": "d76e6345-c506-4b96-8183-5f4f2dcec6d5", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -31483,7 +31483,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5ff67e24-b2d8-40b7-b3a5-f483f8b6b9ca", + "id": "6df0f63a-519f-4e76-a4d5-76338dea81b8", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -31578,7 +31578,7 @@ } }, { - "id": "8875ccd4-4104-4493-896a-a0e5283f5522", + "id": "d9a3c06a-40e1-4a8a-bfa2-0e35b782119f", "name": "Create a Campaign Template", "request": { "name": "Create a Campaign Template", @@ -31620,7 +31620,7 @@ }, "response": [ { - "id": "8af70a94-b9b6-4898-97f0-d5e8d13ab06f", + "id": "4c248846-0b92-47e2-8f6a-8721d1490903", "name": "Manager", "originalRequest": { "url": { @@ -31676,7 +31676,7 @@ "_postman_previewlanguage": "json" }, { - "id": "81c59f65-3f06-436a-ad32-02ac1d8cca26", + "id": "336dbf48-e0f7-4092-9214-4ef6df2d4073", "name": "Search", "originalRequest": { "url": { @@ -31732,7 +31732,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f435826b-21fb-415a-9e2f-6a5fcb296043", + "id": "abc6ad2d-939e-4ddb-b0d8-4e2406473e83", "name": "Source Owner", "originalRequest": { "url": { @@ -31788,7 +31788,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d448e166-5587-4744-b1e8-071eab39bc7a", + "id": "cb527611-dda9-4e85-a6ee-f8b38075ad71", "name": "RoleComposition", "originalRequest": { "url": { @@ -31844,7 +31844,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f8f39515-e259-4709-87cb-78e39ed36205", + "id": "1236578b-75e3-4ef7-8fb3-56a2f1817fd1", "name": "Manager", "originalRequest": { "url": { @@ -31900,7 +31900,7 @@ "_postman_previewlanguage": "json" }, { - "id": "81137753-ac1c-4b4b-991a-69a2859fac85", + "id": "8b07f87d-23b0-4ec7-805b-f90ceacc1fa1", "name": "Search", "originalRequest": { "url": { @@ -31956,7 +31956,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0b4a18b8-7f0d-4347-aefb-0fc77a8eca93", + "id": "9d0719e2-1a98-4bf9-b3b7-fd038b97a503", "name": "Source Owner", "originalRequest": { "url": { @@ -32012,7 +32012,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9b879c4e-de53-4375-bb3f-cfd24a09c7b9", + "id": "e5918c7f-3fb6-44dc-9bb1-51f3caee5e1b", "name": "RoleComposition", "originalRequest": { "url": { @@ -32068,7 +32068,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6f71e908-a830-4327-89a5-1b1c788700b6", + "id": "a0f7c52c-2dbb-429f-836f-b02334b6ac44", "name": "Manager", "originalRequest": { "url": { @@ -32124,7 +32124,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3643af66-58d9-477e-bd53-ebc959d1d261", + "id": "129fb96b-7238-4c9c-bab4-68dd67b925e4", "name": "Search", "originalRequest": { "url": { @@ -32180,7 +32180,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6ad6c613-dcca-4260-9115-e9144513c44f", + "id": "276f57b4-6330-4365-9153-9dd24fb72abd", "name": "Source Owner", "originalRequest": { "url": { @@ -32236,7 +32236,7 @@ "_postman_previewlanguage": "json" }, { - "id": "91e3413b-fa45-452c-ae49-f2c898dfc702", + "id": "1a74c7bd-a3c6-48d7-8003-4c68b8a51ebb", "name": "RoleComposition", "originalRequest": { "url": { @@ -32292,7 +32292,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c1f0b3a9-073e-4298-be15-de1de721ab19", + "id": "2503a36c-2e2d-4b98-a8e0-6afc0e7fe078", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -32348,7 +32348,7 @@ "_postman_previewlanguage": "json" }, { - "id": "83bf4b8e-4f7a-4182-a022-1ae4eb012de4", + "id": "76a36943-d954-4ac0-823f-3e168fd60a22", "name": "Search", "originalRequest": { "url": { @@ -32404,7 +32404,7 @@ "_postman_previewlanguage": "json" }, { - "id": "58f4561f-98b2-4efb-9917-2bd9186f4cce", + "id": "f4a30f7c-c38b-4181-8e66-fe991068ab5d", "name": "Source Owner", "originalRequest": { "url": { @@ -32460,7 +32460,7 @@ "_postman_previewlanguage": "json" }, { - "id": "61956d79-912c-49c4-8d44-561c35661d76", + "id": "9a2769b8-999a-4616-8563-e16d3e39741e", "name": "RoleComposition", "originalRequest": { "url": { @@ -32516,7 +32516,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f1965419-c515-4c82-9a9e-4d9111eeaff1", + "id": "f4d58112-6797-45cd-8136-69c09a955f6e", "name": "Manager", "originalRequest": { "url": { @@ -32572,7 +32572,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c10fe6c9-acc9-4b70-9d63-f017a7e6284e", + "id": "152315ed-6be8-41d9-b74c-24b6806c33f4", "name": "Search", "originalRequest": { "url": { @@ -32628,7 +32628,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1e06d851-a0ad-4100-8759-17c033fa201b", + "id": "24dc3a5c-9457-453c-be4b-ff817dfcd658", "name": "Source Owner", "originalRequest": { "url": { @@ -32684,7 +32684,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c7016066-7972-4dea-b559-4450f16194c0", + "id": "e6585287-efb8-4c8d-b471-9e0f3bb18743", "name": "RoleComposition", "originalRequest": { "url": { @@ -32740,7 +32740,7 @@ "_postman_previewlanguage": "json" }, { - "id": "416e4939-ecf5-4f60-8e53-c6bbe96b16f3", + "id": "e48b070c-1bd7-4a2d-9586-c1899933ace0", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -32796,7 +32796,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a38b29da-fa43-46f6-86ed-5b28c5ab8133", + "id": "36348b7e-cac5-465d-93e3-533f1503fe6b", "name": "Search", "originalRequest": { "url": { @@ -32852,7 +32852,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5d9c22e9-a270-424e-9f80-b0378c7095dd", + "id": "d77132c2-3dca-43fd-b188-33d2dedc0c0f", "name": "Source Owner", "originalRequest": { "url": { @@ -32908,7 +32908,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0e512f77-e726-4d4e-950e-5acacc140b37", + "id": "9c0aaec8-542a-42f2-8a51-243c34d4487c", "name": "RoleComposition", "originalRequest": { "url": { @@ -32970,7 +32970,7 @@ } }, { - "id": "a19e4946-4f89-4c89-88e5-695daed21689", + "id": "eb64a9ad-cc1c-4272-bfd6-1b8e4ff91276", "name": "Get a Campaign Template", "request": { "name": "Get a Campaign Template", @@ -33011,7 +33011,7 @@ }, "response": [ { - "id": "d00bac83-4689-47ec-b1c7-9a8d876d0bdb", + "id": "a7290a68-4de9-4b70-a361-2df27d99d76d", "name": "Manager", "originalRequest": { "url": { @@ -33055,7 +33055,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a45f7ab5-8777-4844-a7b4-cf5572a65bf8", + "id": "852fa836-50e9-41c6-b54a-e13c607b16b6", "name": "Search", "originalRequest": { "url": { @@ -33099,7 +33099,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bca5bdc0-5f73-4ba7-b9a9-1f376b76a11b", + "id": "4f45035b-4e17-4bd2-aae2-117880fb7d1e", "name": "Source Owner", "originalRequest": { "url": { @@ -33143,7 +33143,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8ef6390f-312e-4d19-81b7-8a175667afeb", + "id": "ab87d6ac-7332-4b09-b180-4b37a4439433", "name": "RoleComposition", "originalRequest": { "url": { @@ -33187,7 +33187,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fa59ccbc-95c5-4b86-9a40-ceadf88327f8", + "id": "fb569ee2-712b-41ab-9370-1f8256ab5cbf", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -33231,7 +33231,7 @@ "_postman_previewlanguage": "json" }, { - "id": "72176543-65c6-471f-8457-63ac829dc9e3", + "id": "8f4105e7-376c-483c-a7fa-550c2a7ee751", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -33275,7 +33275,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6238bf52-abbf-4406-88ed-8b98194f1e10", + "id": "e519b2e0-fb77-4a23-9ee1-d5e794987acd", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -33319,7 +33319,7 @@ "_postman_previewlanguage": "json" }, { - "id": "765be5fa-eef8-431b-b35e-b8e87eb48449", + "id": "bedd858e-6757-4fbc-9df4-a49224e0a0c6", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -33363,7 +33363,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6d9b7566-5e0a-4114-b34e-410d9e28d6f5", + "id": "52ef730c-bd9c-4130-8b0c-f18fe3fb2561", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -33407,7 +33407,7 @@ "_postman_previewlanguage": "json" }, { - "id": "971dbf9b-1482-4537-842d-098c87e9b3a2", + "id": "dd915030-999f-4181-8302-7b473ead9bbf", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -33457,7 +33457,7 @@ } }, { - "id": "f3756c28-77f6-49d6-85bd-b398f4b9622a", + "id": "7eb72365-7f7e-4168-aadd-58603d7c7976", "name": "Update a Campaign Template", "request": { "name": "Update a Campaign Template", @@ -33511,7 +33511,7 @@ }, "response": [ { - "id": "dd7a7065-ea5a-48ae-8bb8-a613faa65725", + "id": "1bc76508-83d6-4e6a-a108-ad043d2a9348", "name": "Manager", "originalRequest": { "url": { @@ -33568,7 +33568,7 @@ "_postman_previewlanguage": "json" }, { - "id": "75c5c6bf-6937-4fa8-b2cf-b384ceff9fa0", + "id": "7751d13a-1233-43f9-803c-671886b187bb", "name": "Search", "originalRequest": { "url": { @@ -33625,7 +33625,7 @@ "_postman_previewlanguage": "json" }, { - "id": "74ec5493-692e-4f36-b4ed-22f2fb43e2c4", + "id": "c9f12483-867f-4303-bbc9-c003434ae24b", "name": "Source Owner", "originalRequest": { "url": { @@ -33682,7 +33682,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2c7eaee1-2930-4f5f-b80d-10fc957ba5fe", + "id": "1405d0d3-1d48-49d6-bea9-4eb5d3db33c4", "name": "RoleComposition", "originalRequest": { "url": { @@ -33739,7 +33739,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1ee63bbb-28d9-4320-bff1-3250de6810d2", + "id": "86381288-93d3-411d-9ed0-3f0050b1f48a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -33796,7 +33796,7 @@ "_postman_previewlanguage": "json" }, { - "id": "66a80922-2626-48f6-b8d7-ef952026868d", + "id": "77151e2b-7ba7-4f14-b215-d9e4842fdd88", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -33853,7 +33853,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4cd6f8e0-5506-41e7-b897-e26cf03494cb", + "id": "530bcadd-23ce-46a5-b4de-8225bf99daa2", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -33910,7 +33910,7 @@ "_postman_previewlanguage": "json" }, { - "id": "73fa0b2e-eed4-4ee2-ba66-29040d8e297f", + "id": "45fb3c59-087c-43ec-b290-3bedbd019890", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -33967,7 +33967,7 @@ "_postman_previewlanguage": "json" }, { - "id": "41d107fb-9121-433a-87fb-e34c39a2897b", + "id": "c0caed41-81c3-4425-bab3-4e0ce9ce28f9", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -34024,7 +34024,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b3099132-fb38-488c-a644-9bf7d61c60d5", + "id": "ef66c149-2f7e-414d-998f-32d15d15ba32", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -34087,7 +34087,7 @@ } }, { - "id": "f07afeec-cb5a-4d2a-ae28-05d066d86826", + "id": "0974831b-8881-4824-97e9-fc7fe5e28259", "name": "Delete a Campaign Template", "request": { "name": "Delete a Campaign Template", @@ -34128,7 +34128,7 @@ }, "response": [ { - "id": "322f8530-ccac-4e15-bddb-12c6ab77b1a9", + "id": "ff9b3744-b740-4fa3-9c20-b92591afc129", "name": "The campaign template was successfully deleted.", "originalRequest": { "url": { @@ -34162,7 +34162,7 @@ "_postman_previewlanguage": "text" }, { - "id": "244d269d-cce8-4b1c-8250-3e46f886f689", + "id": "0468f8cd-58aa-46db-84ad-4e16fa20a275", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -34206,7 +34206,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5e0b829a-2514-4f6c-9f43-e527eefe2f0b", + "id": "c45b70ff-791f-404d-b696-992f4b94a9cb", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -34250,7 +34250,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fbd8b6c5-078c-4e04-bfd1-7f02398d426d", + "id": "4cef9436-851a-48bb-9167-026dc5185acc", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -34294,7 +34294,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d877751c-3aaf-4e3f-b02e-1b1219cd74f7", + "id": "ec0fc487-7bc6-49af-a3cd-c3425ab009d6", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -34338,7 +34338,7 @@ "_postman_previewlanguage": "json" }, { - "id": "78a34480-7380-4496-988b-d08a5b85cbf8", + "id": "0ec1f44f-d3b2-4518-bae0-558b6e9d0772", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -34382,7 +34382,7 @@ "_postman_previewlanguage": "json" }, { - "id": "30f8a5a4-cac1-4140-8c88-169f99d5aff8", + "id": "931e5743-054f-4ee3-a1ac-f53802e98e36", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -34432,7 +34432,7 @@ } }, { - "id": "604c144d-c74a-4d3f-aefd-11c927c4c2fb", + "id": "17afacc0-479d-4c75-a839-cb69afb4bf5d", "name": "Generate a Campaign from Template", "request": { "name": "Generate a Campaign from Template", @@ -34474,7 +34474,7 @@ }, "response": [ { - "id": "f4ac1508-8a01-4ad8-966f-e68f94ba6fdc", + "id": "f700f112-5f17-44e5-8502-62b9ea30d796", "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": { @@ -34519,7 +34519,7 @@ "_postman_previewlanguage": "json" }, { - "id": "aee15b3f-6bc7-42aa-9a9d-9f938e650b59", + "id": "68d074f9-fe0a-436b-a28a-99de663fbfd8", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -34564,7 +34564,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b446b771-2b2b-45fc-9642-a8774d5069f2", + "id": "3b0df7e8-616c-40c0-86b9-10e452cf82a2", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -34609,7 +34609,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fe4ce37a-7dd0-4e2e-844b-f0f79d021b66", + "id": "92824e36-f772-4909-92ef-cc3949cdad36", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -34654,7 +34654,7 @@ "_postman_previewlanguage": "json" }, { - "id": "06758e34-53a5-4aed-a9e2-0eb5ad3c9819", + "id": "3315e669-05d7-4882-b630-b7f331279bae", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -34699,7 +34699,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a60336f2-dc05-4d32-88be-4b6dc0643c21", + "id": "6b0fa618-9b9f-441c-8720-b66c649835b5", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -34750,7 +34750,7 @@ } }, { - "id": "00c050e0-67f5-49d0-9118-ab28a7c414f3", + "id": "1685c079-d43a-47d8-939a-41440a3a7b7c", "name": "Get Campaign Template Schedule", "request": { "name": "Get Campaign Template Schedule", @@ -34792,7 +34792,7 @@ }, "response": [ { - "id": "ae156031-a16b-4844-b712-972276d0534d", + "id": "14e3e941-da9d-4200-b08d-fa8f420f6a8a", "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": { @@ -34837,7 +34837,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4c50dfa1-ef02-4421-b02a-9f2eb2d2ec6e", + "id": "5b9d84af-475f-43df-a52e-6a1f60b710b7", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -34882,7 +34882,7 @@ "_postman_previewlanguage": "json" }, { - "id": "69813efa-d6f8-475d-8b8f-8408fc22ef51", + "id": "8e4db40d-2b41-4d95-bf46-9f2130472a27", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -34927,7 +34927,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3e54802f-55ea-4e5d-96a2-960174597d25", + "id": "1dcb2a9a-23af-43b6-9f02-4a93fe2dc3b0", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -34972,7 +34972,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fe2dabec-b744-491b-964c-d4847744cdf5", + "id": "e3003c0c-9b1b-4888-b0b4-c15bbe18d9ed", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -35017,7 +35017,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ed344105-4a98-4560-ad72-25f235a254e9", + "id": "c70362d9-831f-44ed-b656-18d084e034c4", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -35062,7 +35062,7 @@ "_postman_previewlanguage": "json" }, { - "id": "209e1b3c-daa4-473d-9772-1e297fa2098e", + "id": "e1330644-7ecd-403e-8c98-02fc16df9d95", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -35113,7 +35113,7 @@ } }, { - "id": "1b3793cb-d675-47eb-bf32-0560aff8785e", + "id": "8c96cee4-54af-46e4-8ae4-8dbfeca72fcc", "name": "Set Campaign Template Schedule", "request": { "name": "Set Campaign Template Schedule", @@ -35168,7 +35168,7 @@ }, "response": [ { - "id": "57d1ddf6-2d2f-4f9e-9307-f3d6d72ae786", + "id": "4ec7087f-cf9f-4a8f-a709-84c8df1978d3", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -35216,7 +35216,7 @@ "_postman_previewlanguage": "text" }, { - "id": "c54a3a27-3e05-4f26-b648-98c4d4fd44cd", + "id": "7ce6cae8-5ccf-48a4-9a09-c3a634c081b6", "name": "Monthly", "originalRequest": { "url": { @@ -35274,7 +35274,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d614047a-a952-48fc-a540-f57941e1c84d", + "id": "48b6a7bb-c54d-4386-a0b3-c3ceeb3c8d25", "name": "Once a year", "originalRequest": { "url": { @@ -35332,7 +35332,7 @@ "_postman_previewlanguage": "json" }, { - "id": "90cd3000-4182-4bfc-8b60-d17615203187", + "id": "73978642-d552-4478-b2e6-0bf031b2a28d", "name": "Quarterly", "originalRequest": { "url": { @@ -35390,7 +35390,7 @@ "_postman_previewlanguage": "json" }, { - "id": "98a3cbd1-53c4-4d6c-b319-e581345d7495", + "id": "94deb63c-8004-4525-a7cc-79f9885fd3ab", "name": "Yearly on Specific Days", "originalRequest": { "url": { @@ -35448,7 +35448,7 @@ "_postman_previewlanguage": "json" }, { - "id": "863656b8-cc0d-4fe0-9833-f8abaf212b36", + "id": "63827d19-ae6b-4b38-9a56-3461ca79ffef", "name": "On a Specific Date", "originalRequest": { "url": { @@ -35506,7 +35506,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b13cd464-bc65-4ee5-84d8-5cacd1ac92c6", + "id": "b616cc7e-0d91-481e-9ffc-97381f9c9736", "name": "Monthly", "originalRequest": { "url": { @@ -35564,7 +35564,7 @@ "_postman_previewlanguage": "json" }, { - "id": "904a2c6e-b162-4c44-be0f-14a7b8a7e87a", + "id": "d9935a36-a8b2-4cd3-b8a4-c9fad896fbfd", "name": "Once a year", "originalRequest": { "url": { @@ -35622,7 +35622,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b67656c9-8b00-42ed-a05c-b8d5f456bbff", + "id": "84dd86c0-eb0e-416a-859b-56e83ba37e85", "name": "Quarterly", "originalRequest": { "url": { @@ -35680,7 +35680,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f78ded99-d33a-4d4a-b8ff-3b2635126fed", + "id": "ca2b561f-f133-48ce-8c25-6ed86e9d9480", "name": "Yearly on Specific Days", "originalRequest": { "url": { @@ -35738,7 +35738,7 @@ "_postman_previewlanguage": "json" }, { - "id": "079c6e7c-83e3-4ea3-92de-5111c63b4478", + "id": "074a8d92-58c9-4ab8-9690-70eb3737cc62", "name": "On a Specific Date", "originalRequest": { "url": { @@ -35796,7 +35796,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e5ebf968-276e-436a-8a7e-485a80646dd6", + "id": "c1ef3cb5-6403-40f7-862d-a1cad65cb25b", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -35854,7 +35854,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4655298e-1940-4baa-b787-8c35f24b8eca", + "id": "065330a8-22d1-44fa-a3f0-08fbe91d2bd3", "name": "Once a year", "originalRequest": { "url": { @@ -35912,7 +35912,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8a8f2184-fdd1-4a4b-a0b8-5f2a92cf908b", + "id": "f2e8130a-1dfc-42e8-b1d0-89addd0d75de", "name": "Quarterly", "originalRequest": { "url": { @@ -35970,7 +35970,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a9e514b7-0c41-4331-98db-230be71ee61f", + "id": "56faec1b-9dc7-4c8c-8064-905c3ea88b55", "name": "Yearly on Specific Days", "originalRequest": { "url": { @@ -36028,7 +36028,7 @@ "_postman_previewlanguage": "json" }, { - "id": "57a5557f-7197-4ee8-a656-c759535ea849", + "id": "2e1e175f-cef5-459b-9a16-cad021161600", "name": "On a Specific Date", "originalRequest": { "url": { @@ -36086,7 +36086,7 @@ "_postman_previewlanguage": "json" }, { - "id": "00888b01-0c69-4fc1-b8a1-dea8b5f27c43", + "id": "03dfde72-d135-4497-a2c7-8614bf2f503f", "name": "An example of a 404 response object", "originalRequest": { "url": { @@ -36144,7 +36144,7 @@ "_postman_previewlanguage": "json" }, { - "id": "de5bf8de-5bac-4400-8480-e8fe9c0f3c5c", + "id": "1f779001-1e48-4c57-9a5e-666ffff367ee", "name": "Once a year", "originalRequest": { "url": { @@ -36202,7 +36202,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4a8a44a5-4cd0-4d90-b6a8-44778f450627", + "id": "ba09970f-e3ab-458d-94e2-c5fa4b59e952", "name": "Quarterly", "originalRequest": { "url": { @@ -36260,7 +36260,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6ba450d1-0346-4f33-b254-21c5623965d5", + "id": "6550eed8-1a81-42eb-a1a0-d7cf82b83c0e", "name": "Yearly on Specific Days", "originalRequest": { "url": { @@ -36318,7 +36318,7 @@ "_postman_previewlanguage": "json" }, { - "id": "19ee796c-d36d-4e2c-8918-fad36fcb52d4", + "id": "c78a1f13-0690-4145-af94-9af19eab5b44", "name": "On a Specific Date", "originalRequest": { "url": { @@ -36376,7 +36376,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ec6a05c8-c91a-4ac7-b708-d79b8105bde5", + "id": "3f24ea7e-9139-4530-8260-07e809b7b6c2", "name": "Monthly", "originalRequest": { "url": { @@ -36434,7 +36434,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4d996456-2ee9-4488-a1bc-bad52600e640", + "id": "66ca0249-61ec-4f7f-8632-f26d673a941c", "name": "Once a year", "originalRequest": { "url": { @@ -36492,7 +36492,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d7412010-72a8-48b6-8e75-e37d1a8b7a41", + "id": "63d77e84-febc-4757-b094-21ec308e9bb0", "name": "Quarterly", "originalRequest": { "url": { @@ -36550,7 +36550,7 @@ "_postman_previewlanguage": "json" }, { - "id": "94ed0cbc-e8be-4b11-9524-a8a879cc14f8", + "id": "5acfa5d1-7351-485b-93f7-e25229793253", "name": "Yearly on Specific Days", "originalRequest": { "url": { @@ -36608,7 +36608,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a688ed6e-4c83-4273-a778-633cca969b7e", + "id": "ff826734-1e68-4ef6-acdf-8fcb42a91d8a", "name": "On a Specific Date", "originalRequest": { "url": { @@ -36666,7 +36666,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3a4c7beb-5a63-4d61-b464-0938d8c955b2", + "id": "8e9935f0-e2e2-46dc-a2fc-66aef5c19e31", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -36724,7 +36724,7 @@ "_postman_previewlanguage": "json" }, { - "id": "00d71913-f374-4cec-9c9c-b10791b47158", + "id": "b5f796ff-9100-4153-82fb-4b72e39b4e4b", "name": "Once a year", "originalRequest": { "url": { @@ -36782,7 +36782,7 @@ "_postman_previewlanguage": "json" }, { - "id": "959906e1-d9fb-448d-94c7-df18fef3fc21", + "id": "5d23f26e-6d46-44f7-8327-a9ad11268a2e", "name": "Quarterly", "originalRequest": { "url": { @@ -36840,7 +36840,7 @@ "_postman_previewlanguage": "json" }, { - "id": "864f02c6-c566-4dd8-b213-cadbe5ce32ec", + "id": "8b55ce49-c622-424c-b721-74a966f53f9a", "name": "Yearly on Specific Days", "originalRequest": { "url": { @@ -36898,7 +36898,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ff7e7d12-17f2-4a32-ae43-2aba0499e39b", + "id": "038461e5-3c7f-4ddc-8e05-bf1f9bbb036b", "name": "On a Specific Date", "originalRequest": { "url": { @@ -36962,7 +36962,7 @@ } }, { - "id": "7d781c60-fb4b-46ab-9545-5336ac6bef0a", + "id": "5eba0033-1519-498a-8ca0-c9e0bb830ca3", "name": "Delete Campaign Template Schedule", "request": { "name": "Delete Campaign Template Schedule", @@ -37004,7 +37004,7 @@ }, "response": [ { - "id": "a49117ba-2b88-4836-8d8b-d09feb97212d", + "id": "c673d2f2-c0b8-453b-878c-28f2ac2df593", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -37039,7 +37039,7 @@ "_postman_previewlanguage": "text" }, { - "id": "a4794eab-f245-4201-b540-52ff8e0c7bcf", + "id": "80409ed0-8b15-4043-b722-12f71509fbcf", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -37084,7 +37084,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d5b5e19f-63fd-4035-a0d6-75680367069b", + "id": "fb1c5dbf-aaea-4eed-a4c1-2e8bcc510556", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -37129,7 +37129,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a82e0397-7e23-43b2-8ddc-b8dbf291f728", + "id": "775fd109-4113-46a9-9bed-c70c6d89b62a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -37174,7 +37174,7 @@ "_postman_previewlanguage": "json" }, { - "id": "01ffa1b3-3bef-4186-a452-28435bcdc015", + "id": "e8f7400d-9acb-48b6-9b2c-4187b71cce7d", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -37219,7 +37219,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9bfc513b-0752-4ebd-94e6-d01ed64433ba", + "id": "47e9503d-b733-4f92-a181-104fc32494a7", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -37264,7 +37264,7 @@ "_postman_previewlanguage": "json" }, { - "id": "634c7f9d-45c3-4122-8d4d-0da8d959c55e", + "id": "a6dc5483-8265-43cb-93dd-e85908dc04b8", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -37321,7 +37321,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": "32b3243f-21e8-4c85-b27f-92b54453d94c", + "id": "3a9446de-a66a-4787-9a21-c8cee3ea1de6", "name": "Reassign Certifications Asynchronously", "request": { "name": "Reassign Certifications Asynchronously", @@ -37376,7 +37376,7 @@ }, "response": [ { - "id": "762bf142-ff3c-4af0-b9a9-c3b04481a50f", + "id": "c7e851a9-6668-4319-b3cc-d0bb60c52364", "name": "A certification task object for the reassignment which can be queried for status.", "originalRequest": { "url": { @@ -37429,12 +37429,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"abcd-ef12-3456\",\n \"certificationId\": \"ef38f94347e94562b5bb8424a56397d8\",\n \"type\": \"REASSIGN\",\n \"status\": \"QUEUED\"\n}", + "body": "{\n \"id\": \"abcd-ef12-3456\",\n \"certificationId\": \"ef38f94347e94562b5bb8424a56397d8\",\n \"type\": \"REASSIGN\",\n \"status\": \"SUCCESS\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d1e9b1f3-674c-4c6e-8e8f-b0a5e6099b52", + "id": "0f6757c8-67a5-4c7b-8d88-3124ad401fe1", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -37492,7 +37492,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b74bb4b6-8096-42b8-8336-5d4029bc5657", + "id": "870c6d78-0960-405e-b7c5-44c0e569cf27", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -37550,7 +37550,7 @@ "_postman_previewlanguage": "json" }, { - "id": "73f2d9b8-f79c-47d2-ba02-66db04a5f694", + "id": "a0e4ab0a-21d7-443e-9486-bc20a3a3e4ff", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -37608,7 +37608,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8217af76-f1e8-40d6-95af-43ef33f554ee", + "id": "0ea4b5e5-d1b8-4c04-a669-d9d70bd7f161", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -37666,7 +37666,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9e2b690b-a78c-40c6-b923-b7a14d99a35c", + "id": "e2669fbe-5fa8-40b8-a4fd-fac571c8498e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -37724,7 +37724,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ef53e168-2db9-4ac0-9a44-5343dab8922f", + "id": "7993c99f-80a2-4d9a-be8e-f56f8ac49c02", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -37788,7 +37788,7 @@ } }, { - "id": "1d1ec1cf-4709-4ee8-a831-00cda9c2c19b", + "id": "48352eca-1820-46e3-9a9f-8a1283ee3642", "name": "Certification Task Status", "request": { "name": "Certification Task Status", @@ -37810,7 +37810,7 @@ "variable": [ { "type": "any", - "value": "labore", + "value": "laborum qui aliquip irure", "key": "id", "disabled": true, "description": { @@ -37820,7 +37820,7 @@ }, { "type": "any", - "value": "labore", + "value": "laborum qui aliquip irure", "key": "taskId", "disabled": true, "description": { @@ -37841,7 +37841,7 @@ }, "response": [ { - "id": "9eb136e1-f9a3-44da-82ca-0682b3b0efae", + "id": "a7873d7a-db2e-4328-973b-91cefd749fbe", "name": "A certification task object.", "originalRequest": { "url": { @@ -37882,12 +37882,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"abcd-ef12-3456\",\n \"certificationId\": \"ef38f94347e94562b5bb8424a56397d8\",\n \"type\": \"REASSIGN\",\n \"status\": \"QUEUED\"\n}", + "body": "{\n \"id\": \"abcd-ef12-3456\",\n \"certificationId\": \"ef38f94347e94562b5bb8424a56397d8\",\n \"type\": \"REASSIGN\",\n \"status\": \"SUCCESS\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ab44ee99-d25c-410b-a027-5988da02036f", + "id": "22bc4f7c-9582-47ab-90e9-d8692d7f68e1", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -37933,7 +37933,7 @@ "_postman_previewlanguage": "json" }, { - "id": "790fd6f0-5e4e-4b17-9c7f-fdbc7dd97b72", + "id": "9f44debe-89ce-402e-b88d-c5b81694441c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -37979,7 +37979,7 @@ "_postman_previewlanguage": "json" }, { - "id": "48e9be3c-b18f-4698-9bc4-b0dcbb3c3214", + "id": "a1f88ac8-9410-4071-9f0d-8a39541e0524", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -38025,7 +38025,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3b2daf96-86aa-4c07-b52f-894c1bc5fd04", + "id": "1d377846-262d-4acb-a96e-695271655588", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -38071,7 +38071,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7b26c2b9-ab21-45e6-af69-7bd6c3cca755", + "id": "29c1977c-c5df-47df-88bc-a16172798af7", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -38117,7 +38117,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1be7b211-1b9e-4436-9511-6896536f6869", + "id": "13dae8fb-f55e-4a82-8557-f494bdca6c6f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -38169,7 +38169,7 @@ } }, { - "id": "5e403eb7-9a06-47a5-a370-4d6fa16fae3c", + "id": "0f939ef6-fbbe-435c-9833-6ea32ea750ca", "name": "Pending Certification Tasks", "request": { "name": "Pending Certification Tasks", @@ -38190,7 +38190,7 @@ "variable": [ { "type": "any", - "value": "labore", + "value": "laborum qui aliquip irure", "key": "id", "disabled": true, "description": { @@ -38211,7 +38211,7 @@ }, "response": [ { - "id": "e9cc0450-7dea-41d4-a314-af95f5c5da5f", + "id": "db163e7c-453d-465f-a5bb-5610fa0e01a0", "name": "A list of pending (`QUEUED` or `IN_PROGRESS`) certification task objects.", "originalRequest": { "url": { @@ -38251,12 +38251,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\": \"QUEUED\"\n },\n {\n \"id\": \"abcd-ef12-3456\",\n \"certificationId\": \"ef38f94347e94562b5bb8424a56397d8\",\n \"type\": \"REASSIGN\",\n \"status\": \"IN_PROGRESS\"\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c57cef99-bb72-467f-99ef-3d2ce8856964", + "id": "4c88d74a-7ae4-4264-bf10-9eef5f7076b2", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -38301,7 +38301,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cf44896c-5229-4840-a54a-f57899d25eb7", + "id": "85c03722-7457-4361-a48e-96124aa2310a", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -38346,7 +38346,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3a021539-b6b6-44ed-823b-ed998af47266", + "id": "63ca85fa-bd70-4b18-bdcf-2b6d59b36d5b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -38391,7 +38391,7 @@ "_postman_previewlanguage": "json" }, { - "id": "af9b9fae-0325-41d7-846d-cf7a2e58d0b3", + "id": "b273afbc-d9fb-43cb-a4a3-c25227c4760b", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -38436,7 +38436,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bb835745-0c5c-4f23-bca3-5f19b3419da4", + "id": "16b09a99-598c-4ce4-8b36-478b273762e6", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -38481,7 +38481,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ac6be7a8-0b73-4cdc-9335-4cd28ce881e9", + "id": "a5170ad0-1473-409a-9109-ec9b0d0a77a4", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -38532,7 +38532,7 @@ } }, { - "id": "656980bc-fe5a-437f-ab9f-aeea8744b6da", + "id": "f67e0486-3462-4090-9be4-e85de1e7caf6", "name": "Permissions for Entitlement Certification Item", "request": { "name": "Permissions for Entitlement Certification Item", @@ -38623,7 +38623,7 @@ }, "response": [ { - "id": "f8ab7020-b4e4-4ab2-b1ac-b62c7f1f2f4b", + "id": "aca05b98-acf8-4b8a-b391-83a74deece35", "name": "A list of permissions associated with the given itemId", "originalRequest": { "url": { @@ -38707,7 +38707,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bff53333-cb18-4135-a7f6-55f314241632", + "id": "2e0903c7-f255-4057-af67-54db3f2a56e8", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -38791,7 +38791,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7789c389-8136-44aa-9a41-241ef63fba15", + "id": "40f43311-4fc9-4775-8212-c0c988a5643e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -38875,7 +38875,7 @@ "_postman_previewlanguage": "json" }, { - "id": "35283c57-a568-4783-8f23-911ea4045cd0", + "id": "89c0a2bb-e961-4240-aa46-0772cfed57ad", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -38959,7 +38959,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5a4d40f2-d50b-4d29-9d9a-9ae910fb2170", + "id": "00ae640a-779d-480e-8fd1-e06486bc0a08", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -39043,7 +39043,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8dd46f82-f3dc-4f77-8ea8-40c3a4665f5a", + "id": "b9537e91-72b7-4c15-bc55-b0fe97ad53e1", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -39127,7 +39127,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1aef7f55-3c76-4001-9ffb-ab624a0cbfef", + "id": "e01d82b9-1321-4388-a155-f7ebf9c0d971", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -39217,7 +39217,7 @@ } }, { - "id": "a662e4c3-21ee-4bf1-87b8-92942b064a32", + "id": "252d192a-2441-4214-a66e-2022ddd1d298", "name": "List of Reviewers for certification", "request": { "name": "List of Reviewers for certification", @@ -39305,7 +39305,7 @@ }, "response": [ { - "id": "54d1dc46-807b-4bd3-9e44-290de190cbdf", + "id": "b8a835f6-4f3e-4083-af91-ff7daa36d9dc", "name": "A list of reviewers", "originalRequest": { "url": { @@ -39396,7 +39396,7 @@ "_postman_previewlanguage": "json" }, { - "id": "51b9a7a7-91d0-414b-91eb-850d988f0668", + "id": "47faf098-ad79-40f1-aea3-f56191ded98b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -39487,7 +39487,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1c43fdb5-8755-419e-b720-853445f64884", + "id": "f5d9e87e-5942-45eb-bb27-28780732a9d6", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -39578,7 +39578,7 @@ "_postman_previewlanguage": "json" }, { - "id": "817e7070-c40d-42ea-b2df-dcf20dabe1fc", + "id": "accb2500-c9f5-4542-a089-517f06404da0", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -39669,7 +39669,7 @@ "_postman_previewlanguage": "json" }, { - "id": "79bc6bc1-833b-4eab-922f-e0f2a0ae9671", + "id": "3e078986-55b5-4360-8e62-160e50cd323d", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -39760,7 +39760,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c1453c48-09a0-4ee6-b8bd-7b5942496135", + "id": "df6922e6-88a3-46be-9c6e-8b272afdec99", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -39851,7 +39851,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5a1b9f55-eb3a-41f3-938c-7be50560456e", + "id": "3f958d4d-b936-4b41-a88c-fb0ee0a71244", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -39954,7 +39954,7 @@ "description": "", "item": [ { - "id": "91872d55-c1aa-4068-8cc3-5adfe67714fc", + "id": "7432038a-a732-4949-9e93-f3cee8e9ec6a", "name": "List Connector Rules", "request": { "name": "List Connector Rules", @@ -39983,7 +39983,7 @@ }, "response": [ { - "id": "35e043f3-46ac-4985-94d7-189b1f7b3924", + "id": "3bdc2d2b-3afa-4615-9c04-4d749eecedd1", "name": "A list of connector rules", "originalRequest": { "url": { @@ -40026,7 +40026,7 @@ "_postman_previewlanguage": "json" }, { - "id": "206dc751-fc2e-48e0-ad45-137800f699e0", + "id": "a910d519-b2fc-4e51-8fc2-800fc1d7493c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -40069,7 +40069,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4d83284c-fbf9-4f81-8852-2da48b8c71f0", + "id": "6978c99f-c248-48b3-8f91-83412e2f1ecb", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -40112,7 +40112,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3d3d614f-e64c-4feb-86c1-ec9481d4c890", + "id": "d9c12942-427e-48f7-9df3-68ee5d2527de", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -40155,7 +40155,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0e6f7f6c-6cc0-4113-b8cd-b7b5a362b05e", + "id": "13da761b-b3e2-40ec-9571-131a1da607ff", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -40198,7 +40198,7 @@ "_postman_previewlanguage": "json" }, { - "id": "939a9392-07ea-4bd5-be71-cd706ec68bd2", + "id": "c611c3ae-6825-43c3-917a-d2cc19579722", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -40247,7 +40247,7 @@ } }, { - "id": "fc49288d-0332-48e7-9256-1ba03922f768", + "id": "19d686d4-cedc-41ec-a30d-6c603bbfbe09", "name": "Create Connector Rule", "request": { "name": "Create Connector Rule", @@ -40289,7 +40289,7 @@ }, "response": [ { - "id": "b1a63ee6-5782-4bb5-a5c0-ff882ccd1543", + "id": "5f5177a8-e632-4965-b2fc-cfa34477b27f", "name": "The created connector rule", "originalRequest": { "url": { @@ -40345,7 +40345,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fdff6325-83fa-449a-8ea8-181f06e0daae", + "id": "86a81496-801b-43cd-a7fd-79e3fe005b9c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -40401,7 +40401,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c9f453a3-4e10-415a-a0af-0ef6995eb92c", + "id": "abff929b-f637-4724-b598-18b779f30131", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -40457,7 +40457,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c1b57567-8e62-4c7e-a841-38aae73f3c80", + "id": "738ff75a-f92e-4fae-9f88-0648cbe02d83", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -40513,7 +40513,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4c0e7b30-0e42-462d-be50-e4bdd80dfea3", + "id": "832ebf8a-8134-4033-876a-e69f92e36fab", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -40569,7 +40569,7 @@ "_postman_previewlanguage": "json" }, { - "id": "138cd259-5a35-45c0-89ec-78630a473122", + "id": "39f76ba8-95b9-4041-a402-3de6000f5a55", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -40631,7 +40631,7 @@ } }, { - "id": "ff11a57e-34fe-4884-ac23-ec211ec8f430", + "id": "dcbda209-abb0-448c-8592-2892d2c786ec", "name": "Connector-Rule by ID", "request": { "name": "Connector-Rule by ID", @@ -40672,7 +40672,7 @@ }, "response": [ { - "id": "9df18163-45b2-4224-b96d-0936fb417f97", + "id": "55639fe7-172e-4597-ba4c-412e931c15f5", "name": "Connector rule with the given ID", "originalRequest": { "url": { @@ -40716,7 +40716,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d81b8d4f-db34-4f7c-a204-7891306e4123", + "id": "3ba4942c-11ec-492a-81ac-1fb78ace6eda", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -40760,7 +40760,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2476ef8b-d354-4785-9fec-8bd89424ff63", + "id": "25885fc8-f4cf-4357-b76a-55c378b22988", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -40804,7 +40804,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b6d0ba39-00f8-4528-859f-e0a9cdce469e", + "id": "ef73548b-e4c5-419f-8eb1-0ab2a0e275f6", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -40848,7 +40848,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9396c5d9-da42-417f-9b4c-44aea70a5abf", + "id": "5ade3ec6-12ab-4405-b2e4-cd31fd59ee9b", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -40892,7 +40892,7 @@ "_postman_previewlanguage": "json" }, { - "id": "34b8009a-03d5-4f68-ac65-e1e4a15b36fd", + "id": "f6d6f76c-0d95-49f9-ace5-34400d30d341", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -40936,7 +40936,7 @@ "_postman_previewlanguage": "json" }, { - "id": "979fa327-636d-4c98-afdf-7c53d5646a60", + "id": "f576520f-ee73-4d9a-87a3-b39567227bf2", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -40986,7 +40986,7 @@ } }, { - "id": "a0dcc339-cbd9-4075-b3ed-f1af53a55268", + "id": "f5ad3ccb-a56a-414f-a501-165846326723", "name": "Update a Connector Rule", "request": { "name": "Update a Connector Rule", @@ -41040,7 +41040,7 @@ }, "response": [ { - "id": "d26e9453-44fc-4e95-9069-2ecf1ebed0da", + "id": "25452bf4-de2f-4ab6-bf4e-cb29b9f7d050", "name": "The updated connector rule", "originalRequest": { "url": { @@ -41097,7 +41097,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b44711da-0c28-4af9-bd0c-f8634c2580c3", + "id": "e20872d0-f7a1-4c68-94c1-9ab9a0f283d3", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -41154,7 +41154,7 @@ "_postman_previewlanguage": "json" }, { - "id": "535d6625-4b92-4865-9f9d-97195eb1390c", + "id": "896c8b56-f514-487c-a91d-e939e4f7077c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -41211,7 +41211,7 @@ "_postman_previewlanguage": "json" }, { - "id": "833d6025-1346-4de9-bc9c-a2aff8ac4ca0", + "id": "55e4016f-dbf8-4f1f-999f-bac086050b51", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -41268,7 +41268,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a17fe603-5fc0-4782-979f-63e06d6abe39", + "id": "c46a12c7-2665-407a-a270-983f1da36ea6", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -41325,7 +41325,7 @@ "_postman_previewlanguage": "json" }, { - "id": "969db3bb-8f76-455b-968b-e18d1c82a4f7", + "id": "d09fe9df-b41f-47b6-81d9-21c76306500e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -41382,7 +41382,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f76cbbae-17d2-4ba4-a059-c95d822b3f20", + "id": "6ab6b854-00e2-4b1b-a56e-74a004f5f114", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -41445,7 +41445,7 @@ } }, { - "id": "3cf8931f-6791-4bcf-a43e-6fd69a157152", + "id": "d12bdaff-eb22-4561-8e58-baec6116b4f4", "name": "Delete a Connector-Rule", "request": { "name": "Delete a Connector-Rule", @@ -41486,7 +41486,7 @@ }, "response": [ { - "id": "27adaf39-86a5-4a48-ab7c-6bc58e0a8f06", + "id": "a87495d9-33d7-4f7d-af98-d6d88461f403", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -41520,7 +41520,7 @@ "_postman_previewlanguage": "text" }, { - "id": "47df982d-3000-4302-93a4-e76d05884e23", + "id": "16e608b1-1c97-4ccb-a564-34ecce938096", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -41564,7 +41564,7 @@ "_postman_previewlanguage": "json" }, { - "id": "578acb70-02cc-4eeb-bced-710b5f025949", + "id": "f8028b57-bb48-4e0f-bcf7-681cbac0c945", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -41608,7 +41608,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7fa27eaa-4058-4beb-bc49-b3b4f2818849", + "id": "f99592bc-a593-4678-9fe9-6e9bd2023a6a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -41652,7 +41652,7 @@ "_postman_previewlanguage": "json" }, { - "id": "836f6d34-06b1-486a-9e95-fefeb8d616cd", + "id": "e60cc3eb-2428-433f-8ea7-014dd32f3af0", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -41696,7 +41696,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7718af97-b916-4448-8078-db1e16621933", + "id": "5eaf3ba8-e002-4eba-a02a-60e9c379584c", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -41740,7 +41740,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9a7d8f33-ce52-433d-a47d-89c771e14f85", + "id": "4ab30577-272b-4bda-ac0b-9652ebb5db68", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -41790,7 +41790,7 @@ } }, { - "id": "e7692dc8-818c-4414-ae00-eb6401bedd61", + "id": "a3969cdb-9652-4ccd-bcc2-52e4bd41fc4a", "name": "Validate Connector Rule", "request": { "name": "Validate Connector Rule", @@ -41833,7 +41833,7 @@ }, "response": [ { - "id": "11610321-a06f-410e-917e-fed24df9868b", + "id": "3f3b4e9c-3c36-4d6c-b21e-69a4a99a1f5a", "name": "The status of the code's eligibility as a connector rule", "originalRequest": { "url": { @@ -41890,7 +41890,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c4acb561-ae5f-494d-b111-5bf420ca9bc0", + "id": "27667615-570a-4fe2-9c5c-7229b683c884", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -41947,7 +41947,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5fc2d9c9-1f04-4cde-b040-e8183c391e47", + "id": "04a39aa6-d2fb-4ce1-97f4-58120dd73d7d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -42004,7 +42004,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5bc71fc3-af6d-4601-967e-c533cead4285", + "id": "dae4e7bc-5653-4ff0-8bc4-0795a86f863c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -42061,7 +42061,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f32bcc9d-4ca7-4821-a4d7-554f607a7a4c", + "id": "c58a28be-b816-471d-9a68-2f4b8dd9d69b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -42118,7 +42118,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e9f335a0-0ffd-4c8e-8c55-2894f21a5ee9", + "id": "c82ea9a4-6321-47ed-a7a3-76121dfb8358", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -42187,7 +42187,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": "e2f0363b-0377-44de-822b-1b620b15dc19", + "id": "518e4ee6-42fa-4284-bf46-ca49c0cd210d", "name": "Gets connector list", "request": { "name": "Gets connector list", @@ -42262,7 +42262,7 @@ }, "response": [ { - "id": "0f924024-d2d4-4790-a3f7-7a668d68f553", + "id": "af152ce0-25e5-4705-a0ea-178c2aae8ed5", "name": "A Connector Dto object", "originalRequest": { "url": { @@ -42351,7 +42351,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6f451dc6-35e0-4b14-8290-55918f8e439d", + "id": "86be5f43-7d2f-45f9-8f04-8cdb9e09c134", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -42440,7 +42440,7 @@ "_postman_previewlanguage": "json" }, { - "id": "48cef331-6cf9-49ef-a7b1-1f55ceca4ac0", + "id": "7153f1c4-0be6-4f16-a60c-adf1d5d97691", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -42529,7 +42529,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8ec31dc2-aed0-4cea-9890-805afbe170e2", + "id": "1b483d05-570e-4d72-a271-bd3c2c9481c1", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -42618,7 +42618,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7a76bb36-3778-4910-85c8-90295d29f348", + "id": "be092c42-3bef-4cee-8476-a0f79588e16c", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -42707,7 +42707,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c7ca5786-0243-4621-97cd-e4f2b0ae0fce", + "id": "2a424ccd-5431-4750-b650-4be47cd76427", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -42796,7 +42796,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a93c85ee-b4ae-4519-b405-4fa5e23f4b7c", + "id": "41ba9d00-cdea-4903-b782-5440e66000b2", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -42897,7 +42897,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": "4e80b8a4-9c09-4553-8437-24ce2fb9b243", + "id": "3fcc50e3-519c-4362-b78d-347afa1a73c7", "name": "Export form definitions by tenant.", "request": { "name": "Export form definitions by tenant.", @@ -42963,7 +42963,7 @@ }, "response": [ { - "id": "45e319d1-98c9-4232-bb1d-c58f7fef2c5a", + "id": "e09725eb-3479-4a8e-b378-6394da5a58af", "name": "Returns a list of form definitions by tenant", "originalRequest": { "url": { @@ -43038,12 +43038,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\": \"MIN_DATE\"\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\": \"TEXTAREA\"\n },\n {\n \"validationType\": \"MIN_DATE\"\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\": \"Excepteur ipsum consectetur tempor dolor\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"dolore ipsum mollit\"\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\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"dolore laboris id sunt\"\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\": \"DATA_SOURCE\"\n },\n {\n \"validationType\": \"PHONE\"\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\": \"MIN_DATE\"\n },\n {\n \"validationType\": \"DATA_SOURCE\"\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 nulla\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"veniam dolor 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\": \"reprehenderit Du\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"et reprehenderit irure\"\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\": \"MIN_DATE\"\n },\n {\n \"validationType\": \"LESS_THAN_DATE\"\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\": \"MAX_DATE\"\n },\n {\n \"validationType\": \"LESS_THAN_DATE\"\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\": \"consectetur reprehenderit tempor consequat\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"ipsum ut sint\"\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\": \"Lorem\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"fugiat ea\"\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\": \"LESS_THAN_DATE\"\n },\n {\n \"validationType\": \"EMAIL\"\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\": \"MIN_DATE\"\n },\n {\n \"validationType\": \"TEXTAREA\"\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\": \"enim nulla reprehende\"\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\": \"magna\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"aliqua sit eiusmod in sunt\"\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": "d0d30eb4-6ad1-4b84-ac1f-f8e3ef14185c", + "id": "960c1e8d-21fe-41d2-9ef6-85180f0cbcfc", "name": "An error with the request occurred", "originalRequest": { "url": { @@ -43118,12 +43118,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"nostrud cupidatat sint reprehenderit\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -39290930,\n \"trackingId\": \"nisi deserunt\"\n}", + "body": "{\n \"detailCode\": \"aliqua in aliquip nisi et\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 95628434,\n \"trackingId\": \"sed Ut sint exer\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "037dfdab-d14a-4c72-b930-bff6c8d66858", + "id": "2547e209-51c3-4d2f-bc75-5da7adfe9084", "name": "An error with the authorization occurred", "originalRequest": { "url": { @@ -43198,12 +43198,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"nostrud cupidatat sint reprehenderit\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -39290930,\n \"trackingId\": \"nisi deserunt\"\n}", + "body": "{\n \"detailCode\": \"aliqua in aliquip nisi et\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 95628434,\n \"trackingId\": \"sed Ut sint exer\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "2b9bbd1a-e986-4b12-b934-3db66d460973", + "id": "53134689-142d-4152-bb6f-6df9ab35057a", "name": "An error with the user permissions occurred", "originalRequest": { "url": { @@ -43278,12 +43278,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"nostrud cupidatat sint reprehenderit\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -39290930,\n \"trackingId\": \"nisi deserunt\"\n}", + "body": "{\n \"detailCode\": \"aliqua in aliquip nisi et\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 95628434,\n \"trackingId\": \"sed Ut sint exer\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "2e62894c-9c66-41f9-8d26-7c598aadf44e", + "id": "027a6be1-fdb9-49f7-ba2e-59fd678584b7", "name": "Too many requests", "originalRequest": { "url": { @@ -43363,7 +43363,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8d45c8f5-9f58-49a6-ad0f-ad982a514791", + "id": "2c410ba7-57e4-42da-8d97-2416dacf3fc1", "name": "An internal server error occurred", "originalRequest": { "url": { @@ -43438,7 +43438,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"nostrud cupidatat sint reprehenderit\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -39290930,\n \"trackingId\": \"nisi deserunt\"\n}", + "body": "{\n \"detailCode\": \"aliqua in aliquip nisi et\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 95628434,\n \"trackingId\": \"sed Ut sint exer\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -43449,7 +43449,7 @@ } }, { - "id": "c975c201-5912-47b9-ab31-819a779d941d", + "id": "69f9557d-1309-45fa-a029-508116375576", "name": "Creates a form definition.", "request": { "name": "Creates a form definition.", @@ -43488,7 +43488,7 @@ }, "response": [ { - "id": "28aecaf2-d71e-4c5a-9644-b86a756c7324", + "id": "5df4b611-2e93-4db2-9c60-4a76dcffaa4a", "name": "Returns a new form definition", "originalRequest": { "url": { @@ -43539,12 +43539,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\": \"MAX_DATE\"\n },\n {\n \"validationType\": \"PHONE\"\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\": \"PHONE\"\n },\n {\n \"validationType\": \"LESS_THAN_DATE\"\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\": \"non magna sint eu ut\"\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\": \"dolore ad labore sed id\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"irure tempor culpa\"\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\": \"REGEX\"\n },\n {\n \"validationType\": \"TEXTAREA\"\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\": \"MAX_DATE\"\n },\n {\n \"validationType\": \"MAX_LENGTH\"\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 nisi deserunt\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"voluptate 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\": \"elit enim Ut\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"nostrud commodo nisi consectetur labore\"\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": "151d2efe-888c-42c7-9022-d5d25a3181dc", + "id": "43248a67-73be-4b6b-83cd-7fce11cd2faa", "name": "An error with the request occurred", "originalRequest": { "url": { @@ -43595,12 +43595,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"nostrud cupidatat sint reprehenderit\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -39290930,\n \"trackingId\": \"nisi deserunt\"\n}", + "body": "{\n \"detailCode\": \"aliqua in aliquip nisi et\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 95628434,\n \"trackingId\": \"sed Ut sint exer\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "bcc1e199-f8b1-4d2e-8f73-18d85af05559", + "id": "1d8e4b78-8768-4de9-9abf-5f7c7d012e26", "name": "An error with the authorization occurred", "originalRequest": { "url": { @@ -43651,12 +43651,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"nostrud cupidatat sint reprehenderit\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -39290930,\n \"trackingId\": \"nisi deserunt\"\n}", + "body": "{\n \"detailCode\": \"aliqua in aliquip nisi et\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 95628434,\n \"trackingId\": \"sed Ut sint exer\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "0c3e3095-a747-4649-93f3-98066391b07d", + "id": "369f0c26-e47d-401c-8a0a-d2b7f086b38f", "name": "An error with the user permissions occurred", "originalRequest": { "url": { @@ -43707,12 +43707,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"nostrud cupidatat sint reprehenderit\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -39290930,\n \"trackingId\": \"nisi deserunt\"\n}", + "body": "{\n \"detailCode\": \"aliqua in aliquip nisi et\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 95628434,\n \"trackingId\": \"sed Ut sint exer\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ed8adecd-bfdb-42c5-9e68-a5bd9d92e514", + "id": "ff4d91b7-ca1c-4b24-8ca4-3d1645e02d64", "name": "Too many requests", "originalRequest": { "url": { @@ -43768,7 +43768,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e9517ae3-3201-4a1b-802a-d00dae0afe53", + "id": "53a01255-f950-4882-a742-26549490a902", "name": "An internal server error occurred", "originalRequest": { "url": { @@ -43819,7 +43819,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"nostrud cupidatat sint reprehenderit\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -39290930,\n \"trackingId\": \"nisi deserunt\"\n}", + "body": "{\n \"detailCode\": \"aliqua in aliquip nisi et\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 95628434,\n \"trackingId\": \"sed Ut sint exer\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -43830,7 +43830,7 @@ } }, { - "id": "bfa17a78-9f09-4a0b-a15e-8db73930a045", + "id": "3e305cee-2977-4254-9488-f5e355d03848", "name": "Return a form definition.", "request": { "name": "Return a form definition.", @@ -43871,7 +43871,7 @@ }, "response": [ { - "id": "e6758366-bda8-4052-b183-9de92e988fba", + "id": "6622f18d-b90f-4070-add5-56ae51cf41ed", "name": "Returns a form definition", "originalRequest": { "url": { @@ -43910,12 +43910,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\": \"MAX_DATE\"\n },\n {\n \"validationType\": \"PHONE\"\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\": \"PHONE\"\n },\n {\n \"validationType\": \"LESS_THAN_DATE\"\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\": \"non magna sint eu ut\"\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\": \"dolore ad labore sed id\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"irure tempor culpa\"\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\": \"REGEX\"\n },\n {\n \"validationType\": \"TEXTAREA\"\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\": \"MAX_DATE\"\n },\n {\n \"validationType\": \"MAX_LENGTH\"\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 nisi deserunt\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"voluptate 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\": \"elit enim Ut\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"nostrud commodo nisi consectetur labore\"\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": "d70a1fcc-91f9-4905-9054-7bb7cfe8dcf2", + "id": "a09291ef-e1d3-4e39-bd38-65f03e90f90e", "name": "An error with the request occurred", "originalRequest": { "url": { @@ -43954,12 +43954,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"sunt sint\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -25810052,\n \"trackingId\": \"laborum minim amet\"\n}", + "body": "{\n \"detailCode\": \"exercitation\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -24231662,\n \"trackingId\": \"laborum deserunt irure nisi id\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "2aa49232-ebc9-4509-8936-10f5ebf2397c", + "id": "155ffcbd-95c4-4f29-bea4-82e4c6de654e", "name": "An error with the authorization occurred", "originalRequest": { "url": { @@ -43998,12 +43998,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"sunt sint\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -25810052,\n \"trackingId\": \"laborum minim amet\"\n}", + "body": "{\n \"detailCode\": \"exercitation\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -24231662,\n \"trackingId\": \"laborum deserunt irure nisi id\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "00b0b2e2-ca31-45a8-a46a-d78a0441a1b2", + "id": "05cc4453-dadf-4945-bba1-e861368bfaf9", "name": "An error with the user permissions occurred", "originalRequest": { "url": { @@ -44042,12 +44042,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"sunt sint\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -25810052,\n \"trackingId\": \"laborum minim amet\"\n}", + "body": "{\n \"detailCode\": \"exercitation\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -24231662,\n \"trackingId\": \"laborum deserunt irure nisi id\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f1149009-a1b5-4888-82bf-3ece6bd3dd2f", + "id": "99f2ba75-61c7-4f68-b192-32d45f9dc165", "name": "An error with the item not found", "originalRequest": { "url": { @@ -44086,12 +44086,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"sunt sint\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -25810052,\n \"trackingId\": \"laborum minim amet\"\n}", + "body": "{\n \"detailCode\": \"exercitation\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -24231662,\n \"trackingId\": \"laborum deserunt irure nisi id\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "16c977cf-576e-40d3-9f45-b420280735e7", + "id": "317b1573-0887-4f81-a169-3ef7a5c981e3", "name": "Too many requests", "originalRequest": { "url": { @@ -44135,7 +44135,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3232f9b0-99d5-407b-aaae-400b1d178c09", + "id": "5f213149-3f5f-473c-8b66-04246d46471d", "name": "An internal server error occurred", "originalRequest": { "url": { @@ -44174,7 +44174,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"sunt sint\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -25810052,\n \"trackingId\": \"laborum minim amet\"\n}", + "body": "{\n \"detailCode\": \"exercitation\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -24231662,\n \"trackingId\": \"laborum deserunt irure nisi id\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -44185,7 +44185,7 @@ } }, { - "id": "c0999180-4fa6-434d-a039-e30118c6ec5d", + "id": "f1162301-8a22-4984-97d1-c7881031cd60", "name": "Deletes a form definition.", "request": { "name": "Deletes a form definition.", @@ -44226,7 +44226,7 @@ }, "response": [ { - "id": "0401c3ee-167f-461d-bbae-8c087cb7c973", + "id": "cd13dbec-dc24-4d8e-8dc9-6be2eb14338d", "name": "Returns an empty body", "originalRequest": { "url": { @@ -44270,7 +44270,7 @@ "_postman_previewlanguage": "json" }, { - "id": "55302933-aa4f-4374-a742-6f654d13e44b", + "id": "fc467967-20df-4bb6-89e5-eb108cfd4565", "name": "An error with the request occurred", "originalRequest": { "url": { @@ -44309,12 +44309,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"sunt sint\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -25810052,\n \"trackingId\": \"laborum minim amet\"\n}", + "body": "{\n \"detailCode\": \"exercitation\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -24231662,\n \"trackingId\": \"laborum deserunt irure nisi id\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b477ece2-f258-45fe-9dc8-f46067ec6349", + "id": "b9600e45-f857-4aae-bce6-776a1cc60ed0", "name": "An error with the authorization occurred", "originalRequest": { "url": { @@ -44353,12 +44353,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"sunt sint\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -25810052,\n \"trackingId\": \"laborum minim amet\"\n}", + "body": "{\n \"detailCode\": \"exercitation\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -24231662,\n \"trackingId\": \"laborum deserunt irure nisi id\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "87cf4ac5-8772-4cde-a757-ed8671836dd8", + "id": "88073a92-dadb-4038-b5f6-595a79e761da", "name": "An error with the user permissions occurred", "originalRequest": { "url": { @@ -44397,12 +44397,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"sunt sint\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -25810052,\n \"trackingId\": \"laborum minim amet\"\n}", + "body": "{\n \"detailCode\": \"exercitation\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -24231662,\n \"trackingId\": \"laborum deserunt irure nisi id\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "74c9b891-34fd-4a54-8d8c-5ae213a16423", + "id": "19b45efb-f6dd-41cb-8eb1-6475782bad83", "name": "An error with the item not found", "originalRequest": { "url": { @@ -44441,12 +44441,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"sunt sint\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -25810052,\n \"trackingId\": \"laborum minim amet\"\n}", + "body": "{\n \"detailCode\": \"exercitation\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -24231662,\n \"trackingId\": \"laborum deserunt irure nisi id\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b98c5774-0706-4aef-a3c9-22c5f901cd53", + "id": "6bc4c0b6-3797-483b-8595-d84def54829f", "name": "Too many requests", "originalRequest": { "url": { @@ -44490,7 +44490,7 @@ "_postman_previewlanguage": "json" }, { - "id": "59a914bb-4da7-43c1-bf66-c85f96b2741f", + "id": "b7218682-f971-481a-850c-4d82471bcd90", "name": "An internal server error occurred", "originalRequest": { "url": { @@ -44529,7 +44529,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"sunt sint\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -25810052,\n \"trackingId\": \"laborum minim amet\"\n}", + "body": "{\n \"detailCode\": \"exercitation\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -24231662,\n \"trackingId\": \"laborum deserunt irure nisi id\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -44540,7 +44540,7 @@ } }, { - "id": "d7771105-225d-408a-b24b-1e36894ac1e9", + "id": "14c31560-64ed-4f82-b7f7-00e002073df8", "name": "Patch a form definition.", "request": { "name": "Patch a form definition.", @@ -44594,7 +44594,7 @@ }, "response": [ { - "id": "39538ad6-d39d-4d97-b44c-b1eeeea0ae36", + "id": "505f6c98-d15f-44f9-85c2-a075bc2d5a03", "name": "Returns the form definition updated", "originalRequest": { "url": { @@ -44646,12 +44646,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\": \"MAX_DATE\"\n },\n {\n \"validationType\": \"PHONE\"\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\": \"PHONE\"\n },\n {\n \"validationType\": \"LESS_THAN_DATE\"\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\": \"non magna sint eu ut\"\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\": \"dolore ad labore sed id\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"irure tempor culpa\"\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\": \"REGEX\"\n },\n {\n \"validationType\": \"TEXTAREA\"\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\": \"MAX_DATE\"\n },\n {\n \"validationType\": \"MAX_LENGTH\"\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 nisi deserunt\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"voluptate 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\": \"elit enim Ut\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"nostrud commodo nisi consectetur labore\"\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": "5361684d-d83b-4b24-8dab-0a897aec97f7", + "id": "db557f2d-5bda-4de6-b951-f2fac1b7978f", "name": "An error with the request occurred", "originalRequest": { "url": { @@ -44703,12 +44703,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"sunt sint\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -25810052,\n \"trackingId\": \"laborum minim amet\"\n}", + "body": "{\n \"detailCode\": \"exercitation\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -24231662,\n \"trackingId\": \"laborum deserunt irure nisi id\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "12630607-a247-4aac-b520-b653f35d68c8", + "id": "7c027e07-5afc-4940-94e4-db2afd7acd42", "name": "An error with the authorization occurred", "originalRequest": { "url": { @@ -44760,12 +44760,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"sunt sint\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -25810052,\n \"trackingId\": \"laborum minim amet\"\n}", + "body": "{\n \"detailCode\": \"exercitation\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -24231662,\n \"trackingId\": \"laborum deserunt irure nisi id\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "7bdb4a85-56a3-4197-982a-a1978dd2ea5a", + "id": "9a99aa4b-c004-405a-90eb-4e977c5d41ce", "name": "An error with the user permissions occurred", "originalRequest": { "url": { @@ -44817,12 +44817,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"sunt sint\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -25810052,\n \"trackingId\": \"laborum minim amet\"\n}", + "body": "{\n \"detailCode\": \"exercitation\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -24231662,\n \"trackingId\": \"laborum deserunt irure nisi id\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "1eb01ff0-555d-4abf-b3b7-b07d8adf87ac", + "id": "494e3577-f163-45e8-b12c-5b1f080cf279", "name": "An error with the user permissions occurred", "originalRequest": { "url": { @@ -44874,12 +44874,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"sunt sint\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -25810052,\n \"trackingId\": \"laborum minim amet\"\n}", + "body": "{\n \"detailCode\": \"exercitation\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -24231662,\n \"trackingId\": \"laborum deserunt irure nisi id\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "16b4d54a-fb03-4189-99c5-9e737b9bf4af", + "id": "7a8c0d3b-6640-4966-9dbb-bccb7f67595a", "name": "Too many requests", "originalRequest": { "url": { @@ -44936,7 +44936,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c76182d4-7b6a-4e4c-b7da-c57d97a46155", + "id": "eeaff56c-81c2-49ea-9cb6-035d4e0a1f0d", "name": "An internal server error occurred", "originalRequest": { "url": { @@ -44988,7 +44988,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"sunt sint\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -25810052,\n \"trackingId\": \"laborum minim amet\"\n}", + "body": "{\n \"detailCode\": \"exercitation\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -24231662,\n \"trackingId\": \"laborum deserunt irure nisi id\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -44999,7 +44999,7 @@ } }, { - "id": "3906a6c1-41bb-40a7-95a3-d42a6d51355f", + "id": "4b2c74b9-e1b5-4bae-971f-65c369805815", "name": "Preview form definition data source.", "request": { "name": "Preview form definition data source.", @@ -45079,7 +45079,7 @@ }, "response": [ { - "id": "c44bea64-21cb-4bae-a00e-75e832739d80", + "id": "47ed50f8-9445-44f8-8c74-3f5361389333", "name": "Returns a preview of a form definition data source", "originalRequest": { "url": { @@ -45165,7 +45165,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4f99d892-5fd4-4421-9714-f77e0bb61c2f", + "id": "5ec7b9f1-2caf-4b6b-9ae0-795e8aff713f", "name": "An error with the request occurred", "originalRequest": { "url": { @@ -45246,12 +45246,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"sunt sint\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -25810052,\n \"trackingId\": \"laborum minim amet\"\n}", + "body": "{\n \"detailCode\": \"exercitation\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -24231662,\n \"trackingId\": \"laborum deserunt irure nisi id\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "fd205d70-fffa-4ac4-ae8b-6f21fd72a982", + "id": "d65b807c-a546-4c44-bd1c-5e91877442d3", "name": "An error with the authorization occurred", "originalRequest": { "url": { @@ -45332,12 +45332,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"sunt sint\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -25810052,\n \"trackingId\": \"laborum minim amet\"\n}", + "body": "{\n \"detailCode\": \"exercitation\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -24231662,\n \"trackingId\": \"laborum deserunt irure nisi id\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "77673c37-564d-46e9-8823-6315fc5ca3a2", + "id": "2f316cc0-0a44-4dad-8252-1f9d079e859b", "name": "An error with the user permissions occurred", "originalRequest": { "url": { @@ -45418,12 +45418,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"sunt sint\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -25810052,\n \"trackingId\": \"laborum minim amet\"\n}", + "body": "{\n \"detailCode\": \"exercitation\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -24231662,\n \"trackingId\": \"laborum deserunt irure nisi id\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "8c19190f-bf37-46e0-a548-b668ce543ed0", + "id": "df3b141c-d157-4d73-b940-c23ab813efe5", "name": "An error with the item not found", "originalRequest": { "url": { @@ -45504,12 +45504,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"sunt sint\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -25810052,\n \"trackingId\": \"laborum minim amet\"\n}", + "body": "{\n \"detailCode\": \"exercitation\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -24231662,\n \"trackingId\": \"laborum deserunt irure nisi id\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "81ce6202-9431-44f0-af22-4e6a1dbe2740", + "id": "343fdbe4-64b6-428b-8278-d3e0b3e152c6", "name": "Too many requests", "originalRequest": { "url": { @@ -45595,7 +45595,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2dfb3a4e-86cc-4cd4-86a7-c62bb3632405", + "id": "eb4b6255-6d4a-4ab0-8b16-ac00fed91a99", "name": "An internal server error occurred", "originalRequest": { "url": { @@ -45676,7 +45676,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"sunt sint\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -25810052,\n \"trackingId\": \"laborum minim amet\"\n}", + "body": "{\n \"detailCode\": \"exercitation\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -24231662,\n \"trackingId\": \"laborum deserunt irure nisi id\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -45687,7 +45687,7 @@ } }, { - "id": "83351a94-956a-4e84-b16b-e8a5e26ed849", + "id": "c6301ea9-8392-4c1d-b1b1-ce046cd44338", "name": "List form definitions by tenant.", "request": { "name": "List form definitions by tenant.", @@ -45754,7 +45754,7 @@ }, "response": [ { - "id": "6cbb198e-03b0-460e-8d20-debdad2e11af", + "id": "4c184ce4-fd4e-4d16-8c84-c56ed3608221", "name": "Returns a list of form definition objects by tenant used by SP-Config", "originalRequest": { "url": { @@ -45830,12 +45830,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\": \"MIN_DATE\"\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\": \"MAX_DATE\"\n },\n {\n \"validationType\": \"MIN_DATE\"\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\": \"qui ullamco minim amet\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"ea labore ad commodo\"\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\": \"do Lorem\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"non est dolor\"\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\": -74459582\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\": \"MAX_DATE\"\n },\n {\n \"validationType\": \"MIN_LENGTH\"\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\": \"TEXTAREA\"\n },\n {\n \"validationType\": \"DATE\"\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\": \"veniam cupidatat\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"amet ea 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\": \"aliquip Lorem aute\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"sed exercitation nulla\"\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\": -13328589\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\": \"MAX_LENGTH\"\n },\n {\n \"validationType\": \"MIN_DATE\"\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\": \"LESS_THAN_DATE\"\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\": \"nostrud mollit\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"amet do\"\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\": \"dolo\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"ex eu nostrud\"\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\": -56801200\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\": \"PHONE\"\n },\n {\n \"validationType\": \"MIN_DATE\"\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\": \"EMAIL\"\n },\n {\n \"validationType\": \"EMAIL\"\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\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"dolore labore officia\"\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 labore\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"veniam in\"\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\": -67742445\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "10ff5b4a-b052-4ee9-921e-31f6ba42f2f2", + "id": "0c7f218b-8258-4a91-9aa0-8506111a1b68", "name": "An error with the request occurred", "originalRequest": { "url": { @@ -45911,12 +45911,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"sunt sint\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -25810052,\n \"trackingId\": \"laborum minim amet\"\n}", + "body": "{\n \"detailCode\": \"exercitation\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -24231662,\n \"trackingId\": \"laborum deserunt irure nisi id\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "36e1b993-8436-4204-abde-80468561b990", + "id": "f5b78ff0-c277-49af-a62a-b0398ec1e41d", "name": "An error with the authorization occurred", "originalRequest": { "url": { @@ -45992,12 +45992,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"sunt sint\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -25810052,\n \"trackingId\": \"laborum minim amet\"\n}", + "body": "{\n \"detailCode\": \"exercitation\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -24231662,\n \"trackingId\": \"laborum deserunt irure nisi id\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "55eb1f21-57a4-47cb-bdf5-d79b96fa3e66", + "id": "8d90e7ee-599d-4dc9-bddf-0cdad39d42cc", "name": "An error with the user permissions occurred", "originalRequest": { "url": { @@ -46073,12 +46073,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"sunt sint\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -25810052,\n \"trackingId\": \"laborum minim amet\"\n}", + "body": "{\n \"detailCode\": \"exercitation\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -24231662,\n \"trackingId\": \"laborum deserunt irure nisi id\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "9c91b07a-c9ba-4bd7-9b2a-053023e6bbbe", + "id": "c8493587-ccf4-40de-abc0-88a2a8d5826d", "name": "Too many requests", "originalRequest": { "url": { @@ -46159,7 +46159,7 @@ "_postman_previewlanguage": "json" }, { - "id": "84077f53-e2ae-4de9-90a7-364eb7193ec8", + "id": "6498e9e2-a795-458c-bdbb-afe56b485a94", "name": "An internal server error occurred", "originalRequest": { "url": { @@ -46235,7 +46235,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"sunt sint\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -25810052,\n \"trackingId\": \"laborum minim amet\"\n}", + "body": "{\n \"detailCode\": \"exercitation\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -24231662,\n \"trackingId\": \"laborum deserunt irure nisi id\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -46246,7 +46246,7 @@ } }, { - "id": "43fbd824-c7ad-41de-a8cd-da03b6291509", + "id": "6dce6a7c-79a6-4dac-93ef-ca08a6a8a32f", "name": "Generate JSON Schema dynamically.", "request": { "name": "Generate JSON Schema dynamically.", @@ -46286,7 +46286,7 @@ }, "response": [ { - "id": "5fba4247-3c25-4e30-a0b7-22e5d70cfe3f", + "id": "ff76d28a-e08d-4e6c-accf-f5c35d54548e", "name": "Returns a form elements dynamic schema", "originalRequest": { "url": { @@ -46343,7 +46343,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8e10a45e-0fa4-45ae-a1e4-d73d942df589", + "id": "b56affbd-ced9-4623-9909-30f0dee1442a", "name": "An error with the request occurred", "originalRequest": { "url": { @@ -46395,12 +46395,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"sunt sint\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -25810052,\n \"trackingId\": \"laborum minim amet\"\n}", + "body": "{\n \"detailCode\": \"exercitation\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -24231662,\n \"trackingId\": \"laborum deserunt irure nisi id\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "2242bda4-13b2-4437-8590-830511d9a897", + "id": "7c7bc22b-1cca-4a87-bc18-216694c627db", "name": "An error with the authorization occurred", "originalRequest": { "url": { @@ -46452,12 +46452,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"sunt sint\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -25810052,\n \"trackingId\": \"laborum minim amet\"\n}", + "body": "{\n \"detailCode\": \"exercitation\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -24231662,\n \"trackingId\": \"laborum deserunt irure nisi id\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ba7e3514-c5a6-470b-a335-09ca8c1a3372", + "id": "fbc12128-cc81-4fcd-a118-1f51513b4d4c", "name": "An error with the user permissions occurred", "originalRequest": { "url": { @@ -46509,12 +46509,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"sunt sint\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -25810052,\n \"trackingId\": \"laborum minim amet\"\n}", + "body": "{\n \"detailCode\": \"exercitation\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -24231662,\n \"trackingId\": \"laborum deserunt irure nisi id\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "acde8a68-7e76-404e-94d7-f441afb6684d", + "id": "1ca7f63f-8ec4-4516-add2-9d235abfb76d", "name": "An error with the item not found", "originalRequest": { "url": { @@ -46566,12 +46566,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"sunt sint\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -25810052,\n \"trackingId\": \"laborum minim amet\"\n}", + "body": "{\n \"detailCode\": \"exercitation\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -24231662,\n \"trackingId\": \"laborum deserunt irure nisi id\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b2395034-0fc8-4c3b-a026-3e053c78189f", + "id": "60294aff-e22d-4c8c-ae3c-b47007e7ce45", "name": "Too many requests", "originalRequest": { "url": { @@ -46628,7 +46628,7 @@ "_postman_previewlanguage": "json" }, { - "id": "552dbd96-8957-4bd0-99dc-82ef67b9340e", + "id": "8bd60e98-25b0-42b3-9234-0c8e27728a34", "name": "An internal server error occurred", "originalRequest": { "url": { @@ -46680,7 +46680,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"sunt sint\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -25810052,\n \"trackingId\": \"laborum minim amet\"\n}", + "body": "{\n \"detailCode\": \"exercitation\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -24231662,\n \"trackingId\": \"laborum deserunt irure nisi id\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -46691,7 +46691,7 @@ } }, { - "id": "3c28b214-20c6-4d54-8d8e-4c4c2ac8c136", + "id": "bc507522-d60b-4c42-86c2-e5934645b0d7", "name": "Import form definitions from export.", "request": { "name": "Import form definitions from export.", @@ -46731,7 +46731,7 @@ }, "response": [ { - "id": "c7602009-62a5-4460-9ffc-279c2ecc25dd", + "id": "2f5680ac-6a95-43e8-a5f9-e63d7dbf9417", "name": "Returns statuses of those form definition objects imported", "originalRequest": { "url": { @@ -46783,12 +46783,12 @@ "value": "application/json" } ], - "body": "{\n \"errors\": [\n {\n \"detail\": {\n \"deserunt_0f\": {},\n \"consequat_a3c\": {},\n \"dolore1cf\": {},\n \"reprehenderitac2\": {}\n },\n \"key\": \"Ut quis\",\n \"text\": \"est aute\"\n },\n {\n \"detail\": {\n \"amet_9d\": {},\n \"aliquipf\": {},\n \"amet_b0\": {}\n },\n \"key\": \"et nulla in cupidatat ullamco\",\n \"text\": \"do reprehenderit\"\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\": \"MIN_DATE\"\n },\n {\n \"validationType\": \"REGEX\"\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\": \"MAX_DATE\"\n },\n {\n \"validationType\": \"PHONE\"\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\": \"incididunt\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"aliquip Lorem 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\": \"qu\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"ex laboris\"\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\": -52814754\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\": \"MAX_LENGTH\"\n },\n {\n \"validationType\": \"EMAIL\"\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\": \"EMAIL\"\n },\n {\n \"validationType\": \"MAX_DATE\"\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\": \"ex qui\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"fugiat proident incididunt anim\"\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\": \"cupidatat commodo\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"tempor esse minim aliquip dolor\"\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\": -3104411\n }\n ],\n \"infos\": [\n {\n \"detail\": {\n \"laboris_e\": {}\n },\n \"key\": \"nisi laborum amet\",\n \"text\": \"nulla cillum Excepteur elit\"\n },\n {\n \"detail\": {\n \"nisif_8\": {}\n },\n \"key\": \"nisi\",\n \"text\": \"veniam irure laboris\"\n }\n ],\n \"warnings\": [\n {\n \"detail\": {\n \"Excepteur01f\": {},\n \"anim_0\": {},\n \"mollit0\": {},\n \"sint_e\": {}\n },\n \"key\": \"consequat\",\n \"text\": \"dolore exercitation\"\n },\n {\n \"detail\": {\n \"veniam_95\": {}\n },\n \"key\": \"incididunt sint\",\n \"text\": \"Lorem fugiat aliquip dolor\"\n }\n ]\n}", + "body": "{\n \"errors\": [\n {\n \"detail\": {\n \"esse_08\": {}\n },\n \"key\": \"nisi quis ut\",\n \"text\": \"pariatur dolor\"\n },\n {\n \"detail\": {\n \"elitbf\": {},\n \"nostrud240\": {},\n \"eiusmod_7\": {},\n \"elitd0\": {}\n },\n \"key\": \"quis aliquip minim anim consequat\",\n \"text\": \"sint amet aute dolore\"\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\": \"DATA_SOURCE\"\n },\n {\n \"validationType\": \"DATE\"\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\": \"REGEX\"\n },\n {\n \"validationType\": \"MIN_LENGTH\"\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\": \"ipsum eiusmod Lorem deserunt\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"anim non nisi 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\": \"aliqua elit\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"commodo labore\"\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\": 2131852\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\": \"DATE\"\n },\n {\n \"validationType\": \"PHONE\"\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\": \"DATE\"\n },\n {\n \"validationType\": \"PHONE\"\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 labore officia amet\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"enim id sed 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\": \"amet\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"mollit reprehenderit Excepteur 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\": 59384602\n }\n ],\n \"infos\": [\n {\n \"detail\": {\n \"est_9_\": {},\n \"proident34\": {},\n \"laboree6_\": {},\n \"nond8\": {}\n },\n \"key\": \"velit\",\n \"text\": \"ea nulla\"\n },\n {\n \"detail\": {\n \"ex_aef\": {}\n },\n \"key\": \"nostrud ut est\",\n \"text\": \"tempor officia Lorem\"\n }\n ],\n \"warnings\": [\n {\n \"detail\": {\n \"consectetur_95\": {}\n },\n \"key\": \"voluptate\",\n \"text\": \"consectetur aliquip\"\n },\n {\n \"detail\": {\n \"Lorem_d\": {}\n },\n \"key\": \"dolore enim elit qui\",\n \"text\": \"veniam\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "dbda8b9a-e49f-463a-86a2-a128ba3d4748", + "id": "68f8aa54-9f92-42d8-9849-be023bd7b3ba", "name": "An error with the request occurred", "originalRequest": { "url": { @@ -46840,12 +46840,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"sunt sint\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -25810052,\n \"trackingId\": \"laborum minim amet\"\n}", + "body": "{\n \"detailCode\": \"exercitation\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -24231662,\n \"trackingId\": \"laborum deserunt irure nisi id\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c661fa2d-e22d-4e12-8e3a-2a48670da5ec", + "id": "b2993eb4-3074-4cb1-b3e8-72f3d949c31a", "name": "An error with the authorization occurred", "originalRequest": { "url": { @@ -46897,12 +46897,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"sunt sint\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -25810052,\n \"trackingId\": \"laborum minim amet\"\n}", + "body": "{\n \"detailCode\": \"exercitation\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -24231662,\n \"trackingId\": \"laborum deserunt irure nisi id\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d5364b4c-46a5-41f7-a72e-566d50af20cc", + "id": "a87ed821-7de0-42ee-9032-70673e1edc51", "name": "An error with the user permissions occurred", "originalRequest": { "url": { @@ -46954,12 +46954,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"sunt sint\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -25810052,\n \"trackingId\": \"laborum minim amet\"\n}", + "body": "{\n \"detailCode\": \"exercitation\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -24231662,\n \"trackingId\": \"laborum deserunt irure nisi id\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ec89d998-0732-4e35-908e-1a5531987069", + "id": "b4d935c0-173c-4588-8112-43b7f9334549", "name": "Too many requests", "originalRequest": { "url": { @@ -47016,7 +47016,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b605279e-da1a-448d-bf04-36e0479c6020", + "id": "38a2e7c7-3054-42e4-9953-6324b68fd803", "name": "An internal server error occurred", "originalRequest": { "url": { @@ -47068,7 +47068,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"sunt sint\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -25810052,\n \"trackingId\": \"laborum minim amet\"\n}", + "body": "{\n \"detailCode\": \"exercitation\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -24231662,\n \"trackingId\": \"laborum deserunt irure nisi id\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -47079,7 +47079,7 @@ } }, { - "id": "f51de55a-21b0-4720-85ff-55e05eb87d46", + "id": "cc7de579-70b5-415b-beaf-90f3699fe46b", "name": "Upload new form definition file.", "request": { "name": "Upload new form definition file.", @@ -47130,7 +47130,7 @@ "type": "text/plain" }, "key": "file", - "value": "Ut aliquip reprehenderit", + "value": "id", "type": "text", "contentType": "image/png, image/jpeg" } @@ -47139,7 +47139,7 @@ }, "response": [ { - "id": "54c9914c-6b66-4b2f-be5e-965b50e57cd7", + "id": "a928957e-9688-4907-ac43-d8a52aab4a4c", "name": "Returns a new form definition file", "originalRequest": { "url": { @@ -47182,7 +47182,7 @@ "type": "text/plain" }, "key": "file", - "value": "Ut aliquip reprehenderit", + "value": "id", "type": "text", "contentType": "image/png, image/jpeg" } @@ -47202,7 +47202,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e3ebeee5-60b8-446c-9951-3eeacf53b9f0", + "id": "765b7b42-ce59-4cd1-aed5-58f541e9cf1f", "name": "An error with the request occurred", "originalRequest": { "url": { @@ -47245,7 +47245,7 @@ "type": "text/plain" }, "key": "file", - "value": "Ut aliquip reprehenderit", + "value": "id", "type": "text", "contentType": "image/png, image/jpeg" } @@ -47260,12 +47260,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"sunt sint\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -25810052,\n \"trackingId\": \"laborum minim amet\"\n}", + "body": "{\n \"detailCode\": \"exercitation\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -24231662,\n \"trackingId\": \"laborum deserunt irure nisi id\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b7fa9711-aafc-441a-88dc-21f41e5397ce", + "id": "c81c091d-174a-43d1-a713-aa56aaa617ab", "name": "An error with the authorization occurred", "originalRequest": { "url": { @@ -47308,7 +47308,7 @@ "type": "text/plain" }, "key": "file", - "value": "Ut aliquip reprehenderit", + "value": "id", "type": "text", "contentType": "image/png, image/jpeg" } @@ -47323,12 +47323,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"sunt sint\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -25810052,\n \"trackingId\": \"laborum minim amet\"\n}", + "body": "{\n \"detailCode\": \"exercitation\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -24231662,\n \"trackingId\": \"laborum deserunt irure nisi id\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "081e0a0d-5690-431f-918d-6bf86914ea42", + "id": "aa9a129d-83a9-463d-b610-77d092274824", "name": "An error with the user permissions occurred", "originalRequest": { "url": { @@ -47371,7 +47371,7 @@ "type": "text/plain" }, "key": "file", - "value": "Ut aliquip reprehenderit", + "value": "id", "type": "text", "contentType": "image/png, image/jpeg" } @@ -47386,12 +47386,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"sunt sint\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -25810052,\n \"trackingId\": \"laborum minim amet\"\n}", + "body": "{\n \"detailCode\": \"exercitation\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -24231662,\n \"trackingId\": \"laborum deserunt irure nisi id\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "9257b51e-6b2b-4ebd-93c3-3d2bb7f3ffb7", + "id": "820bd010-0a3d-4301-8db1-40f269a05994", "name": "An error with the item not found", "originalRequest": { "url": { @@ -47434,7 +47434,7 @@ "type": "text/plain" }, "key": "file", - "value": "Ut aliquip reprehenderit", + "value": "id", "type": "text", "contentType": "image/png, image/jpeg" } @@ -47449,12 +47449,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"sunt sint\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -25810052,\n \"trackingId\": \"laborum minim amet\"\n}", + "body": "{\n \"detailCode\": \"exercitation\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -24231662,\n \"trackingId\": \"laborum deserunt irure nisi id\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d1e1afc0-b407-4b1a-9f03-aa07a32d1736", + "id": "12f82d24-1444-493e-9af2-b13236b6a460", "name": "An error with payload size too large", "originalRequest": { "url": { @@ -47497,7 +47497,7 @@ "type": "text/plain" }, "key": "file", - "value": "Ut aliquip reprehenderit", + "value": "id", "type": "text", "contentType": "image/png, image/jpeg" } @@ -47512,12 +47512,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"sunt sint\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -25810052,\n \"trackingId\": \"laborum minim amet\"\n}", + "body": "{\n \"detailCode\": \"exercitation\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -24231662,\n \"trackingId\": \"laborum deserunt irure nisi id\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "316e9391-6784-4fd8-baab-6850de02c547", + "id": "6c820d45-a39b-457c-b034-49d9a1ec2813", "name": "An error with unsupported media type", "originalRequest": { "url": { @@ -47560,7 +47560,7 @@ "type": "text/plain" }, "key": "file", - "value": "Ut aliquip reprehenderit", + "value": "id", "type": "text", "contentType": "image/png, image/jpeg" } @@ -47575,12 +47575,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"sunt sint\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -25810052,\n \"trackingId\": \"laborum minim amet\"\n}", + "body": "{\n \"detailCode\": \"exercitation\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -24231662,\n \"trackingId\": \"laborum deserunt irure nisi id\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "06217baa-e7c3-4083-87ff-cd2bbdee62b0", + "id": "ae32b09d-ebb8-442f-ab26-9e15a1ed141c", "name": "Too many requests", "originalRequest": { "url": { @@ -47623,7 +47623,7 @@ "type": "text/plain" }, "key": "file", - "value": "Ut aliquip reprehenderit", + "value": "id", "type": "text", "contentType": "image/png, image/jpeg" } @@ -47643,7 +47643,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1a28b4e8-59f3-4a9b-a4ca-cda817fd5d11", + "id": "f568da56-499e-45a3-8788-fddc5f7376f6", "name": "An internal server error occurred", "originalRequest": { "url": { @@ -47686,7 +47686,7 @@ "type": "text/plain" }, "key": "file", - "value": "Ut aliquip reprehenderit", + "value": "id", "type": "text", "contentType": "image/png, image/jpeg" } @@ -47701,12 +47701,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"sunt sint\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -25810052,\n \"trackingId\": \"laborum minim amet\"\n}", + "body": "{\n \"detailCode\": \"exercitation\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -24231662,\n \"trackingId\": \"laborum deserunt irure nisi id\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "2004ca14-6f48-4c85-9e5e-8079f492974a", + "id": "e5d6a2c4-65dd-46ad-be6f-de0e93640536", "name": "An external service is not available", "originalRequest": { "url": { @@ -47749,7 +47749,7 @@ "type": "text/plain" }, "key": "file", - "value": "Ut aliquip reprehenderit", + "value": "id", "type": "text", "contentType": "image/png, image/jpeg" } @@ -47764,7 +47764,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"sunt sint\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -25810052,\n \"trackingId\": \"laborum minim amet\"\n}", + "body": "{\n \"detailCode\": \"exercitation\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -24231662,\n \"trackingId\": \"laborum deserunt irure nisi id\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -47775,7 +47775,7 @@ } }, { - "id": "1502b24d-1abc-4cca-a4b2-9d63ded03c23", + "id": "ca1c38b2-f79b-49a7-83a0-f6f03dece912", "name": "Download definition file by fileId.", "request": { "name": "Download definition file by fileId.", @@ -47825,7 +47825,7 @@ }, "response": [ { - "id": "22fd9a38-2d90-4920-8b44-1f92d8db15e7", + "id": "18a1798f-c323-47ea-b70b-834d0e794d98", "name": "Returns a file that is referred to by fileID and associated with the formDefinitionID", "originalRequest": { "url": { @@ -47866,12 +47866,12 @@ "value": "application/json" } ], - "body": "labore", + "body": "laborum qui aliquip irure", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d57d28f3-58c6-4f0a-b4a0-ba980777c991", + "id": "271c6d19-01d4-4546-ab94-d9cb5957aa34", "name": "An error with the request occurred", "originalRequest": { "url": { @@ -47912,12 +47912,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"sunt sint\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -25810052,\n \"trackingId\": \"laborum minim amet\"\n}", + "body": "{\n \"detailCode\": \"exercitation\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -24231662,\n \"trackingId\": \"laborum deserunt irure nisi id\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c6884b46-579a-4c60-b14d-d38c9c305089", + "id": "5b88ccbd-8874-47a3-af09-891abfe8931c", "name": "An error with the authorization occurred", "originalRequest": { "url": { @@ -47958,12 +47958,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"sunt sint\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -25810052,\n \"trackingId\": \"laborum minim amet\"\n}", + "body": "{\n \"detailCode\": \"exercitation\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -24231662,\n \"trackingId\": \"laborum deserunt irure nisi id\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "cc162b17-6c65-4cce-813f-2f80f965ccb4", + "id": "8f665678-ecf8-4650-bc9d-b004e296ab7f", "name": "An error with the user permissions occurred", "originalRequest": { "url": { @@ -48004,12 +48004,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"sunt sint\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -25810052,\n \"trackingId\": \"laborum minim amet\"\n}", + "body": "{\n \"detailCode\": \"exercitation\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -24231662,\n \"trackingId\": \"laborum deserunt irure nisi id\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "de9108db-9024-4aa0-b3c7-cf966fac1cd5", + "id": "b748eb4f-710f-45cd-9da8-932ee059e4f8", "name": "An error with the item not found", "originalRequest": { "url": { @@ -48050,12 +48050,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"sunt sint\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -25810052,\n \"trackingId\": \"laborum minim amet\"\n}", + "body": "{\n \"detailCode\": \"exercitation\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -24231662,\n \"trackingId\": \"laborum deserunt irure nisi id\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "fabe5611-95ba-4c6c-8fbd-4bb243038860", + "id": "0f2995c1-51aa-4a2d-965b-dff0a31d352d", "name": "Too many requests", "originalRequest": { "url": { @@ -48101,7 +48101,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b21d3aa6-371e-46a0-85d8-d601baac3d30", + "id": "8c8b74ac-f82f-4d46-8851-22d8ed0d9f7c", "name": "An internal server error occurred", "originalRequest": { "url": { @@ -48142,12 +48142,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"sunt sint\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -25810052,\n \"trackingId\": \"laborum minim amet\"\n}", + "body": "{\n \"detailCode\": \"exercitation\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -24231662,\n \"trackingId\": \"laborum deserunt irure nisi id\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "3aeee1da-5eb5-4f3b-bb90-af88ba1b4723", + "id": "720b1c07-9ac8-4b8d-b1b0-ec39df8a02c7", "name": "An external service is not available", "originalRequest": { "url": { @@ -48188,7 +48188,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"sunt sint\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -25810052,\n \"trackingId\": \"laborum minim amet\"\n}", + "body": "{\n \"detailCode\": \"exercitation\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -24231662,\n \"trackingId\": \"laborum deserunt irure nisi id\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -48199,7 +48199,7 @@ } }, { - "id": "955b630e-7ac7-4d62-abda-265c93b033b9", + "id": "bb0805d7-e2c2-489d-a363-afe88a4188a1", "name": "List form instances by tenant.", "request": { "name": "List form instances by tenant.", @@ -48228,7 +48228,7 @@ }, "response": [ { - "id": "6cb50486-be73-4f84-b55a-c6283b64184c", + "id": "dbb8d270-55f5-4354-bc9f-84152cf770df", "name": "Returns a list of form instances by tenant", "originalRequest": { "url": { @@ -48266,12 +48266,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\": \"nu\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"commodo enim dolore officia\"\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\": \"esse sunt\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"laboris aliquip\"\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\": \"EMAIL\"\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\": \"LESS_THAN_DATE\"\n },\n {\n \"validationType\": \"TEXTAREA\"\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\": \"Duis in Lorem cupidatat nisi\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"Ut veniam eu ex\"\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 ad cillum enim\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"mollit dolore et\"\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\": \"MAX_LENGTH\"\n },\n {\n \"validationType\": \"REGEX\"\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\": \"DATA_SOURCE\"\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\": \"in commodo incididunt\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"sint in 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\": \"anim Excepteur\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"in Ut non\"\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\": \"MIN_DATE\"\n },\n {\n \"validationType\": \"MIN_LENGTH\"\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\": \"MAX_DATE\"\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\": \"esse proident laboris\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"sunt 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\": \"qui commodo\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"ex\"\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\": \"TEXTAREA\"\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\": \"MIN_LENGTH\"\n },\n {\n \"validationType\": \"EMAIL\"\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": "09686080-b783-427a-a011-c1ec93cfc178", + "id": "2b83c917-7e65-48a3-92b6-4c7ab469b51e", "name": "An error with the request occurred", "originalRequest": { "url": { @@ -48309,12 +48309,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"sunt sint\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -25810052,\n \"trackingId\": \"laborum minim amet\"\n}", + "body": "{\n \"detailCode\": \"exercitation\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -24231662,\n \"trackingId\": \"laborum deserunt irure nisi id\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e9663f74-4e96-4ee8-a1cb-d0a19818bd58", + "id": "c9bcd7ef-ed80-4337-b4f6-aecc56e0bfe5", "name": "An error with the authorization occurred", "originalRequest": { "url": { @@ -48352,12 +48352,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"sunt sint\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -25810052,\n \"trackingId\": \"laborum minim amet\"\n}", + "body": "{\n \"detailCode\": \"exercitation\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -24231662,\n \"trackingId\": \"laborum deserunt irure nisi id\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "df69bf74-a4d6-412a-93b1-1d0824b8d0f0", + "id": "29758c10-777e-42bb-a153-32ad5703863e", "name": "An error with the user permissions occurred", "originalRequest": { "url": { @@ -48395,12 +48395,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"sunt sint\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -25810052,\n \"trackingId\": \"laborum minim amet\"\n}", + "body": "{\n \"detailCode\": \"exercitation\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -24231662,\n \"trackingId\": \"laborum deserunt irure nisi id\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "86a0afd1-f400-4202-83d0-acd2451ba7c6", + "id": "92a5f769-8644-40aa-b1dd-21f12d46f432", "name": "Too many requests", "originalRequest": { "url": { @@ -48443,7 +48443,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b3cce4d4-df7d-4f51-8c73-fb692bbd026f", + "id": "a18349b1-ba72-4104-8ee2-a816922b5e1a", "name": "An internal server error occurred", "originalRequest": { "url": { @@ -48481,7 +48481,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"sunt sint\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -25810052,\n \"trackingId\": \"laborum minim amet\"\n}", + "body": "{\n \"detailCode\": \"exercitation\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -24231662,\n \"trackingId\": \"laborum deserunt irure nisi id\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -48492,7 +48492,7 @@ } }, { - "id": "12f533ae-c9a5-4272-8dd3-b049e237bb93", + "id": "addf68df-2751-45d8-aef7-aab20a7408f9", "name": "Creates a form instance.", "request": { "name": "Creates a form instance.", @@ -48531,7 +48531,7 @@ }, "response": [ { - "id": "853c524b-2ef1-4ad0-a771-f2b3843e2de3", + "id": "3f25c169-5432-4b6b-b8ea-a6108cf2c1dd", "name": "Returns a new form instance", "originalRequest": { "url": { @@ -48582,12 +48582,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\": \"velit\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"dolor velit in do\"\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\": \"dolor\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"consequat est ad\"\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\": \"TEXTAREA\"\n },\n {\n \"validationType\": \"DATA_SOURCE\"\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\": \"DATE\"\n },\n {\n \"validationType\": \"MIN_DATE\"\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\": \"Duis laboris nostrud\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"anim ex sint\"\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\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"occaecat dolore in cillum minim\"\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\": \"LESS_THAN_DATE\"\n },\n {\n \"validationType\": \"LESS_THAN_DATE\"\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\": \"DATA_SOURCE\"\n },\n {\n \"validationType\": \"REGEX\"\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": "4a233811-e21c-4506-836c-deb986c684e9", + "id": "17652ba6-598a-4da1-ba16-56a208cb728a", "name": "An error with the request occurred", "originalRequest": { "url": { @@ -48638,12 +48638,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"sunt sint\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -25810052,\n \"trackingId\": \"laborum minim amet\"\n}", + "body": "{\n \"detailCode\": \"exercitation\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -24231662,\n \"trackingId\": \"laborum deserunt irure nisi id\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "3e27d5d5-80e7-4ccb-a9a7-8d9ee5b117a7", + "id": "1e843261-4f12-48ea-b4b8-e8cfb4748bd7", "name": "An error with the authorization occurred", "originalRequest": { "url": { @@ -48694,12 +48694,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"sunt sint\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -25810052,\n \"trackingId\": \"laborum minim amet\"\n}", + "body": "{\n \"detailCode\": \"exercitation\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -24231662,\n \"trackingId\": \"laborum deserunt irure nisi id\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e9b6398f-db36-4f9d-a35e-65615799263a", + "id": "9f389869-0744-4510-8bbf-3c758d3948ef", "name": "An error with the user permissions occurred", "originalRequest": { "url": { @@ -48750,12 +48750,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"sunt sint\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -25810052,\n \"trackingId\": \"laborum minim amet\"\n}", + "body": "{\n \"detailCode\": \"exercitation\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -24231662,\n \"trackingId\": \"laborum deserunt irure nisi id\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c81f442c-2c37-46b2-a652-bc1994d3306b", + "id": "47e2dfc3-983f-461e-bfba-15c87dd9afa3", "name": "Too many requests", "originalRequest": { "url": { @@ -48811,7 +48811,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2e146e21-fe00-40c7-8aa8-fbd8362a435b", + "id": "3e30d40b-9569-48aa-bc24-7e36e17f9b6d", "name": "An internal server error occurred", "originalRequest": { "url": { @@ -48862,7 +48862,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"sunt sint\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -25810052,\n \"trackingId\": \"laborum minim amet\"\n}", + "body": "{\n \"detailCode\": \"exercitation\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -24231662,\n \"trackingId\": \"laborum deserunt irure nisi id\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -48873,7 +48873,7 @@ } }, { - "id": "7435e44a-a0b1-47ee-82c5-b93da0751d59", + "id": "1edf3dc9-660a-4670-8c3d-b8cf1b5e8672", "name": "Returns a form instance.", "request": { "name": "Returns a form instance.", @@ -48914,7 +48914,7 @@ }, "response": [ { - "id": "c059b75d-7146-4979-924c-51e7b60fb71d", + "id": "b249b1aa-aa7e-45c5-b43f-0d3916913f5a", "name": "Returns a form instance by its key", "originalRequest": { "url": { @@ -48953,12 +48953,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\": \"velit\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"dolor velit in do\"\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\": \"dolor\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"consequat est ad\"\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\": \"TEXTAREA\"\n },\n {\n \"validationType\": \"DATA_SOURCE\"\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\": \"DATE\"\n },\n {\n \"validationType\": \"MIN_DATE\"\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\": \"Duis laboris nostrud\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"anim ex sint\"\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\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"occaecat dolore in cillum minim\"\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\": \"LESS_THAN_DATE\"\n },\n {\n \"validationType\": \"LESS_THAN_DATE\"\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\": \"DATA_SOURCE\"\n },\n {\n \"validationType\": \"REGEX\"\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": "f45b0d7f-c9ec-460a-9113-28686be2257b", + "id": "e00632ae-08e0-42a0-9676-9ce920e9b705", "name": "An error with the request occurred", "originalRequest": { "url": { @@ -48997,12 +48997,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"sunt sint\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -25810052,\n \"trackingId\": \"laborum minim amet\"\n}", + "body": "{\n \"detailCode\": \"exercitation\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -24231662,\n \"trackingId\": \"laborum deserunt irure nisi id\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "0035679e-e745-4a42-99e9-f040f77a247c", + "id": "5f1bdd90-0cb9-47d4-ba8c-caca042f765e", "name": "An error with the authorization occurred", "originalRequest": { "url": { @@ -49041,12 +49041,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"sunt sint\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -25810052,\n \"trackingId\": \"laborum minim amet\"\n}", + "body": "{\n \"detailCode\": \"exercitation\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -24231662,\n \"trackingId\": \"laborum deserunt irure nisi id\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "12bea9f3-a22e-4e11-9c8b-af6f856634cc", + "id": "7446c545-8359-4053-bc14-e33cd3543c1d", "name": "An error with the user permissions occurred", "originalRequest": { "url": { @@ -49085,12 +49085,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"sunt sint\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -25810052,\n \"trackingId\": \"laborum minim amet\"\n}", + "body": "{\n \"detailCode\": \"exercitation\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -24231662,\n \"trackingId\": \"laborum deserunt irure nisi id\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a1de4f6b-c7d3-40a5-b4c0-8057eae956b3", + "id": "2ff2b7c3-c353-49a6-b23e-74ed500024ed", "name": "An error with the item not found", "originalRequest": { "url": { @@ -49129,12 +49129,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"sunt sint\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -25810052,\n \"trackingId\": \"laborum minim amet\"\n}", + "body": "{\n \"detailCode\": \"exercitation\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -24231662,\n \"trackingId\": \"laborum deserunt irure nisi id\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "384efbfa-7681-4c73-9beb-39cd7cdb0a31", + "id": "1a9f21ac-6ce4-4905-806c-33d816d9d0bc", "name": "Too many requests", "originalRequest": { "url": { @@ -49178,7 +49178,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9200984f-2101-4cf3-8be2-2a925dcdb120", + "id": "97d7c5b8-619d-4a07-9ea4-e111a12c6798", "name": "An internal server error occurred", "originalRequest": { "url": { @@ -49217,7 +49217,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"sunt sint\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -25810052,\n \"trackingId\": \"laborum minim amet\"\n}", + "body": "{\n \"detailCode\": \"exercitation\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -24231662,\n \"trackingId\": \"laborum deserunt irure nisi id\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -49228,7 +49228,7 @@ } }, { - "id": "490d9f5d-a56b-4479-abb0-d67f76b3c241", + "id": "f09698c7-d9ce-491f-9f39-8c80c536a23b", "name": "Patch a form instance.", "request": { "name": "Patch a form instance.", @@ -49282,7 +49282,7 @@ }, "response": [ { - "id": "5107f646-ee7f-4fce-82f9-9526c41cd8ef", + "id": "a69ea7c0-4d59-40f0-89ae-809b4df84f8e", "name": "Returns the form instance updated", "originalRequest": { "url": { @@ -49334,12 +49334,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\": \"velit\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"dolor velit in do\"\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\": \"dolor\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"consequat est ad\"\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\": \"TEXTAREA\"\n },\n {\n \"validationType\": \"DATA_SOURCE\"\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\": \"DATE\"\n },\n {\n \"validationType\": \"MIN_DATE\"\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\": \"Duis laboris nostrud\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"anim ex sint\"\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\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"occaecat dolore in cillum minim\"\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\": \"LESS_THAN_DATE\"\n },\n {\n \"validationType\": \"LESS_THAN_DATE\"\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\": \"DATA_SOURCE\"\n },\n {\n \"validationType\": \"REGEX\"\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": "70ab37c4-bcdc-4120-b8f9-83f845e820af", + "id": "c6cff04e-63bc-4163-a03d-9e9919ade635", "name": "An error with the request occurred", "originalRequest": { "url": { @@ -49391,12 +49391,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"sunt sint\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -25810052,\n \"trackingId\": \"laborum minim amet\"\n}", + "body": "{\n \"detailCode\": \"exercitation\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -24231662,\n \"trackingId\": \"laborum deserunt irure nisi id\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a422d522-2d1e-4167-9c79-547450ddb2e8", + "id": "6bb926fe-4e29-4211-9fbc-15eddfc7cf81", "name": "An error with the authorization occurred", "originalRequest": { "url": { @@ -49448,12 +49448,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"sunt sint\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -25810052,\n \"trackingId\": \"laborum minim amet\"\n}", + "body": "{\n \"detailCode\": \"exercitation\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -24231662,\n \"trackingId\": \"laborum deserunt irure nisi id\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "321c55c9-b085-41de-a1f2-526084b5cb65", + "id": "db3d8c36-ae96-48d2-8b3f-18ff5d4b0b36", "name": "An error with the user permissions occurred", "originalRequest": { "url": { @@ -49505,12 +49505,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"sunt sint\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -25810052,\n \"trackingId\": \"laborum minim amet\"\n}", + "body": "{\n \"detailCode\": \"exercitation\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -24231662,\n \"trackingId\": \"laborum deserunt irure nisi id\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c68a0da5-2316-4a7f-927b-d9d088e9f725", + "id": "4d9d17cf-bc14-4944-a14c-b1f6d71fa33c", "name": "An error with the item not found", "originalRequest": { "url": { @@ -49562,12 +49562,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"sunt sint\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -25810052,\n \"trackingId\": \"laborum minim amet\"\n}", + "body": "{\n \"detailCode\": \"exercitation\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -24231662,\n \"trackingId\": \"laborum deserunt irure nisi id\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "381faa83-1802-4c2d-985e-5a8f7014ef9b", + "id": "a2a1aa42-f73e-41a4-bfc3-b5d29f25aea6", "name": "An error with the request property conflicts with stored", "originalRequest": { "url": { @@ -49619,12 +49619,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"sunt sint\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -25810052,\n \"trackingId\": \"laborum minim amet\"\n}", + "body": "{\n \"detailCode\": \"exercitation\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -24231662,\n \"trackingId\": \"laborum deserunt irure nisi id\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "93aeddd3-0489-4965-b23f-0ef9f3319814", + "id": "388331fc-62f7-4d97-87fc-75927c5e3468", "name": "Too many requests", "originalRequest": { "url": { @@ -49681,7 +49681,7 @@ "_postman_previewlanguage": "json" }, { - "id": "24408dc2-96a2-4206-adb7-a49f6b988f60", + "id": "35a58e83-0873-418b-b9e4-f407f6454646", "name": "An internal server error occurred", "originalRequest": { "url": { @@ -49733,7 +49733,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"sunt sint\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -25810052,\n \"trackingId\": \"laborum minim amet\"\n}", + "body": "{\n \"detailCode\": \"exercitation\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -24231662,\n \"trackingId\": \"laborum deserunt irure nisi id\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -49744,7 +49744,7 @@ } }, { - "id": "e0bff8b0-5d97-478e-9a2e-2d1d12e42684", + "id": "4dc40664-88a6-4efb-a43e-93f92fd119e5", "name": "Retrieves dynamic data by element.", "request": { "name": "Retrieves dynamic data by element.", @@ -49825,7 +49825,7 @@ }, "response": [ { - "id": "cadcdce3-ae48-4803-b846-c27e8aab331b", + "id": "f20d8100-f74c-45d0-beaa-b147aa04ab2a", "name": "Retrieves dynamic data to aid in correctly completing a valid form by form element ID from data source configuration", "originalRequest": { "url": { @@ -49899,7 +49899,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ec291e32-f95b-47d3-8451-4336ad505dae", + "id": "b8602a01-9157-4bf7-b701-ca31cbd87777", "name": "An error with the request occurred", "originalRequest": { "url": { @@ -49968,12 +49968,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"sunt sint\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -25810052,\n \"trackingId\": \"laborum minim amet\"\n}", + "body": "{\n \"detailCode\": \"exercitation\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -24231662,\n \"trackingId\": \"laborum deserunt irure nisi id\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "dd5e1f71-af0a-4ef4-a281-18bcf9a1baed", + "id": "e677373d-87e6-4270-800b-a33cd98724b0", "name": "An error with the authorization occurred", "originalRequest": { "url": { @@ -50042,12 +50042,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"sunt sint\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -25810052,\n \"trackingId\": \"laborum minim amet\"\n}", + "body": "{\n \"detailCode\": \"exercitation\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -24231662,\n \"trackingId\": \"laborum deserunt irure nisi id\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "67953f48-e55d-4d5f-8eaf-d9375aaa5270", + "id": "d143a0d0-24f7-4d99-9775-2dff452dbc3d", "name": "An error with the user permissions occurred", "originalRequest": { "url": { @@ -50116,12 +50116,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"sunt sint\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -25810052,\n \"trackingId\": \"laborum minim amet\"\n}", + "body": "{\n \"detailCode\": \"exercitation\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -24231662,\n \"trackingId\": \"laborum deserunt irure nisi id\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "5d61303b-6e1c-46b5-b96b-0cbc21a216e8", + "id": "c1d9b9f3-9887-4a2b-8cdb-7cf760af8f82", "name": "An error with the item not found", "originalRequest": { "url": { @@ -50190,12 +50190,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"sunt sint\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -25810052,\n \"trackingId\": \"laborum minim amet\"\n}", + "body": "{\n \"detailCode\": \"exercitation\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -24231662,\n \"trackingId\": \"laborum deserunt irure nisi id\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "8bc6dbd7-0fbb-460d-b6b2-8e23766f934d", + "id": "b367ff5c-1ba7-46ad-b0a0-0f5dc2d867e6", "name": "Too many requests", "originalRequest": { "url": { @@ -50269,7 +50269,7 @@ "_postman_previewlanguage": "json" }, { - "id": "733f998c-dc5f-4426-b943-254f564336fe", + "id": "e2d284a1-ba2b-43f8-9874-46e353ef2d7f", "name": "An internal server error occurred", "originalRequest": { "url": { @@ -50338,7 +50338,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"sunt sint\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -25810052,\n \"trackingId\": \"laborum minim amet\"\n}", + "body": "{\n \"detailCode\": \"exercitation\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -24231662,\n \"trackingId\": \"laborum deserunt irure nisi id\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -50349,7 +50349,7 @@ } }, { - "id": "b1711c4d-9ff8-4bbb-aca4-547457e03090", + "id": "f90c6dff-9aac-4183-84bd-1f0875317f29", "name": "Download instance file by fileId.", "request": { "name": "Download instance file by fileId.", @@ -50399,7 +50399,7 @@ }, "response": [ { - "id": "52e0ae81-f4de-4cf6-916d-75dc68a4fe29", + "id": "297cc25f-25a7-43e5-bab2-2f0527a3d7e0", "name": "Returns a file that is referred to by fileID and associated with the formInstanceID", "originalRequest": { "url": { @@ -50440,12 +50440,12 @@ "value": "application/json" } ], - "body": "labore", + "body": "laborum qui aliquip irure", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c54bac3f-a88c-407c-92b7-7ad6c4005ced", + "id": "117faf69-3477-41f2-9cc1-188af7aeb771", "name": "An error with the request occurred", "originalRequest": { "url": { @@ -50486,12 +50486,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"sunt sint\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -25810052,\n \"trackingId\": \"laborum minim amet\"\n}", + "body": "{\n \"detailCode\": \"exercitation\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -24231662,\n \"trackingId\": \"laborum deserunt irure nisi id\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c107bc8e-fbd7-4e48-a147-f4ce0db3f063", + "id": "6d570351-4754-4664-ba00-78e362b193f7", "name": "An error with the authorization occurred", "originalRequest": { "url": { @@ -50532,12 +50532,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"sunt sint\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -25810052,\n \"trackingId\": \"laborum minim amet\"\n}", + "body": "{\n \"detailCode\": \"exercitation\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -24231662,\n \"trackingId\": \"laborum deserunt irure nisi id\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d6a7a8f2-dfd7-4202-a943-388938cc8f34", + "id": "c28f49e2-6578-4cf8-9492-30901aa20313", "name": "An error with the user permissions occurred", "originalRequest": { "url": { @@ -50578,12 +50578,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"sunt sint\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -25810052,\n \"trackingId\": \"laborum minim amet\"\n}", + "body": "{\n \"detailCode\": \"exercitation\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -24231662,\n \"trackingId\": \"laborum deserunt irure nisi id\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e7cc02be-69fa-4265-b778-6768f9711a2b", + "id": "8762854a-4550-42e1-b065-0cb1df674cb0", "name": "An error with the item not found", "originalRequest": { "url": { @@ -50624,12 +50624,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"sunt sint\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -25810052,\n \"trackingId\": \"laborum minim amet\"\n}", + "body": "{\n \"detailCode\": \"exercitation\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -24231662,\n \"trackingId\": \"laborum deserunt irure nisi id\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a1fa87cd-c488-4a68-b45b-afb641ed91ac", + "id": "b4bf0502-993f-4f22-a6ad-9972ae11c572", "name": "Too many requests", "originalRequest": { "url": { @@ -50675,7 +50675,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c6b2ea64-a441-4267-b62d-888b6c34bb2c", + "id": "d176ba07-5558-4374-ae22-b2c76a6af73e", "name": "An internal server error occurred", "originalRequest": { "url": { @@ -50716,12 +50716,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"sunt sint\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -25810052,\n \"trackingId\": \"laborum minim amet\"\n}", + "body": "{\n \"detailCode\": \"exercitation\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -24231662,\n \"trackingId\": \"laborum deserunt irure nisi id\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "9a23ce50-bb02-45cf-a4dc-1ce9bf8b274a", + "id": "98f25853-d6ee-4f84-8291-bde001732aa5", "name": "An external service is not available", "originalRequest": { "url": { @@ -50762,7 +50762,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"sunt sint\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -25810052,\n \"trackingId\": \"laborum minim amet\"\n}", + "body": "{\n \"detailCode\": \"exercitation\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -24231662,\n \"trackingId\": \"laborum deserunt irure nisi id\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -50773,7 +50773,7 @@ } }, { - "id": "c5b8ac46-a522-456a-9383-964c59b2d5fd", + "id": "1baaf00d-7e0c-4836-8e42-cc670aec7d5f", "name": "List predefined select options.", "request": { "name": "List predefined select options.", @@ -50803,7 +50803,7 @@ }, "response": [ { - "id": "10bbe8c5-f835-488c-8680-af7167c82d52", + "id": "b1df742e-c5da-4478-9174-d1e95f137180", "name": "Returns a list of available predefined select options", "originalRequest": { "url": { @@ -50847,7 +50847,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e3ef80ab-75fc-4787-a808-6e82fb920407", + "id": "e234439f-1796-4167-b005-2ae996cf4ded", "name": "An error with the request occurred", "originalRequest": { "url": { @@ -50886,12 +50886,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"sunt sint\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -25810052,\n \"trackingId\": \"laborum minim amet\"\n}", + "body": "{\n \"detailCode\": \"exercitation\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -24231662,\n \"trackingId\": \"laborum deserunt irure nisi id\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "542917c1-c0c0-41e3-abd6-cbd5ac0159c9", + "id": "0fcfa17a-bc54-4c0b-87ef-042e4192a58d", "name": "An error with the authorization occurred", "originalRequest": { "url": { @@ -50930,12 +50930,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"sunt sint\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -25810052,\n \"trackingId\": \"laborum minim amet\"\n}", + "body": "{\n \"detailCode\": \"exercitation\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -24231662,\n \"trackingId\": \"laborum deserunt irure nisi id\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "7e29d161-63da-4865-b97c-87c114edaf91", + "id": "763de5b0-9d59-4009-8965-13096a6539c2", "name": "An error with the user permissions occurred", "originalRequest": { "url": { @@ -50974,12 +50974,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"sunt sint\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -25810052,\n \"trackingId\": \"laborum minim amet\"\n}", + "body": "{\n \"detailCode\": \"exercitation\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -24231662,\n \"trackingId\": \"laborum deserunt irure nisi id\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "064dc1b0-939b-49b8-9665-c3582c9f4487", + "id": "1eb6f4e7-caa6-4f3e-bb12-d0c10050ac85", "name": "Too many requests", "originalRequest": { "url": { @@ -51023,7 +51023,7 @@ "_postman_previewlanguage": "json" }, { - "id": "01bd9e15-6993-49a6-9b8c-cb35e9d03ae4", + "id": "3ebadd6f-7e21-4ca9-ad45-f84beb5417a0", "name": "An internal server error occurred", "originalRequest": { "url": { @@ -51062,7 +51062,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"sunt sint\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -25810052,\n \"trackingId\": \"laborum minim amet\"\n}", + "body": "{\n \"detailCode\": \"exercitation\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": -24231662,\n \"trackingId\": \"laborum deserunt irure nisi id\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -51079,7 +51079,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": "04e90ce8-8337-43c8-ab46-6e4dc36f0601", + "id": "ff310c46-7898-46b5-b91c-4792ba999282", "name": "Create Custom Password Instructions", "request": { "name": "Create Custom Password Instructions", @@ -51121,7 +51121,7 @@ }, "response": [ { - "id": "b34d4882-829e-48c2-ac3c-8cd4a709f7fe", + "id": "3667fd00-8696-4dc4-b9c3-293867f90e38", "name": "Reference to the custom password instructions.", "originalRequest": { "url": { @@ -51177,7 +51177,7 @@ "_postman_previewlanguage": "json" }, { - "id": "91f3108a-1578-48c7-bba8-483a83fb6469", + "id": "6086fc53-f233-43ec-b184-87998e886758", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -51233,7 +51233,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a518470d-a510-43af-8ca5-ec207befc219", + "id": "a4391b32-9d34-48c8-9e99-8cb451aec3f8", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -51289,7 +51289,7 @@ "_postman_previewlanguage": "json" }, { - "id": "02c362f0-e00d-409f-acd6-77f724a560d1", + "id": "e5a898cc-a1fa-41f6-a817-dae8cecd3d74", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -51351,7 +51351,7 @@ } }, { - "id": "5daf95b7-18e9-4d70-820c-4f118daccd07", + "id": "6b9a12b9-97a2-4291-b1e6-4c2864a9c2c4", "name": "Get Custom Password Instructions by Page ID", "request": { "name": "Get Custom Password Instructions by Page ID", @@ -51375,7 +51375,7 @@ "type": "text/plain" }, "key": "locale", - "value": "labore" + "value": "laborum qui aliquip irure" } ], "variable": [ @@ -51402,7 +51402,7 @@ }, "response": [ { - "id": "d3aa0808-c6bb-4ac5-aec8-f8117ee242dc", + "id": "69cd4ac1-8feb-49ad-9f3b-22458896285a", "name": "Reference to the custom password instructions.", "originalRequest": { "url": { @@ -51421,7 +51421,7 @@ "type": "text/plain" }, "key": "locale", - "value": "labore" + "value": "laborum qui aliquip irure" } ], "variable": [] @@ -51456,7 +51456,7 @@ "_postman_previewlanguage": "json" }, { - "id": "110fed38-0b4a-4d96-9ea6-059afa37e8a9", + "id": "50ddf177-8849-421e-b3b7-860166824aff", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -51475,7 +51475,7 @@ "type": "text/plain" }, "key": "locale", - "value": "labore" + "value": "laborum qui aliquip irure" } ], "variable": [] @@ -51510,7 +51510,7 @@ "_postman_previewlanguage": "json" }, { - "id": "088bdaa0-20e4-47fa-b345-262f7afbbd2d", + "id": "c7b03357-eae7-40e2-a37b-dac4225f82ba", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -51529,7 +51529,7 @@ "type": "text/plain" }, "key": "locale", - "value": "labore" + "value": "laborum qui aliquip irure" } ], "variable": [] @@ -51564,7 +51564,7 @@ "_postman_previewlanguage": "json" }, { - "id": "298f7ce1-7d80-4483-a873-1ad425abe750", + "id": "88a5f505-cfa8-4d2d-91ec-add6fc3fefae", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -51583,7 +51583,7 @@ "type": "text/plain" }, "key": "locale", - "value": "labore" + "value": "laborum qui aliquip irure" } ], "variable": [] @@ -51618,7 +51618,7 @@ "_postman_previewlanguage": "json" }, { - "id": "199241ca-3479-4212-920f-c17431f36c50", + "id": "93880c0b-9815-4839-b461-518b4b1ea45f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -51637,7 +51637,7 @@ "type": "text/plain" }, "key": "locale", - "value": "labore" + "value": "laborum qui aliquip irure" } ], "variable": [] @@ -51678,7 +51678,7 @@ } }, { - "id": "4f8936c9-fc3e-4643-a00f-56fc14908a33", + "id": "c0b528fa-84fa-4182-9ed1-9a78be7775a1", "name": "Delete Custom Password Instructions by page ID", "request": { "name": "Delete Custom Password Instructions by page ID", @@ -51702,7 +51702,7 @@ "type": "text/plain" }, "key": "locale", - "value": "labore" + "value": "laborum qui aliquip irure" } ], "variable": [ @@ -51729,7 +51729,7 @@ }, "response": [ { - "id": "f0819076-47cb-4a90-bb67-5d05df18f600", + "id": "189e762a-98c5-4e57-8cd9-f949adc80164", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -51748,7 +51748,7 @@ "type": "text/plain" }, "key": "locale", - "value": "labore" + "value": "laborum qui aliquip irure" } ], "variable": [] @@ -51773,7 +51773,7 @@ "_postman_previewlanguage": "text" }, { - "id": "73b49e57-e70c-4c8b-ad14-4994bd64e8d0", + "id": "e4a6dd8d-5022-4acd-a8e9-4c4bdc556119", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -51792,7 +51792,7 @@ "type": "text/plain" }, "key": "locale", - "value": "labore" + "value": "laborum qui aliquip irure" } ], "variable": [] @@ -51827,7 +51827,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ce09613b-b61e-4e41-9a15-6ba1b2f759e1", + "id": "ed4329ad-4bba-43a9-8e38-7f0bc710bbb5", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -51846,7 +51846,7 @@ "type": "text/plain" }, "key": "locale", - "value": "labore" + "value": "laborum qui aliquip irure" } ], "variable": [] @@ -51881,7 +51881,7 @@ "_postman_previewlanguage": "json" }, { - "id": "073c617c-0e84-48e0-a900-a52ae739fe4a", + "id": "f1991d07-8a76-49dc-922f-a12562d4394e", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -51900,7 +51900,7 @@ "type": "text/plain" }, "key": "locale", - "value": "labore" + "value": "laborum qui aliquip irure" } ], "variable": [] @@ -51935,7 +51935,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c39cbba4-183e-45db-8a15-d8879daa3980", + "id": "21b0d0af-d028-4e97-b072-2dc0d70b98f3", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -51954,7 +51954,7 @@ "type": "text/plain" }, "key": "locale", - "value": "labore" + "value": "laborum qui aliquip irure" } ], "variable": [] @@ -52001,7 +52001,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": "776ec5c7-24cd-4d88-a196-45d0873e279d", + "id": "a3d16740-263a-435a-8b20-bf147c489607", "name": "Gets a list of entitlements.", "request": { "name": "Gets a list of entitlements.", @@ -52112,7 +52112,7 @@ }, "response": [ { - "id": "f3c7c018-d8d3-4e0a-9465-53b5ac9c2c4a", + "id": "07ae0483-9515-48a3-bc3f-49c34c80085f", "name": "List of entitlements", "originalRequest": { "url": { @@ -52237,7 +52237,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6abc402d-32fc-4578-8fcb-823022a3343d", + "id": "49834253-fa2a-4236-9d2a-f9d2b8c84933", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -52362,7 +52362,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1340350e-9dfe-405c-92a0-37d9cef0b9e1", + "id": "62c638ae-fb11-4218-8824-28c28d9c92ff", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -52487,7 +52487,7 @@ "_postman_previewlanguage": "json" }, { - "id": "48e1a10d-3709-44bd-810e-401e079bc828", + "id": "d6c5325d-bdc7-4021-b12c-c47f5dfd8a0b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -52612,7 +52612,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6657c34b-fdf3-4141-91b4-652617e819df", + "id": "a4f642e4-e758-40d5-964d-88cb481f524b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -52737,7 +52737,7 @@ "_postman_previewlanguage": "json" }, { - "id": "35dbf29a-a9bd-410d-9caa-386fef477953", + "id": "587ad1aa-f354-4216-872e-2b94c68d2722", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -52868,7 +52868,7 @@ } }, { - "id": "2c921ce0-c42c-4ef5-8c34-3cf3ee042048", + "id": "3b32a48c-eebc-4824-befe-020b6b49bd80", "name": "Get an entitlement", "request": { "name": "Get an entitlement", @@ -52909,7 +52909,7 @@ }, "response": [ { - "id": "693580bc-95d5-4efd-9ba1-d2427a1719a2", + "id": "32b9fa9b-4e34-4674-9e98-4a70c9da7c1f", "name": "An entitlement", "originalRequest": { "url": { @@ -52953,7 +52953,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1aa4f86c-ced3-4055-84b5-c7a7842629fb", + "id": "609602cf-9ddf-48ff-a275-30263b24e970", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -52997,7 +52997,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8bd1fe2b-5f2d-4890-b3a6-470c8110b5f2", + "id": "af9b563c-e12a-47ac-a3bb-d307c58ff0bb", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -53041,7 +53041,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f2523f94-1416-4cb2-bef0-08c262421a14", + "id": "26a68f4f-7461-43de-bb4b-385ea01369d0", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -53085,7 +53085,7 @@ "_postman_previewlanguage": "json" }, { - "id": "025c0b4b-61c5-492e-a643-8b2aa55a6e81", + "id": "8ed75c72-cf9c-491a-89bd-930a2948ae57", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -53129,7 +53129,7 @@ "_postman_previewlanguage": "json" }, { - "id": "946a863a-773f-4611-b5fb-2f3500a7a004", + "id": "c8a343aa-f91c-4da4-a0b5-e0acd7df2692", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -53173,7 +53173,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5f842e4d-1926-4e29-92fc-3203a0cd7741", + "id": "fab93820-cd48-44b8-b5c5-04dd032fbe14", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -53223,7 +53223,7 @@ } }, { - "id": "60518632-efe3-4ae2-8d36-558a6b47f128", + "id": "5c7ef085-4c20-4513-a0f7-8f6aef9b1cd9", "name": "Patch an entitlement", "request": { "name": "Patch an entitlement", @@ -53277,7 +53277,7 @@ }, "response": [ { - "id": "f9e19327-b14a-4dfb-ba0b-dbb79f2c9a29", + "id": "9688965a-be2a-42e7-ba82-741480778604", "name": "Make an entitlement requestable and privileged in one call", "originalRequest": { "url": { @@ -53334,7 +53334,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cca83218-b088-461b-87f4-63e1a412b091", + "id": "217f6e2e-222a-4b3a-9672-dd0cf102f8c2", "name": "Assign an entitlement to a segment", "originalRequest": { "url": { @@ -53391,7 +53391,7 @@ "_postman_previewlanguage": "json" }, { - "id": "34d0ebd4-5d35-43f9-8d3f-500b4c759e5a", + "id": "72317df6-61cc-480c-ae31-190d39a6affc", "name": "Assign an owner to an entitlement", "originalRequest": { "url": { @@ -53448,7 +53448,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5b45da57-73e1-4a15-b32c-ef2627d5ff38", + "id": "7345c624-f812-411f-8f3b-dfde71f593a5", "name": "Replace an owner for an entitlement", "originalRequest": { "url": { @@ -53505,7 +53505,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5dcfc37a-f0ab-4a5d-846f-0c507f5bb081", + "id": "17377760-f516-4e90-8a10-a67453875fad", "name": "Set entitlement manually updated fields", "originalRequest": { "url": { @@ -53562,7 +53562,7 @@ "_postman_previewlanguage": "json" }, { - "id": "02b86ccc-9c4f-4357-b3a8-4078d44e4784", + "id": "db20e27e-0335-49e5-a274-3c12dbb798ba", "name": "Add the description for an entitlement", "originalRequest": { "url": { @@ -53619,7 +53619,7 @@ "_postman_previewlanguage": "json" }, { - "id": "89cbc52a-1708-414e-8ae4-907f66ec7423", + "id": "11ed58e8-82cd-4302-ac7f-618cc4683da1", "name": "Update the name for an entitlement", "originalRequest": { "url": { @@ -53676,7 +53676,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7a205537-4a3e-4948-8e66-07d7028e98cd", + "id": "65b9ac5b-ad18-4122-bdc0-af9fa19d1d88", "name": "Make an entitlement requestable and privileged in one call", "originalRequest": { "url": { @@ -53733,7 +53733,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5f6b5bbb-e742-4ea6-a31e-c5ddb954d7b1", + "id": "9bf6968e-3b92-479c-ad27-48cb1ea020a4", "name": "Assign an entitlement to a segment", "originalRequest": { "url": { @@ -53790,7 +53790,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a94c81d2-86b0-4cfb-a2ed-c3bd973aa323", + "id": "d683139f-ffcf-4478-851b-ec23e9010823", "name": "Assign an owner to an entitlement", "originalRequest": { "url": { @@ -53847,7 +53847,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c8edd0c3-f075-4713-b009-e247adeb3bab", + "id": "4ece3209-9923-4009-8db5-6d8786a5cf55", "name": "Replace an owner for an entitlement", "originalRequest": { "url": { @@ -53904,7 +53904,7 @@ "_postman_previewlanguage": "json" }, { - "id": "253398d8-cfb2-45b3-a2f2-1d9315a8d23c", + "id": "b8cf25af-c0d5-4cf9-a1e2-9d9f6e1c2691", "name": "Set entitlement manually updated fields", "originalRequest": { "url": { @@ -53961,7 +53961,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fa1a66e8-da40-4009-9734-86dc65b89b64", + "id": "bad31ef1-df28-46a2-8c1a-e94bc33c84e2", "name": "Add the description for an entitlement", "originalRequest": { "url": { @@ -54018,7 +54018,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9a27a1ae-cd15-4444-b8cb-81e31f769ec8", + "id": "c1560b9d-b835-4834-89c5-e56cbf1cc3a2", "name": "Update the name for an entitlement", "originalRequest": { "url": { @@ -54075,7 +54075,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0b81d67d-edf7-4263-aef1-332ffb4bdc36", + "id": "e6334c94-1905-4a3d-af57-2a5d342898b5", "name": "Make an entitlement requestable and privileged in one call", "originalRequest": { "url": { @@ -54132,7 +54132,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7b6e7f30-ca88-46e3-ae7b-9596a00b646a", + "id": "89df8e69-c4ad-49f7-8ccf-52229a61b3d8", "name": "Assign an entitlement to a segment", "originalRequest": { "url": { @@ -54189,7 +54189,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c571accb-0c55-4990-a82d-90d72ad5b62b", + "id": "682eeb24-3238-4fdb-ac69-ae7744a5748f", "name": "Assign an owner to an entitlement", "originalRequest": { "url": { @@ -54246,7 +54246,7 @@ "_postman_previewlanguage": "json" }, { - "id": "77e8867d-9b5a-4725-8288-dd8be07e5591", + "id": "d3f34730-765a-43a1-9eb2-f6854c6f2a30", "name": "Replace an owner for an entitlement", "originalRequest": { "url": { @@ -54303,7 +54303,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c9f9da5c-884c-42b7-9f54-0b6228f03e4a", + "id": "a5aaabae-70c9-4b26-8e88-18e70e7c3336", "name": "Set entitlement manually updated fields", "originalRequest": { "url": { @@ -54360,7 +54360,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f0810dde-8bfb-40ce-9e9d-0eba8c6564d8", + "id": "ac800797-3a0c-4cb7-b613-dc72cb1c3cd0", "name": "Add the description for an entitlement", "originalRequest": { "url": { @@ -54417,7 +54417,7 @@ "_postman_previewlanguage": "json" }, { - "id": "49d13726-34fa-4ddf-8f19-858efa968a32", + "id": "89ce20af-3fe6-481a-bfb4-cdb5c06ff407", "name": "Update the name for an entitlement", "originalRequest": { "url": { @@ -54474,7 +54474,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bdcc05f3-0e0a-47a6-b3b8-44981f4171f3", + "id": "4a111341-b275-45dc-864f-dcb8170aef02", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -54531,7 +54531,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c510a469-228a-4ff0-9d0c-662302f2ce64", + "id": "39e08b8c-0f12-4ca5-9c35-224c036af6c3", "name": "Assign an entitlement to a segment", "originalRequest": { "url": { @@ -54588,7 +54588,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7526968a-1579-4446-839c-9e480479d997", + "id": "ee9accd7-ea40-47ea-8933-f78d2f3af9ce", "name": "Assign an owner to an entitlement", "originalRequest": { "url": { @@ -54645,7 +54645,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8e9a303d-5ffa-4fe9-af3d-766afbdd96bf", + "id": "d64586fe-97d1-4944-9b93-14a41c14043f", "name": "Replace an owner for an entitlement", "originalRequest": { "url": { @@ -54702,7 +54702,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ce7d0101-a74c-4c13-ab9a-3d151e649dd8", + "id": "ddae3a8b-77ed-4dc7-a891-f102b9f52871", "name": "Set entitlement manually updated fields", "originalRequest": { "url": { @@ -54759,7 +54759,7 @@ "_postman_previewlanguage": "json" }, { - "id": "edcd6517-3fb6-441a-8661-f07db01ddedb", + "id": "c487a1ca-8311-44dc-936f-210b28edfeb5", "name": "Add the description for an entitlement", "originalRequest": { "url": { @@ -54816,7 +54816,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1b5dac11-4d86-4a0b-be74-ee1b338aec20", + "id": "0836b4ac-8d23-4731-9627-949e59bad0b2", "name": "Update the name for an entitlement", "originalRequest": { "url": { @@ -54873,7 +54873,7 @@ "_postman_previewlanguage": "json" }, { - "id": "26a2eaa9-90cc-44cc-ad80-59c0bf5058c9", + "id": "519aff60-e957-4493-8060-6c5ebbc0a601", "name": "An example of a 404 response object", "originalRequest": { "url": { @@ -54930,7 +54930,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d265f9bd-2278-485c-9db8-b9c69da81abc", + "id": "a23698ea-eb75-48a3-bc64-5dcb3c8266d3", "name": "Assign an entitlement to a segment", "originalRequest": { "url": { @@ -54987,7 +54987,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5006e941-9706-41d8-8754-3cfc7d7c53ab", + "id": "5b0badf9-beee-4e8b-8807-15db271f460f", "name": "Assign an owner to an entitlement", "originalRequest": { "url": { @@ -55044,7 +55044,7 @@ "_postman_previewlanguage": "json" }, { - "id": "91c857a3-4af5-44e2-8195-986fb52a347b", + "id": "a20dac17-60ea-4f32-b72c-41712cfb201f", "name": "Replace an owner for an entitlement", "originalRequest": { "url": { @@ -55101,7 +55101,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5404862d-bdb9-49e4-b0d4-ca0123ce18da", + "id": "b7103b74-dffe-41e3-8254-b23ee4263e4c", "name": "Set entitlement manually updated fields", "originalRequest": { "url": { @@ -55158,7 +55158,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0115c8f7-20ac-4a79-91b3-a560bb320f23", + "id": "24b146d6-ccb4-40f5-ba1b-69b57573317f", "name": "Add the description for an entitlement", "originalRequest": { "url": { @@ -55215,7 +55215,7 @@ "_postman_previewlanguage": "json" }, { - "id": "58676f68-25be-4424-b509-737e6fccfa87", + "id": "3c8078d9-3d4f-4fe2-a37c-3152a8f429b0", "name": "Update the name for an entitlement", "originalRequest": { "url": { @@ -55272,7 +55272,7 @@ "_postman_previewlanguage": "json" }, { - "id": "860be1a7-15af-49bb-a506-6b6d81a43796", + "id": "f4a8c99b-5f1c-4750-8ad5-6828bce16122", "name": "Make an entitlement requestable and privileged in one call", "originalRequest": { "url": { @@ -55329,7 +55329,7 @@ "_postman_previewlanguage": "json" }, { - "id": "58bb8f2a-6fa6-446c-9c62-dea0c697b9ef", + "id": "6b9a14f6-a11b-42f9-8c30-071087a50459", "name": "Assign an entitlement to a segment", "originalRequest": { "url": { @@ -55386,7 +55386,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8ca985b7-e695-4720-a901-b2113bd64e37", + "id": "f77d1383-cb7f-4712-aa4f-0ee657e15ba6", "name": "Assign an owner to an entitlement", "originalRequest": { "url": { @@ -55443,7 +55443,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1bbe7dfc-2778-4458-82de-8700dcd1d741", + "id": "9df763f8-044a-4123-979d-fc8abd508035", "name": "Replace an owner for an entitlement", "originalRequest": { "url": { @@ -55500,7 +55500,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4116eaf9-9395-48a2-b22b-bdd89112e8a6", + "id": "1ea4f114-adff-4534-8738-3e90f510fa31", "name": "Set entitlement manually updated fields", "originalRequest": { "url": { @@ -55557,7 +55557,7 @@ "_postman_previewlanguage": "json" }, { - "id": "83800aea-68eb-463a-9b54-cf4ba575de85", + "id": "3ec9ae0e-f382-4f11-99c3-b87e185e69ff", "name": "Add the description for an entitlement", "originalRequest": { "url": { @@ -55614,7 +55614,7 @@ "_postman_previewlanguage": "json" }, { - "id": "99b91884-4b45-477d-a81b-39f6e655184d", + "id": "24f62311-27fc-4e2c-946f-e8b7ad263dcc", "name": "Update the name for an entitlement", "originalRequest": { "url": { @@ -55671,7 +55671,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1ed083f0-7310-493f-9e50-9991ac483009", + "id": "fb0a4603-256f-42a6-a281-f3796c51d9d1", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -55728,7 +55728,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4ab21f1b-34f3-4913-a32b-3e1d62319fd3", + "id": "361d9aed-5d09-4a29-bdbe-af0d830d8d8e", "name": "Assign an entitlement to a segment", "originalRequest": { "url": { @@ -55785,7 +55785,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d363d474-1ed1-48d6-8a7e-69f889f8202e", + "id": "8faf5315-7d0c-4fe6-a835-b20c84df7cf7", "name": "Assign an owner to an entitlement", "originalRequest": { "url": { @@ -55842,7 +55842,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bc3999f7-a540-467a-a860-19bc8cddd8d3", + "id": "4004ed73-3e77-4cf6-a5ce-ca9fab945f43", "name": "Replace an owner for an entitlement", "originalRequest": { "url": { @@ -55899,7 +55899,7 @@ "_postman_previewlanguage": "json" }, { - "id": "658101dd-4446-4545-87a5-ed907dda9809", + "id": "90d2d74b-e65b-48e7-9bcc-c96a8c499910", "name": "Set entitlement manually updated fields", "originalRequest": { "url": { @@ -55956,7 +55956,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c5a0c07c-1d2e-47ed-b78a-5e514284ee3d", + "id": "5d31d90b-c8af-4538-9108-c9a629449a1b", "name": "Add the description for an entitlement", "originalRequest": { "url": { @@ -56013,7 +56013,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6bad6a63-e3af-4c54-a571-ec1a0df6c3b6", + "id": "5589b8db-14c7-43a8-8b05-073defe02cda", "name": "Update the name for an entitlement", "originalRequest": { "url": { @@ -56076,7 +56076,7 @@ } }, { - "id": "b0d0d186-5dc6-4aa9-811c-03d47840b953", + "id": "71020d03-5092-4195-aeca-388d3718d8ff", "name": "List of entitlements parents", "request": { "name": "List of entitlements parents", @@ -56164,7 +56164,7 @@ }, "response": [ { - "id": "b0709e61-9ead-44e7-8a90-06100c19eadb", + "id": "b8d4e980-f30f-4340-90fb-9ba3bcdb0e06", "name": "List of entitlements parents from an entitlement", "originalRequest": { "url": { @@ -56255,7 +56255,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3838f30a-241d-4c52-bd3d-0b023c6424c5", + "id": "af599922-9dbc-4555-a80f-ec728578c1f7", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -56346,7 +56346,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f81e5118-b6fd-434a-b331-9faa83b12eca", + "id": "0ecba243-7a3c-4186-b5f9-19bbcdba4f93", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -56437,7 +56437,7 @@ "_postman_previewlanguage": "json" }, { - "id": "69aa10a1-0dba-4baf-95e7-42901826cce2", + "id": "4cf4fa51-37d6-4431-a4e0-5c6f5a40dbf9", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -56528,7 +56528,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f5f4571b-8ad6-4c59-96b9-60f80b10f91b", + "id": "29ddb440-6a17-4e6d-b95c-3d090f9afb33", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -56619,7 +56619,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8562581b-e196-423f-80ec-b83959ed83a2", + "id": "578a32d8-99cb-4f8c-b22b-e0c73f84339a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -56710,7 +56710,7 @@ "_postman_previewlanguage": "json" }, { - "id": "33839dbf-e8ae-4bca-8bf7-e28b763469ff", + "id": "4f428547-e374-446a-91bb-46ee0cbd1e72", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -56807,7 +56807,7 @@ } }, { - "id": "8d79bf43-6667-44e4-9434-600ac3885514", + "id": "0bfcca8c-af9a-48ac-9bd3-04b4f7509c3f", "name": "List of entitlements children", "request": { "name": "List of entitlements children", @@ -56895,7 +56895,7 @@ }, "response": [ { - "id": "38f82c31-d455-4ad6-8e7c-14886e881533", + "id": "256c4969-3d83-4f28-856f-ce89fa2a9ce0", "name": "List of entitlements children from an entitlement", "originalRequest": { "url": { @@ -56986,7 +56986,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f60c373d-f99d-4585-bc90-038f96cabeee", + "id": "a727200c-aa29-465c-9975-390e57dc5500", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -57077,7 +57077,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8b21c91f-ddec-4aeb-955d-7f3b848c3b53", + "id": "e2b2ab82-0c8b-4062-9b9a-c6c5baf20b9e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -57168,7 +57168,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3e8440bd-ede9-48f1-870c-3a6cfb79fe1d", + "id": "11d07c85-2541-44af-9052-a32bb0849e9c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -57259,7 +57259,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4490da61-f065-4825-aa9a-d6ec412a0081", + "id": "7c3527a5-cb60-43d8-8f0a-895039306209", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -57350,7 +57350,7 @@ "_postman_previewlanguage": "json" }, { - "id": "427df880-1409-4cac-bb0b-c38c85f477ee", + "id": "cb7ca29d-113a-4e97-af8b-84ab9dd98e67", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -57441,7 +57441,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3c7cf50d-09d4-49e5-ba5e-9e3ec2b1e29b", + "id": "4257d2da-65b5-44e0-8540-3fcc9075b357", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -57538,7 +57538,7 @@ } }, { - "id": "0ec76f0d-fad5-4ec7-a81c-1360d6d8984c", + "id": "e5bf0df3-2f65-4142-8848-1dbe63d06643", "name": "Bulk update an entitlement list", "request": { "name": "Bulk update an entitlement list", @@ -57581,7 +57581,7 @@ }, "response": [ { - "id": "03ca43a9-1a80-4ce7-af21-17b6a44a632d", + "id": "c9e9b446-1560-4104-a8c4-706d43f7381e", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -57628,7 +57628,7 @@ "_postman_previewlanguage": "text" }, { - "id": "ca57ffb0-1bfe-4665-81e9-4a5ff085447f", + "id": "d97f1f66-2c9c-4fd8-9a71-c9539647477c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -57685,7 +57685,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8a275d26-9080-4979-b3a7-09aec2bf14b9", + "id": "1334f77e-d541-4426-a537-25a0f9e672e8", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -57742,7 +57742,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1ac189fa-1344-4abd-a9e7-7b1782c2dce2", + "id": "fcfd64b8-a401-4706-ad25-4c770144411f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -57799,7 +57799,7 @@ "_postman_previewlanguage": "json" }, { - "id": "24573af4-d294-4038-9433-487134bf922a", + "id": "f9197d4f-4550-41f7-8658-53a29c84bec1", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -57856,7 +57856,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a82e518c-bf01-448c-a2f8-0e394607a9c1", + "id": "d90639ae-15a1-499f-8759-10b1b120de8e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -57919,7 +57919,7 @@ } }, { - "id": "573b8c4f-4792-42b8-a5d1-842d30cff225", + "id": "453269eb-619d-48be-8729-04fdcd6107c1", "name": "Get Entitlement Request Config", "request": { "name": "Get Entitlement Request Config", @@ -57961,7 +57961,7 @@ }, "response": [ { - "id": "69bc8d32-04bd-4f62-9433-fb0d6b60776e", + "id": "460207d1-bf4b-4acc-864c-e343c8984144", "name": "An Entitlement Request Config", "originalRequest": { "url": { @@ -58006,7 +58006,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5313414a-8beb-461e-83fe-bd8be16bd0a4", + "id": "22808778-5bb2-4ca7-bf92-9d09c7c57ad0", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -58051,7 +58051,7 @@ "_postman_previewlanguage": "json" }, { - "id": "46e168b9-0acf-4fc9-8d86-b13d1b23e220", + "id": "d02d3f25-b614-4645-8709-9bc5e24133bf", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -58096,7 +58096,7 @@ "_postman_previewlanguage": "json" }, { - "id": "09ea5d43-3e71-4517-b070-51a9ac61a842", + "id": "e307c8aa-964b-4803-bb76-dfcf4162b6cf", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -58141,7 +58141,7 @@ "_postman_previewlanguage": "json" }, { - "id": "11e1e531-5edd-40fe-8b1b-b00348317e92", + "id": "216d5f7e-46d0-4233-af23-c1f7161493c5", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -58186,7 +58186,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a3012ef6-7ec6-4a8e-ad58-fd4262092854", + "id": "eafc78e7-fe8e-417b-bc12-da6e504499cc", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -58231,7 +58231,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4af8afad-4c48-4903-9f86-caa08ebae353", + "id": "2d92ddfc-531a-4b35-8c47-387e9cf51a79", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -58282,7 +58282,7 @@ } }, { - "id": "da7f1609-3908-4aa3-adfe-c41b66264afd", + "id": "91dc96cf-1745-4fa7-8875-5670ff89017f", "name": "Replace Entitlement Request Config", "request": { "name": "Replace Entitlement Request Config", @@ -58337,7 +58337,7 @@ }, "response": [ { - "id": "cc1cd9f5-c20a-4d53-9a6a-ffe587703985", + "id": "03f540b8-608c-429f-ab66-4902f114490a", "name": "Responds with the entitlement request config as updated.", "originalRequest": { "url": { @@ -58395,7 +58395,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3e07c597-d372-4174-9911-ee4b7bcb0d78", + "id": "b05eab7e-2352-4ba7-860d-c588087441d8", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -58453,7 +58453,7 @@ "_postman_previewlanguage": "json" }, { - "id": "32f5b18d-364a-49c1-90ed-80a53b9f2f61", + "id": "eec3babf-fe2d-4b85-9c80-4e106966297e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -58511,7 +58511,7 @@ "_postman_previewlanguage": "json" }, { - "id": "47f0dc83-dfb5-41a1-89be-2d429a530d9c", + "id": "05a8e574-42aa-4905-9ec2-5553927c2ea5", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -58569,7 +58569,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a7e2b0da-7587-4bca-a41d-a3b6781894d1", + "id": "a8909ffe-d207-460d-b174-a4f3d4087ac5", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -58627,7 +58627,7 @@ "_postman_previewlanguage": "json" }, { - "id": "22dc1c61-d590-41b2-8fea-f3563e5e881c", + "id": "31765cb4-03e3-469d-8adc-ad68c3cfc1a4", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -58685,7 +58685,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6e403d5d-f4f6-424b-9510-ba5bc9cfb4ae", + "id": "10bc997c-6d2d-435c-a424-2d632470b8ed", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -58749,7 +58749,7 @@ } }, { - "id": "ca6c3268-13c2-49ad-ba37-f7852dba3b36", + "id": "4ea4b528-84f7-4215-9f69-bdab332caa29", "name": "Reset Source Entitlements", "request": { "name": "Reset Source Entitlements", @@ -58792,7 +58792,7 @@ }, "response": [ { - "id": "df99a73c-2817-47f7-80e3-d3df1a1c4386", + "id": "1cb8d8ce-8723-483b-ade0-d0fe020732ad", "name": "Entitlement source reset task result", "originalRequest": { "url": { @@ -58838,7 +58838,7 @@ "_postman_previewlanguage": "json" }, { - "id": "778a1236-a8a6-4daf-9bd9-26c6c691543d", + "id": "b82a0655-08e4-4a98-b3cf-01256ba52258", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -58884,7 +58884,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8c3ce84b-2757-42ef-aa07-492bfd2497a3", + "id": "1bbe9b7c-361f-4b81-95a7-72618ca3b4b0", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -58930,7 +58930,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4047c25b-b282-4da3-b911-083c77ad5227", + "id": "5dbc56eb-7ee8-4da9-8cb3-a278376f764d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -58976,7 +58976,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a52552cb-6589-4c48-80cd-8a559b1cd2d6", + "id": "6c2f88a1-4b03-4ced-8211-23687fd69123", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -59022,7 +59022,7 @@ "_postman_previewlanguage": "json" }, { - "id": "56dc09a1-e265-48af-b426-028146488cf5", + "id": "5d2133ae-9db9-45ab-ab7b-8383d3566552", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -59074,7 +59074,7 @@ } }, { - "id": "5988d229-448b-43a8-be6d-c67c8eff85d3", + "id": "8d1df9c3-84d2-4ef2-9b03-6e307f4c2203", "name": "Add metadata to an entitlement.", "request": { "name": "Add metadata to an entitlement.", @@ -59139,7 +59139,7 @@ }, "response": [ { - "id": "ef628aa8-ce7d-4540-962e-452cf2123142", + "id": "4a6caf67-ec10-4375-82c9-5009288cb43c", "name": "OK", "originalRequest": { "url": { @@ -59187,7 +59187,7 @@ "_postman_previewlanguage": "json" }, { - "id": "76ee8f28-01a4-4890-a2f1-733ee4fefe7f", + "id": "c32bd30a-62d8-4ed9-bb1e-3c927d22dc78", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -59235,7 +59235,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d3ac95ed-38e1-4ab8-955a-ee544bf69910", + "id": "1e260f37-8702-46c6-b585-ede59d4ce3c5", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -59283,7 +59283,7 @@ "_postman_previewlanguage": "json" }, { - "id": "38583bdf-2ba8-43ed-9ebd-0ad1d233baba", + "id": "80f88a29-800d-48bd-90ad-3923cca58e2f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -59331,7 +59331,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d56d942c-f59f-4be1-841c-2f3871a7f9e1", + "id": "e1b8f8f0-4609-4f82-8a3b-69a33037f731", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -59379,7 +59379,7 @@ "_postman_previewlanguage": "json" }, { - "id": "aa5067bc-27c8-490a-9527-62b9ed4325c4", + "id": "58129a66-29bd-4ca5-87a5-8860b7128f1f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -59433,7 +59433,7 @@ } }, { - "id": "af23756f-10d3-4133-99bf-46a9ec39300a", + "id": "5f61f476-8d49-4860-9aa1-192ff4093f81", "name": "Remove metadata from an entitlement.", "request": { "name": "Remove metadata from an entitlement.", @@ -59498,7 +59498,7 @@ }, "response": [ { - "id": "3fa431a7-171d-4330-9540-2c9651fd79b3", + "id": "1f2add05-6baa-4ce2-ba9b-7456e98c6d95", "name": "OK", "originalRequest": { "url": { @@ -59536,7 +59536,7 @@ "_postman_previewlanguage": "text" }, { - "id": "034949b2-3221-4818-b590-26d215fc8493", + "id": "5464b8c9-2f48-4afe-941c-976da9ee8402", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -59584,7 +59584,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e354596f-ad2b-4c70-a981-db051ed7e494", + "id": "ee001b76-e3e3-4171-86ca-47efb5e79544", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -59632,7 +59632,7 @@ "_postman_previewlanguage": "json" }, { - "id": "013b791d-9faf-4339-af18-9724f438d8d4", + "id": "1b6e631c-61f0-4732-95dd-ba476c2b9b76", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -59680,7 +59680,7 @@ "_postman_previewlanguage": "json" }, { - "id": "915c7b75-16a4-4bad-8bbb-857e37939d2c", + "id": "331f3f16-da57-4eea-8e7b-2cb87b6ad2ee", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -59728,7 +59728,7 @@ "_postman_previewlanguage": "json" }, { - "id": "69992027-4fba-4313-98cc-1f7ff3f8c117", + "id": "e31bb6a6-cb0a-40d2-a53e-e8b18eb45e9b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -59782,7 +59782,7 @@ } }, { - "id": "08bf417e-bae4-4b9f-aa39-c85d0e711a0b", + "id": "c75488d3-e834-4dcb-a9d3-cdbe21e16fc5", "name": "Aggregate Entitlements", "request": { "name": "Aggregate Entitlements", @@ -59834,7 +59834,7 @@ "type": "text/plain" }, "key": "csvFile", - "value": "anim laborum esse", + "value": "et laboris", "type": "text" } ] @@ -59842,7 +59842,7 @@ }, "response": [ { - "id": "762052cf-2a0a-4c5f-96bc-4c13b13db788", + "id": "dcf7adac-ddbf-4bb9-b031-aac7593ea6b3", "name": "Aggregate Entitlements Task", "originalRequest": { "url": { @@ -59886,7 +59886,7 @@ "type": "text/plain" }, "key": "csvFile", - "value": "anim laborum esse", + "value": "et laboris", "type": "text" } ] @@ -59905,7 +59905,7 @@ "_postman_previewlanguage": "json" }, { - "id": "724bd0a5-6021-4a99-a787-678ad476dde5", + "id": "4620d737-3aa0-4fdd-8dc0-7d624b1eca4d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -59949,7 +59949,7 @@ "type": "text/plain" }, "key": "csvFile", - "value": "anim laborum esse", + "value": "et laboris", "type": "text" } ] @@ -59968,7 +59968,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f933cbc4-b70e-4e68-b6ec-5f93df0f254a", + "id": "2db436a2-b15a-4dc7-94a6-36867061fe40", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -60012,7 +60012,7 @@ "type": "text/plain" }, "key": "csvFile", - "value": "anim laborum esse", + "value": "et laboris", "type": "text" } ] @@ -60031,7 +60031,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fcef30a1-86ae-44e1-b6b2-6c9d52a7a5d0", + "id": "4c65eee0-a0a2-40d6-9284-144c541a6381", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -60075,7 +60075,7 @@ "type": "text/plain" }, "key": "csvFile", - "value": "anim laborum esse", + "value": "et laboris", "type": "text" } ] @@ -60094,7 +60094,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8c2b345f-fde5-478d-8bb0-f46f6627c312", + "id": "a487d226-2911-4c82-b7c5-edfaefa0045a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -60138,7 +60138,7 @@ "type": "text/plain" }, "key": "csvFile", - "value": "anim laborum esse", + "value": "et laboris", "type": "text" } ] @@ -60157,7 +60157,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d86c5a16-e709-4546-87f7-0665a02c04a9", + "id": "435fd8eb-535b-466c-bde0-c9cd36b302b6", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -60201,7 +60201,7 @@ "type": "text/plain" }, "key": "csvFile", - "value": "anim laborum esse", + "value": "et laboris", "type": "text" } ] @@ -60232,7 +60232,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": "f44e2a10-194e-4458-be8a-04b532476f8b", + "id": "4156228d-916c-41ef-89fd-26470ece974e", "name": "List Governance Groups", "request": { "name": "List Governance Groups", @@ -60307,7 +60307,7 @@ }, "response": [ { - "id": "ca81e3d7-ea82-44c6-91f8-3cdf61f3e048", + "id": "c9378152-2c4e-4755-aae9-8e8739ee2b50", "name": "List of Governance Groups", "originalRequest": { "url": { @@ -60396,7 +60396,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7ce91d66-473f-4f50-94c1-48b6e462c0c1", + "id": "ce556ea1-469a-467a-ad05-752ab9a524dc", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -60485,7 +60485,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6e8e2c72-68b1-4f58-9916-0b8f44892c28", + "id": "bc419b7d-15fc-466b-80ac-2550582ab1f4", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -60574,7 +60574,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e3becf4b-a24e-4536-91d6-cc4c17a38694", + "id": "f72abd6f-8832-4a2d-a25c-3cba2fd195e8", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -60663,7 +60663,7 @@ "_postman_previewlanguage": "json" }, { - "id": "de961a33-e6e0-40bc-9bc7-b45fdf4e4d50", + "id": "f61d10e4-74f5-4188-bb12-11c26212e1c2", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -60752,7 +60752,7 @@ "_postman_previewlanguage": "json" }, { - "id": "01103d8a-41c2-4d75-a934-b3fc3efdb7a3", + "id": "e4ce5746-443a-4cbf-aace-13b53cf781b4", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -60847,7 +60847,7 @@ } }, { - "id": "96c4129a-9102-4404-a151-dd455afeb703", + "id": "ce599882-c33f-4636-b7ec-61d23392e0b4", "name": "Create a new Governance Group.", "request": { "name": "Create a new Governance Group.", @@ -60889,7 +60889,7 @@ }, "response": [ { - "id": "a7b4f7e1-776b-456f-9996-82e6b3f24378", + "id": "f46a84f4-d3c0-4cb1-803b-c15351ddf7f9", "name": "Governance Group object created.", "originalRequest": { "url": { @@ -60945,7 +60945,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2ce0619a-8557-4887-bcaf-e119496a330a", + "id": "f8657332-b7c1-43d8-9772-6e6ce0490606", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -61001,7 +61001,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a52d44e7-fe9c-4936-8d8e-e71d76f9f419", + "id": "6c89c3ee-c90f-40eb-9631-b9d498e51b32", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -61057,7 +61057,7 @@ "_postman_previewlanguage": "json" }, { - "id": "53dcfde9-92c3-47a2-ae18-f3de68e06a34", + "id": "54291e1b-f385-4ed2-b498-63f44ee1b30e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -61113,7 +61113,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e86244f2-ec4b-4b9d-878a-aa1458a45aef", + "id": "8e759b13-61ee-46d4-998f-c18c89bf6c94", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -61169,7 +61169,7 @@ "_postman_previewlanguage": "json" }, { - "id": "42eeb977-6e01-427d-8a5b-395c56954d85", + "id": "5cfdbe65-0cef-4cc3-83ce-ca443fcc8a47", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -61231,7 +61231,7 @@ } }, { - "id": "0b81cb28-cde2-47b0-9093-c1fc9e71df71", + "id": "fd1477c5-3923-40fd-9733-58ae7674fac8", "name": "Get Governance Group by Id", "request": { "name": "Get Governance Group by Id", @@ -61272,7 +61272,7 @@ }, "response": [ { - "id": "5e829e45-7ac4-4c4a-9859-6669df45bf64", + "id": "b732e627-d719-4357-807e-d0ca64181b63", "name": "A Governance Group", "originalRequest": { "url": { @@ -61316,7 +61316,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d3351c0d-edd0-466c-8989-723f2cc3cfe7", + "id": "3cafdf6f-3185-45e1-9125-5faf926c9c5b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -61360,7 +61360,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3c8ccbde-34aa-4911-9d69-2a82bc2e6330", + "id": "7788cad7-37d2-46f3-98b6-a89ceeeb0002", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -61404,7 +61404,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2cd5ca85-9d74-4bbc-b3ba-bb0fc4adb050", + "id": "de6a6ea1-b278-4c01-8683-643998f4de59", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -61448,7 +61448,7 @@ "_postman_previewlanguage": "json" }, { - "id": "abe91851-ccfe-4ba4-8a30-8ae7ecef214d", + "id": "d514dbee-a081-4379-b8f6-fbd05737fe64", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -61492,7 +61492,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fbc93f98-edec-4496-a32c-6910ba4e7958", + "id": "d4af0b47-52f3-4464-839d-a7e99a04ed49", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -61542,7 +61542,7 @@ } }, { - "id": "ed309ec2-5526-4881-81a6-604b3cdbc36d", + "id": "2b114a88-ae70-45a2-a0c8-7225e82e8d4e", "name": "Delete a Governance Group", "request": { "name": "Delete a Governance Group", @@ -61583,7 +61583,7 @@ }, "response": [ { - "id": "dddec7e7-22dc-41b1-aec3-cc532cb32981", + "id": "fb3092d1-72a0-4f38-9ae8-32b16215f4bd", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -61617,7 +61617,7 @@ "_postman_previewlanguage": "text" }, { - "id": "6e1a89ee-07b1-45b0-ac4f-f519ec95ca41", + "id": "309f3b1c-8637-4b21-9428-e5f2e3769118", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -61661,7 +61661,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0e74a76e-5ec7-47aa-b83e-e217daf7084f", + "id": "14641c02-69eb-4e77-99d3-163b462d0cc2", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -61705,7 +61705,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cd9a35d0-a7cf-40ed-8012-2a72ee2eed7d", + "id": "f284c5a9-057f-4d7d-87fd-1ad0ff2b19fa", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -61749,7 +61749,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b261953f-663b-4bec-ad56-1434ed944f6c", + "id": "4b16af33-68bd-4a08-a67c-57c0678601a0", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -61793,7 +61793,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fed9f62f-d9c4-46d4-b21c-0d80284decca", + "id": "476509a6-1a58-41ad-b3a0-4049d576fb71", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -61843,7 +61843,7 @@ } }, { - "id": "af34109a-1f31-4b31-911f-0816dc91a114", + "id": "d9df6f71-7f2e-4211-ac5c-786dce0090d8", "name": "Patch a Governance Group", "request": { "name": "Patch a Governance Group", @@ -61897,7 +61897,7 @@ }, "response": [ { - "id": "a213ff13-7788-48c9-9386-5f91bb40286d", + "id": "f7b90b96-8f40-4da0-99c6-e5feb6ce1c06", "name": "A Governance Group.", "originalRequest": { "url": { @@ -61954,7 +61954,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9df15a79-9192-40a0-9511-88a3174247f7", + "id": "60ce71b1-45c5-4477-9153-45e527419864", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -62011,7 +62011,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9d659346-6370-4970-8c56-00adac83f2b2", + "id": "40cebe30-ec26-4f6c-8a2b-a61bea212eba", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -62068,7 +62068,7 @@ "_postman_previewlanguage": "json" }, { - "id": "600cb591-de39-4dd8-9c14-372ef58302b5", + "id": "dae1c34a-227f-4ef2-90cf-9ca796953119", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -62125,7 +62125,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d9dfe0e7-2bb3-4e45-968f-3267fa1a38e4", + "id": "87e1d692-1afc-4286-84eb-983c8bb62ee4", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -62182,7 +62182,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6b28ccb2-b8a6-4e21-8518-44629fa3c5ab", + "id": "5d1ff38b-fde6-4257-92e6-8e26dfb04d24", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -62245,7 +62245,7 @@ } }, { - "id": "b7b79bd2-5ef0-4ff3-957c-f67cc3f7d92b", + "id": "a8f4d30d-9fcc-46d0-980e-a3a979f42379", "name": "Delete Governance Group(s)", "request": { "name": "Delete Governance Group(s)", @@ -62288,7 +62288,7 @@ }, "response": [ { - "id": "6ed673ca-f2c8-4710-b0f8-699e64d4c7a0", + "id": "fc2a934e-e6ab-4d56-84fa-5d43bf0d67fe", "name": "Governance Group bulk delete response.", "originalRequest": { "url": { @@ -62345,7 +62345,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ccd15a03-c854-46e9-a942-18259910c97f", + "id": "923c9560-c302-44c0-8d47-8b453f1537c7", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -62402,7 +62402,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b8bcb4cf-ce73-4335-a105-7278f3ba0fa4", + "id": "4757fa40-7447-441e-b2a3-6cf4b0e0b205", "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": "2ebae499-b649-4b04-afb2-a6d9660ca71b", + "id": "4c45645c-4e62-49a8-822a-fc2f412b44b9", "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": "e74ff854-96a5-4342-9c55-99ea68593f4a", + "id": "78cb4aa4-9201-43e5-a853-d14c21ff2f39", "name": "Too Many Requests - Returned in response to too many requests in 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": "2af82614-2eb3-470b-ac61-25822568416e", + "id": "485e1286-7802-494f-ad0b-be2f1dcc9ec0", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -62636,7 +62636,7 @@ } }, { - "id": "25bc68a4-b7b6-4a65-b6e4-60314ccb2f1d", + "id": "1cc74aac-18d3-4057-b73b-acf8447a068b", "name": "List connections for Governance Group", "request": { "name": "List connections for Governance Group", @@ -62715,7 +62715,7 @@ }, "response": [ { - "id": "90c62537-8343-498a-955d-5e58b5ca3642", + "id": "661af01b-88d6-4457-a008-a9698e9dae74", "name": "List all connections associated with a Governance Group.", "originalRequest": { "url": { @@ -62797,7 +62797,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5d39145b-332d-49eb-92f4-c928ee3fd928", + "id": "e4b2e3b4-6fdf-4cae-8a39-c1fa2dd5e8d0", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -62879,7 +62879,7 @@ "_postman_previewlanguage": "json" }, { - "id": "59bc2b07-f415-4b78-8926-847f9438d9d5", + "id": "30083f9c-3365-4f61-932d-df146a53fe87", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -62961,7 +62961,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e4f10e49-c61e-430a-8ed9-9b4eb6032336", + "id": "250f9ccd-b665-437f-9cf0-587e7b1a74ba", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -63043,7 +63043,7 @@ "_postman_previewlanguage": "json" }, { - "id": "17ce66d3-8dcc-489e-b271-5745b5091999", + "id": "080194ba-2120-445b-856d-3933b1f62b86", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -63125,7 +63125,7 @@ "_postman_previewlanguage": "json" }, { - "id": "710610fe-9416-43e1-b98e-a5d306c869d9", + "id": "14a25940-1df6-4f80-89ff-a4f6a19ded7e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -63213,7 +63213,7 @@ } }, { - "id": "11c8d010-37df-43cc-b35f-4130afd090fc", + "id": "65cdfc04-fbc2-49d9-89c7-f72afde0d7a7", "name": "List Governance Group Members", "request": { "name": "List Governance Group Members", @@ -63292,7 +63292,7 @@ }, "response": [ { - "id": "97e461de-d55a-44ce-9256-01bd020c4409", + "id": "ba375c56-7693-40da-989d-000843ff8a31", "name": "List all members associated with a Governance Group.", "originalRequest": { "url": { @@ -63374,7 +63374,7 @@ "_postman_previewlanguage": "json" }, { - "id": "74a8cd6f-a8af-4ac7-b2e1-942df30906fe", + "id": "b4d50eb3-509a-469d-99dc-2307dd7db77f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -63456,7 +63456,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fc08217e-2c24-46c1-955a-f331d520d37d", + "id": "266f459b-d52c-4596-ba54-ff32bb790614", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -63538,7 +63538,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f87d2efa-28e6-4112-96f2-e955b50fc5e0", + "id": "640d3bc5-cb84-49fe-88c0-115bb513ec27", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -63620,7 +63620,7 @@ "_postman_previewlanguage": "json" }, { - "id": "27d83896-11e7-4bd5-a3b1-d9c1a93201c8", + "id": "dfa2e8a6-e4fd-4d6b-9b14-3cd96fdd77f4", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -63702,7 +63702,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5c632c61-b1e2-4fd0-81c5-d3c1754df5c9", + "id": "ef8eb02f-4eb2-4d97-80d7-85e8827853ed", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -63790,7 +63790,7 @@ } }, { - "id": "5f9cc60b-c51e-4c11-9a70-0197d14a849e", + "id": "ea5c0d1b-5ccd-4eee-8628-d2ef6cbb10d4", "name": "Add members to Governance Group", "request": { "name": "Add members to Governance Group", @@ -63846,7 +63846,7 @@ }, "response": [ { - "id": "bd27438a-e928-4fa7-9dab-6693bd7b7cf7", + "id": "70379231-7938-42ad-918f-2b52c2521954", "name": "List of added and not added identities into Governance Group members list.", "originalRequest": { "url": { @@ -63905,7 +63905,7 @@ "_postman_previewlanguage": "json" }, { - "id": "af74a9af-1337-4df1-9ec6-735691d0ccbb", + "id": "1c2e2f21-46ee-4305-b6aa-ddf037c4718a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -63964,7 +63964,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f74a7f7c-c278-40fd-9b72-a8736e1f6919", + "id": "479a2c84-fae9-4307-9370-9eaea9917968", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -64023,7 +64023,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d0749330-d190-4c7f-a14e-8c9cd31f6e3e", + "id": "47f73271-c24c-471e-bc6d-2ab40a4e3b0f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -64082,7 +64082,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c17cdac9-cba4-4820-b29e-5aa76777d6f8", + "id": "d2698484-e91b-4e38-93ae-b0363216880f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -64141,7 +64141,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8edce7ec-d025-4ca9-ae47-4591614835e2", + "id": "ef8c97ce-573e-4cb3-a07e-2d689904166f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -64206,7 +64206,7 @@ } }, { - "id": "e92493e8-d2c0-4862-80f1-a81b9b2d25f4", + "id": "1049a79e-b71d-4967-95a8-40855157c8a4", "name": "Remove members from Governance Group", "request": { "name": "Remove members from Governance Group", @@ -64262,7 +64262,7 @@ }, "response": [ { - "id": "3d8444c1-bb91-4bfd-9fb2-c05cf90b06f8", + "id": "3753fe0a-1d12-41ca-abcb-452847ae07ed", "name": "List of deleted and not deleted identities from Governance Group members list.", "originalRequest": { "url": { @@ -64321,7 +64321,7 @@ "_postman_previewlanguage": "json" }, { - "id": "577c83e4-d2f1-4045-8a74-a524a4a6fe5c", + "id": "85e9de25-cf61-4b97-b9d8-24bdb7c7bb4a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -64380,7 +64380,7 @@ "_postman_previewlanguage": "json" }, { - "id": "21578017-4631-4450-95d0-e49892fe4bc3", + "id": "fe7219b9-8d0b-4694-bf66-7d03b9789efe", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -64439,7 +64439,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b6617be4-7af5-4347-8a80-9667d7751422", + "id": "75e0b762-ebdf-47cb-a060-d42d5a66502a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -64498,7 +64498,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e15965a2-9a1b-42c5-b166-f322b1154fc7", + "id": "4d62c323-23fd-4aba-9991-fb2cff32bcf1", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -64557,7 +64557,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d4fbe134-3ce7-4438-ac05-bd936255a339", + "id": "633bebff-cf46-4465-b12c-7b1aef93adb6", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -64628,7 +64628,7 @@ "description": "", "item": [ { - "id": "1ef71629-0e38-4662-bddd-35cb6e677680", + "id": "96de50d7-eed8-4074-916e-1f10d4911aa7", "name": "Identity Access Request Recommendations", "request": { "name": "Identity Access Request Recommendations", @@ -64705,7 +64705,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "labore" + "value": "laborum qui aliquip irure" } ], "variable": [] @@ -64721,7 +64721,7 @@ }, "response": [ { - "id": "dc9a1411-9a65-4f30-aedb-d29b62bcc41c", + "id": "b36c4fe9-a86b-452c-988b-1a48f898fb13", "name": "List of access request recommendations for the identityId", "originalRequest": { "url": { @@ -64793,7 +64793,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "labore" + "value": "laborum qui aliquip irure" } ], "variable": [] @@ -64828,7 +64828,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e0145071-b0d2-4c3f-91c2-c74e176643fc", + "id": "37a8f1d2-afae-4e21-8b3a-3fde0f41f5f1", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -64900,7 +64900,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "labore" + "value": "laborum qui aliquip irure" } ], "variable": [] @@ -64935,7 +64935,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3bcfd19d-730b-4789-b88f-f42461188a50", + "id": "16b3ca64-1e4c-41cb-a98b-3d851155c373", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -65007,7 +65007,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "labore" + "value": "laborum qui aliquip irure" } ], "variable": [] @@ -65042,7 +65042,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3cf045e1-cce1-4b11-82b5-176936142d82", + "id": "332c5176-a91e-44fa-a69e-af594f8ac4b9", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -65114,7 +65114,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "labore" + "value": "laborum qui aliquip irure" } ], "variable": [] @@ -65149,7 +65149,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7683c6e7-f830-4dc0-b9c4-61d07b35d189", + "id": "9727d7cc-802b-419a-8a1a-946ddabb2eb6", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -65221,7 +65221,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "labore" + "value": "laborum qui aliquip irure" } ], "variable": [] @@ -65256,7 +65256,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d3aa68e7-eb06-4b03-a4a4-39405b9ea436", + "id": "70d0604d-7267-4013-ad5e-d679192fcdd3", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -65328,7 +65328,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "labore" + "value": "laborum qui aliquip irure" } ], "variable": [] @@ -65369,7 +65369,7 @@ } }, { - "id": "a432409b-f504-42db-ac26-6adc0f7436e5", + "id": "ac7bcaac-3f0a-4eed-967a-58f5d969b7da", "name": "Notification of Ignored Access Request Recommendations", "request": { "name": "Notification of Ignored Access Request Recommendations", @@ -65412,7 +65412,7 @@ }, "response": [ { - "id": "43c07193-7074-47f0-9dad-1affb98d5cb8", + "id": "4ebd04a0-628e-4b2e-bd15-738f0dfead70", "name": "Recommendation successfully stored as ignored.", "originalRequest": { "url": { @@ -65469,7 +65469,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0a094c28-ae04-4e93-9abc-39f263c91b09", + "id": "eca63f5a-988a-476d-ad06-c3d2badb775b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -65526,7 +65526,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3c39beea-a14e-40ad-b200-ddffceeb4da8", + "id": "6edd4d2e-2384-4a90-bba6-272a4199d595", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -65583,7 +65583,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1e0cf539-9585-4baa-b6e4-4dd089cbb8dd", + "id": "c6e963e5-8c1b-4da1-a7c0-7b7d2cb09992", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -65640,7 +65640,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1a411145-85f0-4374-b4ea-1c7062bd7c5f", + "id": "a4816687-d36a-4eef-b6d1-b35920cdd0f6", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -65697,7 +65697,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5365f581-b0e9-4c47-bb8f-4fdcdfdfdf0a", + "id": "a608defb-1b33-4917-90b5-caf037094d4a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -65760,7 +65760,7 @@ } }, { - "id": "78bf23a5-9858-48a6-9abf-aa2852ac4561", + "id": "ba4294c3-1533-47d9-832d-8068caf268bf", "name": "List of Ignored Access Request Recommendations", "request": { "name": "List of Ignored Access Request Recommendations", @@ -65836,7 +65836,7 @@ }, "response": [ { - "id": "6d20db3c-1625-4fe5-b1b7-45892ede6614", + "id": "1e8b4a72-97ef-4516-bac5-64e8caa15ca1", "name": "Returns list of ignored access request recommendations.", "originalRequest": { "url": { @@ -65926,7 +65926,7 @@ "_postman_previewlanguage": "json" }, { - "id": "95a2af69-c954-4d99-81ac-9914c60fc277", + "id": "baf1414f-4360-486e-95b2-dbfd6b093177", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -66016,7 +66016,7 @@ "_postman_previewlanguage": "json" }, { - "id": "29c2f4a2-2c42-4941-a892-c869b7f8fefc", + "id": "eec79406-f52e-44a9-8128-03fde25c5ec6", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -66106,7 +66106,7 @@ "_postman_previewlanguage": "json" }, { - "id": "03b092ac-9475-4f42-80dd-daaaa51b0e2e", + "id": "d0983eca-ca39-4bcc-94bc-d5a0bc3af5eb", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -66196,7 +66196,7 @@ "_postman_previewlanguage": "json" }, { - "id": "41a628c7-cdf8-4e78-ba79-3e56bef0f29b", + "id": "c9b51590-71ab-4845-8e9a-da91ca74a3a1", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -66286,7 +66286,7 @@ "_postman_previewlanguage": "json" }, { - "id": "05b6e61f-adf2-4d60-82d5-8536d41f2603", + "id": "1c56bb86-a352-44fa-ac96-1db29d4d1744", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -66382,7 +66382,7 @@ } }, { - "id": "e8335034-78ea-4b91-aefe-beb78dd67d05", + "id": "e1ca0905-94b7-4a67-a364-e85450ac384c", "name": "Notification of Requested Access Request Recommendations", "request": { "name": "Notification of Requested Access Request Recommendations", @@ -66425,7 +66425,7 @@ }, "response": [ { - "id": "8f45e29f-0d45-4a1f-8539-c2d23da9e155", + "id": "2959f28a-2357-4184-ada5-9fcccefabaa9", "name": "Notification successfully acknowledged.", "originalRequest": { "url": { @@ -66482,7 +66482,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1223ef0b-1e0e-4075-89d0-aa953cc32425", + "id": "a87f1303-508f-4169-835c-58b2952b108a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -66539,7 +66539,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a8f56e6d-9b0f-47e4-9cd4-848d4acf840c", + "id": "495a5ddb-b82a-479d-9f91-ec1256a122fe", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -66596,7 +66596,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5ccb98f1-0304-4d1c-935b-93ad6f93c509", + "id": "8c7bbb78-e81b-4227-a42f-be9fd55363e9", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -66653,7 +66653,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f01a083e-7641-4db7-ac9b-0f82b18d0d54", + "id": "1260a796-7de8-44f5-90a7-6aafa06c5db2", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -66710,7 +66710,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2bf8af6c-8122-4ce4-b5c8-cef0d88546cb", + "id": "537bae95-e4c1-40e9-9f0b-2e3f06a5f83a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -66773,7 +66773,7 @@ } }, { - "id": "ad9adc81-98c2-4c78-a5a3-1f3867782bb0", + "id": "033ab078-c3ea-46ed-8b83-7611441d666e", "name": "List of Requested Access Request Recommendations", "request": { "name": "List of Requested Access Request Recommendations", @@ -66833,7 +66833,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "labore" + "value": "laborum qui aliquip irure" } ], "variable": [] @@ -66849,7 +66849,7 @@ }, "response": [ { - "id": "9564a3c4-a4cc-4b86-ae15-ef2bcea0942a", + "id": "2c64043c-a0b4-4ad3-8168-f9328aafe39e", "name": "Returns the list of requested access request recommendations.", "originalRequest": { "url": { @@ -66904,7 +66904,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "labore" + "value": "laborum qui aliquip irure" } ], "variable": [] @@ -66939,7 +66939,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4da7ca8f-30bd-4649-8160-375d7422124e", + "id": "412ef242-52c8-457a-a8f5-95babaaf322c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -66994,7 +66994,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "labore" + "value": "laborum qui aliquip irure" } ], "variable": [] @@ -67029,7 +67029,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9a7cce32-a17b-4cef-bf16-ae7a967fcc3e", + "id": "1b2771b9-6992-4dad-89ad-96512779fea8", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -67084,7 +67084,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "labore" + "value": "laborum qui aliquip irure" } ], "variable": [] @@ -67119,7 +67119,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d508da49-79e4-4ea6-b48c-0a8740a287dc", + "id": "7ca4e8b3-748a-4a4e-bb70-6910cf655ab8", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -67174,7 +67174,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "labore" + "value": "laborum qui aliquip irure" } ], "variable": [] @@ -67209,7 +67209,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c3cc7918-a301-465a-a036-ced4742f0308", + "id": "f62bd8ae-2030-43b4-953d-e76215a7988c", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -67264,7 +67264,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "labore" + "value": "laborum qui aliquip irure" } ], "variable": [] @@ -67299,7 +67299,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3a4a887a-26cf-4e51-a612-d596ca1b7fdb", + "id": "6bd2ebf6-d96a-4af8-b5b5-0e7f0aeaf5a9", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -67354,7 +67354,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "labore" + "value": "laborum qui aliquip irure" } ], "variable": [] @@ -67395,7 +67395,7 @@ } }, { - "id": "ae6ef70b-1784-4fc0-a1a5-4511a3752bec", + "id": "4e9b38d3-0ac0-46bc-9c5e-4c07e108df4a", "name": "Notification of Viewed Access Request Recommendations", "request": { "name": "Notification of Viewed Access Request Recommendations", @@ -67438,7 +67438,7 @@ }, "response": [ { - "id": "e301629b-d8f9-4b15-a7f7-b0b70b9dbe0b", + "id": "e16d87aa-abb1-4777-a97e-48b5642d3972", "name": "Recommendation successfully stored as viewed.", "originalRequest": { "url": { @@ -67495,7 +67495,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f55f5334-02b3-4160-a010-eb7ac8984b48", + "id": "728e135b-5aa6-41f6-8a5e-1867c1c8a5a8", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -67552,7 +67552,7 @@ "_postman_previewlanguage": "json" }, { - "id": "91c5ec96-5696-4851-a7b6-5845fbc0cc5d", + "id": "6f040b27-c992-410a-bd0f-d73702e3dd06", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -67609,7 +67609,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dad92f28-8f6a-4d5e-aa75-77f947cb0850", + "id": "7f94c4d9-7581-45cc-aff5-5060a40cf706", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -67666,7 +67666,7 @@ "_postman_previewlanguage": "json" }, { - "id": "000791a7-2f97-4bff-be91-744ef2038831", + "id": "ff9f0546-65d4-4f94-8332-1c8a73aebbc4", "name": "Too Many Requests - Returned in response to too many requests in 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": "0f2cb6de-5632-4c03-9cd2-c6efd656b291", + "id": "cb0cb816-6ae3-46fa-8053-9800fd843901", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -67786,7 +67786,7 @@ } }, { - "id": "c5b732d0-56c8-4374-8b61-727638d28083", + "id": "76da3959-323d-47b6-9b0b-0101d6a2adcd", "name": "List of Viewed Access Request Recommendations", "request": { "name": "List of Viewed Access Request Recommendations", @@ -67846,7 +67846,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "labore" + "value": "laborum qui aliquip irure" } ], "variable": [] @@ -67862,7 +67862,7 @@ }, "response": [ { - "id": "6549b9d5-53ef-4531-b865-e62272c28f9d", + "id": "f94003c0-ebfb-4ba5-84e4-376f2135c40f", "name": "Returns list of viewed access request recommendations.", "originalRequest": { "url": { @@ -67917,7 +67917,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "labore" + "value": "laborum qui aliquip irure" } ], "variable": [] @@ -67952,7 +67952,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0e2695e0-edad-4822-a6da-31d06e9fb5ce", + "id": "c3e8fc53-f888-45f9-b4ed-10b1ec1642ec", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -68007,7 +68007,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "labore" + "value": "laborum qui aliquip irure" } ], "variable": [] @@ -68042,7 +68042,7 @@ "_postman_previewlanguage": "json" }, { - "id": "59c38bb9-3c7a-45f9-a874-c4cf4ad06bdf", + "id": "3590fe4d-6b1f-477f-98cb-fae6d673bed7", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -68097,7 +68097,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "labore" + "value": "laborum qui aliquip irure" } ], "variable": [] @@ -68132,7 +68132,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0a7bf7ce-d0f5-4ea1-8fb1-b148275af023", + "id": "d7b738e6-65ed-41bb-b68c-15e789c9d815", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -68187,7 +68187,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "labore" + "value": "laborum qui aliquip irure" } ], "variable": [] @@ -68222,7 +68222,7 @@ "_postman_previewlanguage": "json" }, { - "id": "61098db4-38a2-408d-805c-db2bf02a6032", + "id": "a2b9353d-f909-4ce0-9fd4-4eaeae605abb", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -68277,7 +68277,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "labore" + "value": "laborum qui aliquip irure" } ], "variable": [] @@ -68312,7 +68312,7 @@ "_postman_previewlanguage": "json" }, { - "id": "10fd7ad4-a5c2-4b84-82f8-17eaf982e618", + "id": "f4a8ec9a-ecf0-4777-bf3f-5ecf496310f2", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -68367,7 +68367,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "labore" + "value": "laborum qui aliquip irure" } ], "variable": [] @@ -68408,7 +68408,7 @@ } }, { - "id": "5417331a-0418-471b-83ef-bb3b734f2d1a", + "id": "8fd3981f-7867-4b92-b5ca-2203158cd214", "name": "Notification of Viewed Access Request Recommendations in Bulk", "request": { "name": "Notification of Viewed Access Request Recommendations in Bulk", @@ -68452,7 +68452,7 @@ }, "response": [ { - "id": "21ca22d1-9b7b-4490-9692-2bbebbfdf529", + "id": "215912dc-7fab-4e70-89fe-701127852a97", "name": "Recommendations successfully stored as viewed.", "originalRequest": { "url": { @@ -68510,7 +68510,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2fa30d84-b4a7-4b13-9cf6-2151e7f0949c", + "id": "b286d7d6-958b-45a9-8438-637a9c0994a9", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -68568,7 +68568,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e01bf342-ed3b-411b-b932-6d9b65857205", + "id": "ea15414d-d44c-4ef7-b210-f3a45232d67c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -68626,7 +68626,7 @@ "_postman_previewlanguage": "json" }, { - "id": "57f8599c-bff6-443a-8784-e994659b635b", + "id": "79e046c5-9794-4551-952e-bba78521bab6", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -68684,7 +68684,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b5cc265a-4add-4f5c-81a3-b6a715d1222f", + "id": "368558b3-5639-4f4c-aa62-8f375cca3e38", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -68742,7 +68742,7 @@ "_postman_previewlanguage": "json" }, { - "id": "27ed2afb-ac93-439a-a729-83e9685859ad", + "id": "b64f1bf0-3961-42e8-9fb6-6dce37e4147f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -68812,7 +68812,7 @@ "description": "", "item": [ { - "id": "69f07e20-9a6e-4347-a8ea-183ed2f7df70", + "id": "6cff85be-8a3c-49f3-a044-55ab07bff872", "name": "Get a paginated list of common access", "request": { "name": "Get a paginated list of common access", @@ -68887,7 +68887,7 @@ }, "response": [ { - "id": "c85bebe6-2d9b-4842-a2da-c60454f4e370", + "id": "b82e2460-4e1c-480e-b5fc-4fde778efa07", "name": "Succeeded. Returns a list of common access for a customer.", "originalRequest": { "url": { @@ -68971,12 +68971,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"555ab47a-0d32-4813-906f-adf3567de6a4\",\n \"access\": {\n \"id\": \"culpa\",\n \"type\": \"ROLE\",\n \"name\": \"Duis\",\n \"description\": \"proident pariatur do voluptate\",\n \"ownerName\": \"et\",\n \"ownerId\": \"laboris in eu\"\n },\n \"status\": \"voluptate\",\n \"commonAccessType\": \"UNSET\",\n \"lastUpdated\": \"2010-07-28T10:29:28.047Z\",\n \"reviewedByUser\": false,\n \"lastReviewed\": \"2001-08-31T05:13:27.951Z\",\n \"createdByUser\": false\n },\n {\n \"id\": \"555ab47a-0d32-4813-906f-adf3567de6a4\",\n \"access\": {\n \"id\": \"Excepteur velit mollit\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"sint deserunt in\",\n \"description\": \"tempor veniam minim\",\n \"ownerName\": \"occaecat qui ani\",\n \"ownerId\": \"mollit id dolor\"\n },\n \"status\": \"ea do quis aliquip incididunt\",\n \"commonAccessType\": \"UNSET\",\n \"lastUpdated\": \"1958-12-16T10:22:04.337Z\",\n \"reviewedByUser\": true,\n \"lastReviewed\": \"1978-11-03T05:25:49.962Z\",\n \"createdByUser\": false\n }\n]", + "body": "[\n {\n \"id\": \"555ab47a-0d32-4813-906f-adf3567de6a4\",\n \"access\": {\n \"id\": \"et exercitat\",\n \"type\": \"ROLE\",\n \"name\": \"elit id cupidatat culpa\",\n \"description\": \"Lorem no\",\n \"ownerName\": \"Lorem in\",\n \"ownerId\": \"dolore Lorem\"\n },\n \"status\": \"elit minim aute\",\n \"commonAccessType\": \"UNSET\",\n \"lastUpdated\": \"2018-01-15T17:38:18.054Z\",\n \"reviewedByUser\": false,\n \"lastReviewed\": \"1952-01-24T06:34:18.496Z\",\n \"createdByUser\": false\n },\n {\n \"id\": \"555ab47a-0d32-4813-906f-adf3567de6a4\",\n \"access\": {\n \"id\": \"ea proident\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"consequ\",\n \"description\": \"sed cupidatat occaecat esse enim\",\n \"ownerName\": \"mollit\",\n \"ownerId\": \"dolor\"\n },\n \"status\": \"pariatur proident\",\n \"commonAccessType\": \"UNSET\",\n \"lastUpdated\": \"2000-09-12T15:15:58.810Z\",\n \"reviewedByUser\": true,\n \"lastReviewed\": \"2009-03-17T14:26:59.858Z\",\n \"createdByUser\": false\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "2b6fdc7f-5a57-46b4-ba52-967bd83a17c9", + "id": "2822e044-b781-497e-aa0a-a895370e6a3c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -69065,7 +69065,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7c81c13e-9e89-46bb-946f-ea56d99c4f39", + "id": "1b293a3e-8992-4425-a3d2-d0ec2430f6a6", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -69154,7 +69154,7 @@ "_postman_previewlanguage": "json" }, { - "id": "140ab810-b214-43c5-a497-4345a7ea1304", + "id": "3398dccf-abdb-440f-b2d8-c6f4369e1f2c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -69243,7 +69243,7 @@ "_postman_previewlanguage": "json" }, { - "id": "35a52753-f4f2-40d5-ba95-875be2a4b23d", + "id": "3ec1e284-43ce-408b-9bbd-0e0ed68ff988", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -69338,7 +69338,7 @@ } }, { - "id": "63d1f92a-1dbe-4cc3-8546-a41541551078", + "id": "cfb313d2-2094-4291-b163-9a8b5f27148d", "name": "Create common access items", "request": { "name": "Create common access items", @@ -69369,7 +69369,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"access\": {\n \"id\": \"id non tempor cupidatat nulla\",\n \"type\": \"ROLE\",\n \"name\": \"Lorem esse non e\",\n \"description\": \"laborum velit \",\n \"ownerName\": \"fugiat eu id\",\n \"ownerId\": \"minim\"\n },\n \"status\": \"CONFIRMED\"\n}", + "raw": "{\n \"access\": {\n \"id\": \"nulla eu ad\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"dolor fugiat\",\n \"description\": \"el\",\n \"ownerName\": \"ad eu irure ex\",\n \"ownerId\": \"consequat aliqua sunt proide\"\n },\n \"status\": \"CONFIRMED\"\n}", "options": { "raw": { "headerFamily": "json", @@ -69380,7 +69380,7 @@ }, "response": [ { - "id": "9629b059-a5b5-4370-a22e-908ef6943eae", + "id": "a3f145b4-593d-4cdb-af26-dc4a57fb4429", "name": "Returns details of the common access classification request.", "originalRequest": { "url": { @@ -69414,7 +69414,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"access\": {\n \"id\": \"id non tempor cupidatat nulla\",\n \"type\": \"ROLE\",\n \"name\": \"Lorem esse non e\",\n \"description\": \"laborum velit \",\n \"ownerName\": \"fugiat eu id\",\n \"ownerId\": \"minim\"\n },\n \"status\": \"CONFIRMED\"\n}", + "raw": "{\n \"access\": {\n \"id\": \"nulla eu ad\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"dolor fugiat\",\n \"description\": \"el\",\n \"ownerName\": \"ad eu irure ex\",\n \"ownerId\": \"consequat aliqua sunt proide\"\n },\n \"status\": \"CONFIRMED\"\n}", "options": { "raw": { "headerFamily": "json", @@ -69431,12 +69431,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"occaecat cillum\",\n \"access\": {\n \"id\": \"proident fugiat veniam officia irure\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"ut laboris deserunt\",\n \"description\": \"ipsu\",\n \"ownerName\": \"ea ad laborum amet\",\n \"ownerId\": \"Excepteur Lorem ullamco\"\n },\n \"status\": \"DENIED\",\n \"lastUpdated\": \"mollit elit do\",\n \"reviewedByUser\": false,\n \"lastReviewed\": \"fugiat ad velit\",\n \"createdByUser\": \"dolor minim ipsum\"\n}", + "body": "{\n \"id\": \"dolor anim\",\n \"access\": {\n \"id\": \"commodo consectetur\",\n \"type\": \"ROLE\",\n \"name\": \"in tempor mollit\",\n \"description\": \"commodo\",\n \"ownerName\": \"officia eiusmod cupidatat\",\n \"ownerId\": \"eiusmod Excepteur velit quis\"\n },\n \"status\": \"DENIED\",\n \"lastUpdated\": \"veniam est proident sit\",\n \"reviewedByUser\": false,\n \"lastReviewed\": \"amet eu elit aliquip velit\",\n \"createdByUser\": \"adipisicing sunt cillum\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "41bc41b3-180a-45c6-b4ba-535324c7ac48", + "id": "1759e536-af32-43e1-9fe1-1e70796444c9", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -69470,7 +69470,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"access\": {\n \"id\": \"id non tempor cupidatat nulla\",\n \"type\": \"ROLE\",\n \"name\": \"Lorem esse non e\",\n \"description\": \"laborum velit \",\n \"ownerName\": \"fugiat eu id\",\n \"ownerId\": \"minim\"\n },\n \"status\": \"CONFIRMED\"\n}", + "raw": "{\n \"access\": {\n \"id\": \"nulla eu ad\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"dolor fugiat\",\n \"description\": \"el\",\n \"ownerName\": \"ad eu irure ex\",\n \"ownerId\": \"consequat aliqua sunt proide\"\n },\n \"status\": \"CONFIRMED\"\n}", "options": { "raw": { "headerFamily": "json", @@ -69492,7 +69492,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f91b78fb-62db-48a6-a484-8804f5e8359b", + "id": "1c8c8cca-37c5-4fd1-aeb2-2388d06afa8f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -69526,7 +69526,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"access\": {\n \"id\": \"id non tempor cupidatat nulla\",\n \"type\": \"ROLE\",\n \"name\": \"Lorem esse non e\",\n \"description\": \"laborum velit \",\n \"ownerName\": \"fugiat eu id\",\n \"ownerId\": \"minim\"\n },\n \"status\": \"CONFIRMED\"\n}", + "raw": "{\n \"access\": {\n \"id\": \"nulla eu ad\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"dolor fugiat\",\n \"description\": \"el\",\n \"ownerName\": \"ad eu irure ex\",\n \"ownerId\": \"consequat aliqua sunt proide\"\n },\n \"status\": \"CONFIRMED\"\n}", "options": { "raw": { "headerFamily": "json", @@ -69548,7 +69548,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cafd2f36-f47f-48f9-82eb-b660a3086ed1", + "id": "15d1f22f-f25c-414c-9805-68ecfe1a21d7", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -69582,7 +69582,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"access\": {\n \"id\": \"id non tempor cupidatat nulla\",\n \"type\": \"ROLE\",\n \"name\": \"Lorem esse non e\",\n \"description\": \"laborum velit \",\n \"ownerName\": \"fugiat eu id\",\n \"ownerId\": \"minim\"\n },\n \"status\": \"CONFIRMED\"\n}", + "raw": "{\n \"access\": {\n \"id\": \"nulla eu ad\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"dolor fugiat\",\n \"description\": \"el\",\n \"ownerName\": \"ad eu irure ex\",\n \"ownerId\": \"consequat aliqua sunt proide\"\n },\n \"status\": \"CONFIRMED\"\n}", "options": { "raw": { "headerFamily": "json", @@ -69604,7 +69604,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eccf94b2-7adc-4bd0-8271-36b64f4189f8", + "id": "69626620-4d16-4c69-ab3a-e72c1e121a19", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -69638,7 +69638,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"access\": {\n \"id\": \"id non tempor cupidatat nulla\",\n \"type\": \"ROLE\",\n \"name\": \"Lorem esse non e\",\n \"description\": \"laborum velit \",\n \"ownerName\": \"fugiat eu id\",\n \"ownerId\": \"minim\"\n },\n \"status\": \"CONFIRMED\"\n}", + "raw": "{\n \"access\": {\n \"id\": \"nulla eu ad\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"dolor fugiat\",\n \"description\": \"el\",\n \"ownerName\": \"ad eu irure ex\",\n \"ownerId\": \"consequat aliqua sunt proide\"\n },\n \"status\": \"CONFIRMED\"\n}", "options": { "raw": { "headerFamily": "json", @@ -69660,7 +69660,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4d6d49bf-b770-49eb-8b82-449409b922bc", + "id": "ae8b7370-0405-4326-b070-9754f6054a7e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -69694,7 +69694,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"access\": {\n \"id\": \"id non tempor cupidatat nulla\",\n \"type\": \"ROLE\",\n \"name\": \"Lorem esse non e\",\n \"description\": \"laborum velit \",\n \"ownerName\": \"fugiat eu id\",\n \"ownerId\": \"minim\"\n },\n \"status\": \"CONFIRMED\"\n}", + "raw": "{\n \"access\": {\n \"id\": \"nulla eu ad\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"dolor fugiat\",\n \"description\": \"el\",\n \"ownerName\": \"ad eu irure ex\",\n \"ownerId\": \"consequat aliqua sunt proide\"\n },\n \"status\": \"CONFIRMED\"\n}", "options": { "raw": { "headerFamily": "json", @@ -69722,7 +69722,7 @@ } }, { - "id": "08fa1966-a0d9-4732-acb1-8844cd6d1f8a", + "id": "03525ca0-d657-4f41-899e-3d4871c99b5f", "name": "Bulk update common access status", "request": { "name": "Bulk update common access status", @@ -69754,7 +69754,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"confirmedIds\": [\n \"e0dcd958-c983-e0b5-c5d1-6a3da5402af8\",\n \"urn:uuid:a7bdef37-671e-ec42-cfbd-e63fcf65ef45\"\n ],\n \"deniedIds\": [\n \"urn:uuid:1d311dc9-0c27-271f-176a-565d1d88cfaa\",\n \"2a3ea939-3481-1ec7-6ad4-69dc0b3c3e43\"\n ]\n },\n {\n \"confirmedIds\": [\n \"urn:uuid:64534a4a-1b30-2aae-29ae-40ba6c3ab5e0\",\n \"d7a2762d-6c30-a137-7482-62438276d87b\"\n ],\n \"deniedIds\": [\n \"urn:uuid:6f938489-f6c5-379c-8b74-70a22488e282\",\n \"24001feb-a133-9f7c-e349-0ca466356154\"\n ]\n }\n]", + "raw": "[\n {\n \"confirmedIds\": [\n \"d7e18e13-c1f3-c5cd-089d-5144335251ea\",\n \"urn:uuid:d3c5805b-2f4e-35ad-3359-b47fd04ba12c\"\n ],\n \"deniedIds\": [\n \"31930292-24bd-f9ca-8cbc-bf2a59570793\",\n \"0eaf8232-9d25-cbf1-8963-99dd78294a5f\"\n ]\n },\n {\n \"confirmedIds\": [\n \"urn:uuid:231cae6d-3b7c-4f23-1709-7e495a46fb21\",\n \"urn:uuid:40fed15a-b829-efb6-a399-6ffe0707b5c6\"\n ],\n \"deniedIds\": [\n \"urn:uuid:3d7a9280-a66f-ec56-343d-e6e95e118b30\",\n \"urn:uuid:2acdcb45-d906-89cc-1307-4d92cbf65792\"\n ]\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -69765,7 +69765,7 @@ }, "response": [ { - "id": "3254ccbe-ef67-4538-9db1-2a3b7db8ddda", + "id": "69e8a6fd-44f9-4d3b-be86-bd3c9f1271db", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -69800,7 +69800,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"confirmedIds\": [\n \"e0dcd958-c983-e0b5-c5d1-6a3da5402af8\",\n \"urn:uuid:a7bdef37-671e-ec42-cfbd-e63fcf65ef45\"\n ],\n \"deniedIds\": [\n \"urn:uuid:1d311dc9-0c27-271f-176a-565d1d88cfaa\",\n \"2a3ea939-3481-1ec7-6ad4-69dc0b3c3e43\"\n ]\n },\n {\n \"confirmedIds\": [\n \"urn:uuid:64534a4a-1b30-2aae-29ae-40ba6c3ab5e0\",\n \"d7a2762d-6c30-a137-7482-62438276d87b\"\n ],\n \"deniedIds\": [\n \"urn:uuid:6f938489-f6c5-379c-8b74-70a22488e282\",\n \"24001feb-a133-9f7c-e349-0ca466356154\"\n ]\n }\n]", + "raw": "[\n {\n \"confirmedIds\": [\n \"d7e18e13-c1f3-c5cd-089d-5144335251ea\",\n \"urn:uuid:d3c5805b-2f4e-35ad-3359-b47fd04ba12c\"\n ],\n \"deniedIds\": [\n \"31930292-24bd-f9ca-8cbc-bf2a59570793\",\n \"0eaf8232-9d25-cbf1-8963-99dd78294a5f\"\n ]\n },\n {\n \"confirmedIds\": [\n \"urn:uuid:231cae6d-3b7c-4f23-1709-7e495a46fb21\",\n \"urn:uuid:40fed15a-b829-efb6-a399-6ffe0707b5c6\"\n ],\n \"deniedIds\": [\n \"urn:uuid:3d7a9280-a66f-ec56-343d-e6e95e118b30\",\n \"urn:uuid:2acdcb45-d906-89cc-1307-4d92cbf65792\"\n ]\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -69822,7 +69822,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c0dae6a1-950e-4724-b83c-2aaa7a18b414", + "id": "fb67034a-1cbd-4dca-8294-daa47fb252e0", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -69857,7 +69857,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"confirmedIds\": [\n \"e0dcd958-c983-e0b5-c5d1-6a3da5402af8\",\n \"urn:uuid:a7bdef37-671e-ec42-cfbd-e63fcf65ef45\"\n ],\n \"deniedIds\": [\n \"urn:uuid:1d311dc9-0c27-271f-176a-565d1d88cfaa\",\n \"2a3ea939-3481-1ec7-6ad4-69dc0b3c3e43\"\n ]\n },\n {\n \"confirmedIds\": [\n \"urn:uuid:64534a4a-1b30-2aae-29ae-40ba6c3ab5e0\",\n \"d7a2762d-6c30-a137-7482-62438276d87b\"\n ],\n \"deniedIds\": [\n \"urn:uuid:6f938489-f6c5-379c-8b74-70a22488e282\",\n \"24001feb-a133-9f7c-e349-0ca466356154\"\n ]\n }\n]", + "raw": "[\n {\n \"confirmedIds\": [\n \"d7e18e13-c1f3-c5cd-089d-5144335251ea\",\n \"urn:uuid:d3c5805b-2f4e-35ad-3359-b47fd04ba12c\"\n ],\n \"deniedIds\": [\n \"31930292-24bd-f9ca-8cbc-bf2a59570793\",\n \"0eaf8232-9d25-cbf1-8963-99dd78294a5f\"\n ]\n },\n {\n \"confirmedIds\": [\n \"urn:uuid:231cae6d-3b7c-4f23-1709-7e495a46fb21\",\n \"urn:uuid:40fed15a-b829-efb6-a399-6ffe0707b5c6\"\n ],\n \"deniedIds\": [\n \"urn:uuid:3d7a9280-a66f-ec56-343d-e6e95e118b30\",\n \"urn:uuid:2acdcb45-d906-89cc-1307-4d92cbf65792\"\n ]\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -69879,7 +69879,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0f1fd7e6-18b0-4c0d-8c3a-c2beb43cabc3", + "id": "a9a4d4cc-08e6-4056-9439-10ed75c065f5", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -69914,7 +69914,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"confirmedIds\": [\n \"e0dcd958-c983-e0b5-c5d1-6a3da5402af8\",\n \"urn:uuid:a7bdef37-671e-ec42-cfbd-e63fcf65ef45\"\n ],\n \"deniedIds\": [\n \"urn:uuid:1d311dc9-0c27-271f-176a-565d1d88cfaa\",\n \"2a3ea939-3481-1ec7-6ad4-69dc0b3c3e43\"\n ]\n },\n {\n \"confirmedIds\": [\n \"urn:uuid:64534a4a-1b30-2aae-29ae-40ba6c3ab5e0\",\n \"d7a2762d-6c30-a137-7482-62438276d87b\"\n ],\n \"deniedIds\": [\n \"urn:uuid:6f938489-f6c5-379c-8b74-70a22488e282\",\n \"24001feb-a133-9f7c-e349-0ca466356154\"\n ]\n }\n]", + "raw": "[\n {\n \"confirmedIds\": [\n \"d7e18e13-c1f3-c5cd-089d-5144335251ea\",\n \"urn:uuid:d3c5805b-2f4e-35ad-3359-b47fd04ba12c\"\n ],\n \"deniedIds\": [\n \"31930292-24bd-f9ca-8cbc-bf2a59570793\",\n \"0eaf8232-9d25-cbf1-8963-99dd78294a5f\"\n ]\n },\n {\n \"confirmedIds\": [\n \"urn:uuid:231cae6d-3b7c-4f23-1709-7e495a46fb21\",\n \"urn:uuid:40fed15a-b829-efb6-a399-6ffe0707b5c6\"\n ],\n \"deniedIds\": [\n \"urn:uuid:3d7a9280-a66f-ec56-343d-e6e95e118b30\",\n \"urn:uuid:2acdcb45-d906-89cc-1307-4d92cbf65792\"\n ]\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -69936,7 +69936,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5200e857-d64f-4159-b0c5-43e5f65767f1", + "id": "fd3b5130-d982-485d-afc3-91be34fbf095", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -69971,7 +69971,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"confirmedIds\": [\n \"e0dcd958-c983-e0b5-c5d1-6a3da5402af8\",\n \"urn:uuid:a7bdef37-671e-ec42-cfbd-e63fcf65ef45\"\n ],\n \"deniedIds\": [\n \"urn:uuid:1d311dc9-0c27-271f-176a-565d1d88cfaa\",\n \"2a3ea939-3481-1ec7-6ad4-69dc0b3c3e43\"\n ]\n },\n {\n \"confirmedIds\": [\n \"urn:uuid:64534a4a-1b30-2aae-29ae-40ba6c3ab5e0\",\n \"d7a2762d-6c30-a137-7482-62438276d87b\"\n ],\n \"deniedIds\": [\n \"urn:uuid:6f938489-f6c5-379c-8b74-70a22488e282\",\n \"24001feb-a133-9f7c-e349-0ca466356154\"\n ]\n }\n]", + "raw": "[\n {\n \"confirmedIds\": [\n \"d7e18e13-c1f3-c5cd-089d-5144335251ea\",\n \"urn:uuid:d3c5805b-2f4e-35ad-3359-b47fd04ba12c\"\n ],\n \"deniedIds\": [\n \"31930292-24bd-f9ca-8cbc-bf2a59570793\",\n \"0eaf8232-9d25-cbf1-8963-99dd78294a5f\"\n ]\n },\n {\n \"confirmedIds\": [\n \"urn:uuid:231cae6d-3b7c-4f23-1709-7e495a46fb21\",\n \"urn:uuid:40fed15a-b829-efb6-a399-6ffe0707b5c6\"\n ],\n \"deniedIds\": [\n \"urn:uuid:3d7a9280-a66f-ec56-343d-e6e95e118b30\",\n \"urn:uuid:2acdcb45-d906-89cc-1307-4d92cbf65792\"\n ]\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -69993,7 +69993,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c24f78a9-4867-496b-93fd-a0dbb8b91ccf", + "id": "0c610309-d5ba-4a27-a321-95dd38b473dd", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -70028,7 +70028,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"confirmedIds\": [\n \"e0dcd958-c983-e0b5-c5d1-6a3da5402af8\",\n \"urn:uuid:a7bdef37-671e-ec42-cfbd-e63fcf65ef45\"\n ],\n \"deniedIds\": [\n \"urn:uuid:1d311dc9-0c27-271f-176a-565d1d88cfaa\",\n \"2a3ea939-3481-1ec7-6ad4-69dc0b3c3e43\"\n ]\n },\n {\n \"confirmedIds\": [\n \"urn:uuid:64534a4a-1b30-2aae-29ae-40ba6c3ab5e0\",\n \"d7a2762d-6c30-a137-7482-62438276d87b\"\n ],\n \"deniedIds\": [\n \"urn:uuid:6f938489-f6c5-379c-8b74-70a22488e282\",\n \"24001feb-a133-9f7c-e349-0ca466356154\"\n ]\n }\n]", + "raw": "[\n {\n \"confirmedIds\": [\n \"d7e18e13-c1f3-c5cd-089d-5144335251ea\",\n \"urn:uuid:d3c5805b-2f4e-35ad-3359-b47fd04ba12c\"\n ],\n \"deniedIds\": [\n \"31930292-24bd-f9ca-8cbc-bf2a59570793\",\n \"0eaf8232-9d25-cbf1-8963-99dd78294a5f\"\n ]\n },\n {\n \"confirmedIds\": [\n \"urn:uuid:231cae6d-3b7c-4f23-1709-7e495a46fb21\",\n \"urn:uuid:40fed15a-b829-efb6-a399-6ffe0707b5c6\"\n ],\n \"deniedIds\": [\n \"urn:uuid:3d7a9280-a66f-ec56-343d-e6e95e118b30\",\n \"urn:uuid:2acdcb45-d906-89cc-1307-4d92cbf65792\"\n ]\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -70050,7 +70050,7 @@ "_postman_previewlanguage": "json" }, { - "id": "17a2468e-f5af-4580-99c7-a75ab42f6359", + "id": "920c92b0-5e20-41db-a600-050816604de5", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -70085,7 +70085,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"confirmedIds\": [\n \"e0dcd958-c983-e0b5-c5d1-6a3da5402af8\",\n \"urn:uuid:a7bdef37-671e-ec42-cfbd-e63fcf65ef45\"\n ],\n \"deniedIds\": [\n \"urn:uuid:1d311dc9-0c27-271f-176a-565d1d88cfaa\",\n \"2a3ea939-3481-1ec7-6ad4-69dc0b3c3e43\"\n ]\n },\n {\n \"confirmedIds\": [\n \"urn:uuid:64534a4a-1b30-2aae-29ae-40ba6c3ab5e0\",\n \"d7a2762d-6c30-a137-7482-62438276d87b\"\n ],\n \"deniedIds\": [\n \"urn:uuid:6f938489-f6c5-379c-8b74-70a22488e282\",\n \"24001feb-a133-9f7c-e349-0ca466356154\"\n ]\n }\n]", + "raw": "[\n {\n \"confirmedIds\": [\n \"d7e18e13-c1f3-c5cd-089d-5144335251ea\",\n \"urn:uuid:d3c5805b-2f4e-35ad-3359-b47fd04ba12c\"\n ],\n \"deniedIds\": [\n \"31930292-24bd-f9ca-8cbc-bf2a59570793\",\n \"0eaf8232-9d25-cbf1-8963-99dd78294a5f\"\n ]\n },\n {\n \"confirmedIds\": [\n \"urn:uuid:231cae6d-3b7c-4f23-1709-7e495a46fb21\",\n \"urn:uuid:40fed15a-b829-efb6-a399-6ffe0707b5c6\"\n ],\n \"deniedIds\": [\n \"urn:uuid:3d7a9280-a66f-ec56-343d-e6e95e118b30\",\n \"urn:uuid:2acdcb45-d906-89cc-1307-4d92cbf65792\"\n ]\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -70119,7 +70119,7 @@ "description": "", "item": [ { - "id": "31e4c2b8-be6e-417a-9442-d3951c7ff715", + "id": "0bf4531f-64e6-48da-8122-c71500e489e9", "name": "Get Message catalogs", "request": { "name": "Get Message catalogs", @@ -70160,7 +70160,7 @@ }, "response": [ { - "id": "d99dd17b-3e05-4a58-b22c-dde477d980c1", + "id": "7f8f0749-c353-483c-9320-275123b7cdef", "name": "The message catalogs based on the request headers", "originalRequest": { "url": { @@ -70204,7 +70204,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2e9880a3-bbce-4b98-94fc-0f4e20f84ea7", + "id": "7ba6bc0e-10dc-49e7-b639-469ee4f283cf", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -70248,7 +70248,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a1528500-f47f-434f-be09-a81b87d33374", + "id": "bbef5502-97b0-4d78-b8a9-77c8fe6626a6", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -70292,7 +70292,7 @@ "_postman_previewlanguage": "json" }, { - "id": "433c51c5-cf8f-4295-82ff-cba56c367627", + "id": "c36afbb0-cdaa-4adf-a3cd-440b6caf94ad", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -70336,7 +70336,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4632325d-64fb-4ea2-b1a2-59e4859bcbba", + "id": "3b698e1f-71e6-43e3-8ffd-3441c40d513a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -70380,7 +70380,7 @@ "_postman_previewlanguage": "json" }, { - "id": "71f2bef8-14dc-4be6-9953-bbce2f010c20", + "id": "6dec20ae-65d0-4608-aa48-6897810cf6a1", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -70436,7 +70436,7 @@ "description": "", "item": [ { - "id": "eaf137f5-37fb-48bb-a0f3-c4217e4e7db8", + "id": "1fc336e1-a983-4f3f-9c89-eb2abd45e16b", "name": "IAI Identity Outliers Summary", "request": { "name": "IAI Identity Outliers Summary", @@ -70511,7 +70511,7 @@ }, "response": [ { - "id": "243bc360-d18a-4639-ae9d-da54178f1035", + "id": "c76469ae-17e5-4be3-81f9-7e5faf20c7fa", "name": "Succeeded. Returns list of objects. Each object is a summary to give high level statistics/counts of outliers", "originalRequest": { "url": { @@ -70601,7 +70601,7 @@ "type": "text/plain" }, "key": "X-Total-Count", - "value": "-66484461" + "value": "75297151" } ], "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]", @@ -70609,7 +70609,7 @@ "_postman_previewlanguage": "json" }, { - "id": "897fab6a-aa2f-4464-85ea-767fa0bc2046", + "id": "63082c6b-d574-4b12-87cb-c7cc44481159", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -70698,7 +70698,7 @@ "_postman_previewlanguage": "json" }, { - "id": "929c4f76-e51c-4b92-ba3c-440fa53b04db", + "id": "3d6e7018-380d-49bd-8601-7db2ecf911f0", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -70787,7 +70787,7 @@ "_postman_previewlanguage": "json" }, { - "id": "119ce27d-70d1-48ce-83d0-b98dc7413924", + "id": "2ac9ea5f-51e3-49fd-8bc4-2e7b3fba6e4c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -70876,7 +70876,7 @@ "_postman_previewlanguage": "json" }, { - "id": "232d50a1-75cd-4187-90db-21b89d086ee5", + "id": "910038c7-9bf7-42c3-acf8-6137e80abcec", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -70965,7 +70965,7 @@ "_postman_previewlanguage": "json" }, { - "id": "97a20071-8d20-4c81-920c-542350cdfc3f", + "id": "020df253-13d7-4cea-a19d-4e12e78971a8", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -71054,7 +71054,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ce564470-59cf-4a0c-80ed-038c497bc802", + "id": "16da810e-d7ff-427f-8834-0b3976a5dc96", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -71149,7 +71149,7 @@ } }, { - "id": "160a4619-0ccc-4a70-981b-eb17620004d6", + "id": "2edf34c8-0dac-485f-96f6-5f2b245e1e8b", "name": "IAI Identity Outliers Latest Summary", "request": { "name": "IAI Identity Outliers Latest Summary", @@ -71189,7 +71189,7 @@ }, "response": [ { - "id": "6212d64d-7a8e-47ab-b1b1-03c1ad8e2b53", + "id": "65c57009-2ada-4c07-ae91-880748b52ddd", "name": "Succeeded. Returns list of objects. Each object is a summary to give high level statistics/counts of outliers", "originalRequest": { "url": { @@ -71243,7 +71243,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7d78bcf9-d26b-4123-bc47-901cc987014d", + "id": "5c662b5d-3d70-43d5-8409-197638556267", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -71297,7 +71297,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0aac7372-6614-41e6-9191-5aebd60f60cf", + "id": "578bf3df-4ca9-4267-b2c8-11384d9562e0", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -71351,7 +71351,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ad8fba82-939f-43cc-a2e3-4ebdce1b68fd", + "id": "e3bf9f1c-bd07-4756-a0a2-15fad3af633a", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -71405,7 +71405,7 @@ "_postman_previewlanguage": "json" }, { - "id": "50147fe9-e48b-472a-92f5-add9058802f5", + "id": "1ad18c5a-8b95-43d4-96a3-c21497794015", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -71459,7 +71459,7 @@ "_postman_previewlanguage": "json" }, { - "id": "44049efa-5560-4347-9b42-e00878bd2330", + "id": "5c254c96-eb36-4027-91c5-a1043d93ef50", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -71513,7 +71513,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f24ae29c-f368-429e-9d12-a975c4fe582c", + "id": "89766fa0-ecc2-46c7-97c5-63daaf3607f7", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -71573,7 +71573,7 @@ } }, { - "id": "911ac6f7-970b-4a8a-9ab4-680120a33364", + "id": "97d135cc-32ec-43e9-92bc-6a9efd525106", "name": "IAI Get Identity Outliers", "request": { "name": "IAI Get Identity Outliers", @@ -71657,7 +71657,7 @@ }, "response": [ { - "id": "45604c3b-229c-43fa-8fd2-abbf8233e428", + "id": "ebdc7c0f-0a56-4648-abe9-168d8118263c", "name": "Succeeded. Returns list of objects. Each object contains information about outliers", "originalRequest": { "url": { @@ -71756,7 +71756,7 @@ "type": "text/plain" }, "key": "X-Total-Count", - "value": "-66484461" + "value": "75297151" } ], "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]", @@ -71764,7 +71764,7 @@ "_postman_previewlanguage": "json" }, { - "id": "04323aa6-24df-48ce-a38e-f8f77b6cb8df", + "id": "1113f350-0496-436f-b4b7-d83027f712a7", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -71862,7 +71862,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4ad685f1-bc78-404e-b65f-0f76c9895e49", + "id": "077bf31c-5e1d-491e-9a78-10e563332d0c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -71960,7 +71960,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6f0299e9-d3b1-495a-8bae-5bb9308ac1c1", + "id": "d3252c9b-44b1-4588-a907-8976e286ffd3", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -72058,7 +72058,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6880252c-b922-4672-9494-60857ebe7889", + "id": "0adc84a2-1aa4-45e4-a92c-68e3f53ec1e7", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -72156,7 +72156,7 @@ "_postman_previewlanguage": "json" }, { - "id": "79857d60-997f-4b60-919e-6988af83c6f6", + "id": "d1f18523-655b-48a0-8adf-83c090224bcf", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -72260,7 +72260,7 @@ } }, { - "id": "51b0a31e-934b-4c60-9fc8-8a186e31b85b", + "id": "ccda6cd5-a37e-4ad3-854b-db627e8fcc49", "name": "Get identity outlier's contibuting features", "request": { "name": "Get identity outlier's contibuting features", @@ -72348,7 +72348,7 @@ }, "response": [ { - "id": "b2cf5065-9ad4-4956-9d2b-90e206147a1c", + "id": "f3c3c3cc-f7bb-472d-8f12-957de898ff91", "name": "Succeeded. Returns list of objects. Each object contains a feature and metadata about that feature", "originalRequest": { "url": { @@ -72440,7 +72440,7 @@ "type": "text/plain" }, "key": "X-Total-Count", - "value": "-66484461" + "value": "75297151" }, { "disabled": true, @@ -72449,15 +72449,15 @@ "type": "text/plain" }, "key": "accept-language", - "value": "labore" + "value": "laborum qui aliquip irure" } ], - "body": "[\n {\n \"id\": \"66e38828-5017-47af-92ff-9844871352c5\",\n \"name\": \"entitlement_count\",\n \"valueType\": \"INTEGER\",\n \"value\": 0.9707809274357464,\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.4709622945879828,\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.9416835154977208,\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.7997373844543789,\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": "5f5ffc5b-404e-48db-a334-b4fb92541a6f", + "id": "f8170f2b-6a4f-4eda-b628-2b6ff1394090", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -72548,7 +72548,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7a1477e5-0530-41b2-bcfe-bce4115555e5", + "id": "89b79283-7d1c-4329-8492-db8aeb9e1e07", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -72639,7 +72639,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ff87ba15-b176-4ed5-a04c-a15304ed064e", + "id": "0d85b1f5-02bb-427c-a13d-b851e13cbf3e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -72730,7 +72730,7 @@ "_postman_previewlanguage": "json" }, { - "id": "45b18141-0f61-483d-96b9-265c38127908", + "id": "9454bbce-2bdf-418b-a671-064f8f449252", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -72821,7 +72821,7 @@ "_postman_previewlanguage": "json" }, { - "id": "15b65c8c-6235-418a-abe6-c3391b02e4d2", + "id": "56ebe9cf-25f1-428d-ba50-45e13f8a6b47", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -72912,7 +72912,7 @@ "_postman_previewlanguage": "json" }, { - "id": "69008365-48d1-440d-a351-07415cde771d", + "id": "31f9e7be-b3d5-4ec1-b90d-a2c0f96e90c2", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -73009,7 +73009,7 @@ } }, { - "id": "8b76dfdf-d025-4b65-a09a-be82e799d0ee", + "id": "fffeae0b-e4ec-4fc8-aca8-8766f0972afb", "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", @@ -73109,7 +73109,7 @@ }, "response": [ { - "id": "2de9b0f0-1cc3-422c-b857-494b39cd4609", + "id": "13c2b2f3-3883-4a8e-bfbf-f16153ac29b9", "name": "The list of access items.", "originalRequest": { "url": { @@ -73202,7 +73202,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4c6b786d-692e-4341-9037-4b58f537d09f", + "id": "5f7f5db3-8792-4d60-a983-2a172363e241", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -73295,7 +73295,7 @@ "_postman_previewlanguage": "json" }, { - "id": "13a8dcea-333f-4ac8-8135-98e24fe22764", + "id": "20303b6e-cb1a-482c-9701-2ba88d874fd7", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -73388,7 +73388,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ae973386-df4c-482a-8773-62072e7259a1", + "id": "c9def09d-f3a5-44a1-bacc-a2a125413a0f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -73481,7 +73481,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ab91f011-5e91-41f0-bb58-568a57a969f1", + "id": "9523dff7-579d-4aa7-aaf1-38674f9e9bba", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -73574,7 +73574,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0cea23b3-912d-4e77-a878-9f4b289bd246", + "id": "345c0377-a30e-46b4-bb44-f8091e88e1f6", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -73667,7 +73667,7 @@ "_postman_previewlanguage": "json" }, { - "id": "56a6a33d-43f3-4385-92c4-fedfbf726488", + "id": "0f89d8e4-f9eb-4e32-ab5f-1d9649f36a5c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -73766,7 +73766,7 @@ } }, { - "id": "9b20ffce-61b3-4409-be4d-e411c37121ef", + "id": "3ca6f65c-9967-4147-8719-3c62d8374724", "name": "IAI Identity Outliers Ignore", "request": { "name": "IAI Identity Outliers Ignore", @@ -73809,7 +73809,7 @@ }, "response": [ { - "id": "75ff7143-d8c7-4c9d-aed4-d797e1c2befb", + "id": "7f3372fc-5d0a-44b1-9423-54543eaeeff8", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -73856,7 +73856,7 @@ "_postman_previewlanguage": "text" }, { - "id": "f53454cf-98d0-4230-9f0a-cf135c786184", + "id": "ebc42d5e-3ddc-4b83-82e1-a71c9d3c79e8", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -73913,7 +73913,7 @@ "_postman_previewlanguage": "json" }, { - "id": "575c5ffb-3775-4b2f-8089-5f94da14a81b", + "id": "2f04387a-053a-483d-9ae1-6d7c3d8dddfa", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -73970,7 +73970,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8ee2a880-e5df-4f6b-86f2-abcb7937efdc", + "id": "19658259-8a35-4bab-89dc-ce9bb7829bf4", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -74027,7 +74027,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dd589447-6fff-48aa-875f-94538c8b0434", + "id": "5b433ffa-8253-4022-84cd-098183d0592f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -74084,7 +74084,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e4565c08-e06e-4977-a312-8897aa7ee47a", + "id": "8c56cc3c-a9f0-48de-bf32-57ce4ae01e7f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -74147,7 +74147,7 @@ } }, { - "id": "f3e705ac-1c05-47b5-a2fb-85f8dd8f9bc3", + "id": "0a4db3fc-0af7-4bbb-89c8-651fa2dbd556", "name": "IAI Identity Outliers Unignore", "request": { "name": "IAI Identity Outliers Unignore", @@ -74190,7 +74190,7 @@ }, "response": [ { - "id": "4d38b951-2c5c-4acc-a70e-d53410669d30", + "id": "10057a9f-4f28-4ca9-98ad-629821ba1662", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -74237,7 +74237,7 @@ "_postman_previewlanguage": "text" }, { - "id": "60954a61-6c9b-41bc-b13a-d7d2c4602a28", + "id": "11f1b73a-33c8-4563-b40d-e58b46a0dd4e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -74294,7 +74294,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f83fec39-49aa-47a4-a781-d287329b350e", + "id": "dae90853-2e94-4c7c-a9d5-b7b6954b221a", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -74351,7 +74351,7 @@ "_postman_previewlanguage": "json" }, { - "id": "85f13786-8423-41bf-bf37-ee1fdf38a56a", + "id": "33e2e60f-453c-42f8-a919-9279ba6bbb94", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -74408,7 +74408,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8e11ea37-171a-4721-beba-c288a2c38ff2", + "id": "3895e067-1909-4ea8-9fd0-2c2d95b24032", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -74465,7 +74465,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0e740e0a-ae9d-4f9a-9bac-c619750980ec", + "id": "e693c605-a5eb-436b-b034-e6cd18c64ce0", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -74528,7 +74528,7 @@ } }, { - "id": "613210e8-418c-4e84-bf8d-47419a38fa4c", + "id": "8095aaa5-be57-45f8-9f0d-472f2474ad5f", "name": "IAI Identity Outliers Export", "request": { "name": "IAI Identity Outliers Export", @@ -74568,7 +74568,7 @@ }, "response": [ { - "id": "a3db9a1f-00df-4061-b5fd-465970bac6f3", + "id": "354d5a21-2e2a-42dc-9494-969a6b5d3b8b", "name": "Succeeded. Returns zip of 2 CSVs to download. 1 CSV for ignored outliers and 1 for non-ignored outliers", "originalRequest": { "url": { @@ -74617,12 +74617,12 @@ "value": "application/zip" } ], - "body": "labore", + "body": "laborum qui aliquip irure", "cookie": [], "_postman_previewlanguage": "text" }, { - "id": "100b785a-50f1-4d39-9f8b-2d6684cc9102", + "id": "601f55c1-4db8-4599-b10f-33da8a4d9178", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -74676,7 +74676,7 @@ "_postman_previewlanguage": "json" }, { - "id": "26a98dfd-aef4-491a-b54a-e49458e20438", + "id": "d3f8bd96-9c4f-41ba-abdf-fc1637b80336", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -74730,7 +74730,7 @@ "_postman_previewlanguage": "json" }, { - "id": "46d97d01-0e69-47d8-bbe4-03f8aaf5dd6d", + "id": "1f94757b-5244-42a3-8801-eb1ac0c99af2", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -74784,7 +74784,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e1d994ad-2587-41e1-8cad-099464236fd5", + "id": "28e160c3-1364-4e3b-a1fe-3081e1c4240d", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -74838,7 +74838,7 @@ "_postman_previewlanguage": "json" }, { - "id": "db975398-a5ec-4bf5-bafa-5841bf1a4ec5", + "id": "15c37c05-9065-4ab4-9673-088dee55d138", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -74898,7 +74898,7 @@ } }, { - "id": "8fcb62e0-f622-4919-ae23-77499c1cf3c7", + "id": "a29d4803-7705-4243-9ab2-63ab5223aa26", "name": "Get identity outlier contibuting feature summary", "request": { "name": "Get identity outlier contibuting feature summary", @@ -74939,7 +74939,7 @@ }, "response": [ { - "id": "cc859891-42f1-46a0-ade3-dc2548e7f73b", + "id": "6b232bf9-2af5-4a12-ba87-58ed83368368", "name": "Succeeded. Returns selected contributing feature summary for an outlier", "originalRequest": { "url": { @@ -74984,15 +74984,15 @@ "type": "text/plain" }, "key": "accept-language", - "value": "labore" + "value": "laborum qui aliquip irure" } ], - "body": "{\n \"contributingFeatureName\": \"Rare Access\",\n \"identityOutlierDisplayName\": \"John Smith\",\n \"outlierFeatureDisplayValues\": [\n {\n \"displayName\": \"Aliza Chris\",\n \"value\": \"quis in dolore tempor\",\n \"valueType\": \"INTEGER\"\n },\n {\n \"displayName\": \"Aliza Chris\",\n \"value\": \"exercitation eu\",\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\": \"sint la\",\n \"valueType\": \"INTEGER\"\n },\n {\n \"displayName\": \"Aliza Chris\",\n \"value\": \"amet ipsum\",\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": "e0e260fa-66b6-46c1-af2f-88b62172d4de", + "id": "01964880-d7da-4482-a9fe-a4e749cf02d7", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -75036,7 +75036,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f7e6eabc-c125-4062-a321-39f1bcae022e", + "id": "22da67c8-cb2a-4443-93fb-06165a8d6fab", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -75080,7 +75080,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d0e98743-2122-43da-af94-f8a3891451df", + "id": "decfa9b9-8006-4a6a-8fe7-9db831acee7e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -75124,7 +75124,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bbdc359b-f524-4964-bdfd-333dd8192198", + "id": "a79b3d43-a5e3-4f60-b48c-74f532764b7c", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -75168,7 +75168,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8f1aa96f-1da5-47d3-9efe-ca3aeb4d923a", + "id": "91a3c1ea-f859-4157-b98b-6db682a19850", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -75212,7 +75212,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9484d14d-b21e-4f6b-9000-dd36267efdb9", + "id": "bcc5f7c3-9f3b-4cc6-8e38-1b273562fd0c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -75268,7 +75268,7 @@ "description": "", "item": [ { - "id": "86886032-2a74-4470-8d2e-82b75f245140", + "id": "94a776b9-2b2d-443c-981a-49ae54ca0cde", "name": "Identity Outliers List", "request": { "name": "Identity Outliers List", @@ -75338,7 +75338,7 @@ }, "response": [ { - "id": "520a6110-7040-4770-8369-256257cc69f9", + "id": "e878e212-7f24-41c8-b940-6c523391a617", "name": "List of identities that are not included in peer groups.", "originalRequest": { "url": { @@ -75406,12 +75406,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"fugiat aliqua\",\n \"type\": \"Excepteur pariatur enim in ut\",\n \"peer_group_id\": \"Excepteur pariatur ad\",\n \"attributes\": {\n \"dolore2\": {},\n \"laboriscc\": {}\n }\n },\n {\n \"id\": \"exercitation voluptate Duis aute\",\n \"type\": \"ex ut\",\n \"peer_group_id\": \"in cillum consectetur\",\n \"attributes\": {\n \"labore_ce\": {},\n \"idd\": {}\n }\n }\n]", + "body": "[\n {\n \"id\": \"minim elit Lorem\",\n \"type\": \"est officia\",\n \"peer_group_id\": \"id cillum amet tempor proident\",\n \"attributes\": {\n \"deserunt7\": {},\n \"veniam_db\": {}\n }\n },\n {\n \"id\": \"culpa\",\n \"type\": \"pariatur\",\n \"peer_group_id\": \"mollit dolor veniam\",\n \"attributes\": {\n \"reprehenderit3ee\": {},\n \"dolore_f5\": {},\n \"deserunta18\": {}\n }\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d3cc4a29-affc-4249-bc48-af8069a06652", + "id": "4b8bc552-6a00-4443-ac79-86785d39bbac", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -75484,7 +75484,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bd618f39-080d-4569-bade-fb22f0155127", + "id": "2c972d01-b77b-47a2-bb82-70e96cf30660", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -75557,7 +75557,7 @@ "_postman_previewlanguage": "json" }, { - "id": "92b04666-5d9c-4b55-a777-b299749f1122", + "id": "d58519ff-19f2-49c4-a97d-9e7a42b84f0e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -75630,7 +75630,7 @@ "_postman_previewlanguage": "json" }, { - "id": "320a9a51-7b59-4a24-b21d-6017a7a5f987", + "id": "558d70b2-15c0-4287-bcbf-8479921df2d2", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -75703,7 +75703,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3eef652a-8143-45c6-9090-23c83c30aa92", + "id": "674c339c-cfed-45ff-81ea-82dd69b2f095", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -75788,7 +75788,7 @@ "description": "", "item": [ { - "id": "76b5d406-e5e6-40a3-8c75-57964ec5622f", + "id": "a15110ef-ce35-4ecb-806a-48ae1b4b0ef9", "name": "Returns a Recommendation Based on Object", "request": { "name": "Returns a Recommendation Based on Object", @@ -75831,7 +75831,7 @@ }, "response": [ { - "id": "ba1b2787-ca36-4aa6-b30e-3c872b06dbc8", + "id": "61af1a60-ad93-4327-8b13-ac1df1fea26f", "name": "The recommendations for a customer", "originalRequest": { "url": { @@ -75883,12 +75883,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\": -26220626.269234464,\n \"featureWeightedScores\": {\n \"sit20\": -7377397.495605648,\n \"mollit_70\": 42698226.70873812\n },\n \"threshold\": 19227826.91279021,\n \"identityAttributes\": {\n \"aute_3\": {\n \"value\": \"nulla non\"\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\": -30484238.00429569,\n \"featureWeightedScores\": {\n \"exercitation8f\": 46210185.56077221,\n \"labore_790\": -44132142.13822112\n },\n \"threshold\": -35861464.966104075,\n \"identityAttributes\": {\n \"aliquipa\": {\n \"value\": \"in labo\"\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\": 90450351.68776837,\n \"featureWeightedScores\": {\n \"eu31\": -85136887.24900597\n },\n \"threshold\": -71740627.7964959,\n \"identityAttributes\": {\n \"voluptate1\": {\n \"value\": \"irure ut\"\n },\n \"Ut_8cd\": {\n \"value\": \"in reprehenderit incididunt\"\n },\n \"cillum__e\": {\n \"value\": \"nisi eiusmod qui id\"\n },\n \"eu_e7\": {\n \"value\": \"Ut ea ut id\"\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\": -64706975.43034354,\n \"featureWeightedScores\": {\n \"consequat80_\": 52184970.821368635,\n \"ea54\": 35885285.420158565\n },\n \"threshold\": 98846493.66169128,\n \"identityAttributes\": {\n \"commodo_4\": {\n \"value\": \"esse labore deserunt occaecat\"\n },\n \"enim_8\": {\n \"value\": \"sit ullamco\"\n }\n },\n \"featureValues\": {\n \"feature\": \"department\",\n \"numerator\": 14,\n \"denominator\": 14\n }\n }\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "8e6de55f-bf62-4933-b735-55e0ec56a42e", + "id": "178ebe9d-765f-4fb4-82ac-bedee369037a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -75945,7 +75945,7 @@ "_postman_previewlanguage": "json" }, { - "id": "04467301-0f7b-429f-8330-583b3a7d324c", + "id": "7f6297e4-00c0-40ff-ab45-5a528023d187", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -76002,7 +76002,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d645dd56-9c93-4848-9beb-a5b69991404a", + "id": "d04efa2a-d626-4a48-a28e-cd81c8976654", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -76059,7 +76059,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b0682bb5-fa24-45d6-b977-15b3366b0479", + "id": "a4b8fd7a-de5e-4777-a212-3b5e33bc8443", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -76116,7 +76116,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3b14eff4-8128-4a4d-a50c-4f2a1ef70b38", + "id": "a99678bf-5389-4d4b-992e-6b0178f3bed5", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -76179,7 +76179,7 @@ } }, { - "id": "b7d6cdc2-77bb-46b0-85c6-2e5817484455", + "id": "0c517b3e-d25d-43cd-8270-213e9ce86253", "name": "Get certification recommendation config values", "request": { "name": "Get certification recommendation config values", @@ -76209,7 +76209,7 @@ }, "response": [ { - "id": "32eaf210-3417-49b7-88ab-741d68fe7d9d", + "id": "645db4e7-64ca-473a-8372-ef997a4df9e9", "name": "Cert recommendation configuration attributes", "originalRequest": { "url": { @@ -76253,7 +76253,7 @@ "_postman_previewlanguage": "json" }, { - "id": "60d4d309-71e5-400f-a511-638b8d573786", + "id": "a1f19553-4a7b-45a1-8e53-6c476789cbd3", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -76297,7 +76297,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0320c266-7f31-4d60-8ed7-00597c13d3c7", + "id": "7b3c96d6-1897-42ce-8083-2fd4a00a5c3f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -76341,7 +76341,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3f9e0e04-3e96-432e-801a-82de4b8281f5", + "id": "080393df-b1b9-4410-8c27-ee68545087db", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -76385,7 +76385,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0759634c-6ee0-4fb5-aa33-6f000da2bb9c", + "id": "eb54adf8-bfbb-47db-a198-ed48997d9ac3", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -76435,7 +76435,7 @@ } }, { - "id": "cdee8c44-0700-4ab8-98a5-83981f17e4bb", + "id": "6856e15c-503c-4982-9af5-8dee9e050764", "name": "Update certification recommendation config values", "request": { "name": "Update certification recommendation config values", @@ -76478,7 +76478,7 @@ }, "response": [ { - "id": "330b9079-8ec1-4792-abb6-b5d95ffbb143", + "id": "5af1a5c9-472f-4bed-84c3-e9ee92193876", "name": "Cert recommendation configuration attributes after update", "originalRequest": { "url": { @@ -76535,7 +76535,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0f628e26-8e33-4ec6-8245-cb5f105dcace", + "id": "d2e9aebd-8a62-4398-adb7-88f99b44771f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -76592,7 +76592,7 @@ "_postman_previewlanguage": "json" }, { - "id": "71814846-8a80-45fa-80b9-48a93c6eef0c", + "id": "1bc3c20f-3c4c-46e9-8289-11be4a5b7a6d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -76649,7 +76649,7 @@ "_postman_previewlanguage": "json" }, { - "id": "239379a3-75da-4427-b8a5-2826b078ce88", + "id": "a129cb25-1304-46b8-90a8-7ec72bd42dee", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -76706,7 +76706,7 @@ "_postman_previewlanguage": "json" }, { - "id": "68289fd5-29b7-428e-b44e-f28327f9c460", + "id": "3c668db4-7143-42b8-883e-23bea355f679", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -76775,7 +76775,7 @@ "description": "", "item": [ { - "id": "946bc88e-ad5d-45ec-bba6-7560216ee856", + "id": "9f45d473-9319-462d-8a67-abdf98310e56", "name": "Create a role mining session", "request": { "name": "Create a role mining session", @@ -76817,7 +76817,7 @@ }, "response": [ { - "id": "8484c0c6-de08-4c9c-a429-7e35565b128f", + "id": "31e15f17-6f88-4c5e-b000-3e986e0096b4", "name": "Submitted a role mining session request", "originalRequest": { "url": { @@ -76873,7 +76873,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9259c2b4-c946-4741-81f3-ea7d2dfa4f27", + "id": "4952d552-4b2c-40a1-8cba-1f0f4d7b6f97", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -76929,7 +76929,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e297f2fd-210d-4f95-ac6e-e0bba23b69a4", + "id": "813c2c35-1144-41b9-a1fd-4d117e36b092", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -76985,7 +76985,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c1d6e39e-4db6-459c-8298-f952b15fb0f3", + "id": "e5c50692-bce8-4bc2-891c-cbc94a08f227", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -77041,7 +77041,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3442fce3-3381-46d8-a9f8-a762de584ccb", + "id": "be0dd32f-9390-4891-a66b-c770ba48bd64", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -77097,7 +77097,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e5588dcc-557c-40ad-b61c-36e00feaef4c", + "id": "2aa1b953-985d-4957-9c0d-db08cd01f93c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -77159,7 +77159,7 @@ } }, { - "id": "aafd98d0-048b-4098-aae1-a215212ed0cd", + "id": "03af90a7-6293-444a-ab6a-714c75d85f3d", "name": "Retrieves all role mining sessions", "request": { "name": "Retrieves all role mining sessions", @@ -77234,7 +77234,7 @@ }, "response": [ { - "id": "bab46886-76c8-4239-afd6-8d6bd1d16a6c", + "id": "b97a2282-bdd8-4800-8c19-8f1aec426911", "name": "Succeeded. Returns all role mining sessions that match the query parameters.", "originalRequest": { "url": { @@ -77318,12 +77318,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\": \"dolore veniam\",\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\": \"labore ipsum eu\",\n \"id\": \"8c190e67-87aa-4ed9-a90b-d9d5344523fb\",\n \"createdDate\": \"1997-06-09T03:46:05.227Z\",\n \"modifiedDate\": \"1960-06-10T17:16:54.342Z\",\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\": \"consectetur ullamco non\",\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\": \"mollit Ut commodo tempor anim\",\n \"id\": \"8c190e67-87aa-4ed9-a90b-d9d5344523fb\",\n \"createdDate\": \"1985-01-09T02:09:22.157Z\",\n \"modifiedDate\": \"2000-02-12T18:48:47.275Z\",\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\": \"ut\",\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\": \"Ut enim veniam\",\n \"id\": \"8c190e67-87aa-4ed9-a90b-d9d5344523fb\",\n \"createdDate\": \"1962-05-01T21:18:25.442Z\",\n \"modifiedDate\": \"1969-07-22T14:51:07.743Z\",\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\": \"esse irure\",\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\": \"esse voluptate ipsum\",\n \"id\": \"8c190e67-87aa-4ed9-a90b-d9d5344523fb\",\n \"createdDate\": \"1947-06-07T09:50:57.935Z\",\n \"modifiedDate\": \"1978-02-13T14:03:59.222Z\",\n \"type\": \"SPECIALIZED\"\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "1df7ed4d-4199-41a4-bf96-ca6677dc01ff", + "id": "7046ec6e-74b0-4e13-9e6b-c519fb2ba07a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -77412,7 +77412,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b1febc60-77e9-4836-b9cc-bb3bbebb98a5", + "id": "5c4ac615-bab3-4fa1-ba0b-257647375064", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -77501,7 +77501,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9c673804-8d87-4b80-a5f8-4017e2f1c4a7", + "id": "9f6b67c2-d61b-49c0-9c9f-1aa454c36ac7", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -77590,7 +77590,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5937536f-d0ff-4e7c-bb8c-bf8830bef8aa", + "id": "798f8df3-4d17-4e3b-8347-e8e681238c3f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -77679,7 +77679,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b64def4d-5500-43ce-b73e-beaef600e1ff", + "id": "7f206478-a321-47a8-b9e1-947802be93f7", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -77774,7 +77774,7 @@ } }, { - "id": "dacab086-eb17-42ec-9709-74e2cc029b67", + "id": "2b2e0098-8523-4d6b-9094-a55709e002ee", "name": "Patch a role mining session", "request": { "name": "Patch a role mining session", @@ -77828,7 +77828,7 @@ }, "response": [ { - "id": "4374f6ef-750d-463f-9455-2fbef8fdbb0e", + "id": "aa0fca57-f619-4f08-923c-44d85e0de166", "name": "Success", "originalRequest": { "url": { @@ -77885,7 +77885,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cc409e51-da88-4511-813c-2ad8888ad77b", + "id": "dbe499df-37c7-45ee-8f3b-94d9c38d2fe3", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -77942,7 +77942,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e266bf1c-c0d0-4c83-9f42-ec4e8ef535ad", + "id": "fba0745b-cfb7-4cc3-917c-666cef53176b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -77999,7 +77999,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f7247370-02a8-4fb6-9344-f73a0343ce26", + "id": "7daf3110-0569-4942-a596-328de9099aa7", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -78056,7 +78056,7 @@ "_postman_previewlanguage": "json" }, { - "id": "02a9744b-6d84-4cb9-b9b2-25b301b8d624", + "id": "f5babd6e-4be7-4226-83c3-af2911a3f8b2", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -78113,7 +78113,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7a2b0abd-7489-435a-b8ea-b939ce6320db", + "id": "615a36ca-1d21-4b1e-b314-521b6d6e003d", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -78170,7 +78170,7 @@ "_postman_previewlanguage": "json" }, { - "id": "72b75cb2-990c-4cc8-b112-1c77f7beec31", + "id": "2f807f86-608b-459f-88cb-12a9cc01ac51", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -78233,7 +78233,7 @@ } }, { - "id": "9fcebbf1-507b-4fb2-a5e6-a2eb8e94c916", + "id": "dbb96026-f7bc-4d35-8179-0a03bfa8329d", "name": "Get a role mining session", "request": { "name": "Get a role mining session", @@ -78274,7 +78274,7 @@ }, "response": [ { - "id": "ff8caa3b-1b25-4d53-9ce2-f65471997c73", + "id": "76e1d74c-4a65-4518-aac6-62be7411f85d", "name": "Returns a role mining session", "originalRequest": { "url": { @@ -78318,7 +78318,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7c9202e7-78b3-43f0-895f-88144d78b716", + "id": "0291deec-0388-42a2-8733-f4c126ab1878", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -78362,7 +78362,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1770514e-a5da-4b08-86c3-dd47eaede77e", + "id": "2363749b-d8e3-47a0-a3ba-da9624da8902", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -78406,7 +78406,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7d738db6-f8e6-4cb2-9849-903f6eb46fed", + "id": "e1ad53c2-480e-4787-980b-051533ddb102", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -78450,7 +78450,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f7591808-3f2c-4c72-849a-bce85291e849", + "id": "8bfe1ee6-7587-444d-a98a-9af1f9bd1596", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -78494,7 +78494,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7a369a1f-97e9-43dd-ba65-e886c74e807a", + "id": "8c1a15eb-f49e-405c-9fb6-e84eee02bbf7", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -78538,7 +78538,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7a2d1544-fa6b-468b-a25a-1db336c1621f", + "id": "ae184786-0840-4f95-aeac-d4502fa9028d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -78588,7 +78588,7 @@ } }, { - "id": "f871dc64-ec40-4a75-a6d5-40c65a01bac0", + "id": "420a1b64-7df3-43dc-a366-b9b095747323", "name": "Get role mining session status state", "request": { "name": "Get role mining session status state", @@ -78630,7 +78630,7 @@ }, "response": [ { - "id": "27d2b756-36f5-4e4c-add0-a5d535ce7f6f", + "id": "061894da-e3a4-4ef2-9f37-f72325a75e9a", "name": "Succeeded. Returns session status", "originalRequest": { "url": { @@ -78675,7 +78675,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9534f8b6-d3eb-467d-86f0-9f7536a4fff5", + "id": "629e58c7-0b2e-4779-b574-06dc7233a17e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -78720,7 +78720,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e267e599-9201-44fa-89d4-9f6ea405e59e", + "id": "e0c33876-9262-425d-af57-962c18c756e8", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -78765,7 +78765,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9d47530d-89eb-40a0-b284-1fe8f9127f87", + "id": "74e1ff15-f7d8-4898-b06c-b90a27763c31", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -78810,7 +78810,7 @@ "_postman_previewlanguage": "json" }, { - "id": "29dae6df-eb73-47cd-a11b-f89cc68315dd", + "id": "856530a3-5739-4f5e-a167-cfbd6af8d28a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -78861,7 +78861,7 @@ } }, { - "id": "224eb181-df66-4e20-9651-1270815bc14f", + "id": "d575d38e-1c60-4cc6-977f-393c71d41b96", "name": "Retrieves all potential role summaries", "request": { "name": "Retrieves all potential role summaries", @@ -78949,7 +78949,7 @@ }, "response": [ { - "id": "fbf95038-7158-4054-82bc-3d10c80410e9", + "id": "78e11b36-a975-47ae-8d53-2aa47aeba1e2", "name": "Succeeded. Returns a list of potential role summaries for a role mining session.", "originalRequest": { "url": { @@ -79035,12 +79035,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\": \"1998-01-24T01:34:23.448Z\",\n \"saved\": true,\n \"description\": \"reprehenderit\",\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\": \"1951-08-31T22:36:19.273Z\",\n \"saved\": true,\n \"description\": \"ut minim elit\",\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\": \"1963-03-29T10:28:56.154Z\",\n \"saved\": true,\n \"description\": \"voluptate ex\",\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\": \"2008-05-08T14:09:41.774Z\",\n \"saved\": true,\n \"description\": \"enim laborum amet\",\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": "623eb4b5-312e-4b0a-9c97-d11b1c979d70", + "id": "5dbff5dc-0842-468a-af77-18a6058d2d3c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -79131,7 +79131,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4f1ff1cb-012b-456b-a29b-0491878f34df", + "id": "fc9085ee-ad8c-4a5f-9aca-0b5511dfa565", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -79222,7 +79222,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ce402990-f012-40f5-a8ea-fd883df59783", + "id": "042d7d32-2fff-40e3-b17a-33c8fefd5e9a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -79313,7 +79313,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c26b9aab-b86b-400f-bb7b-7c0a6a6bef4e", + "id": "4bb4e3ba-b419-498e-83a7-941b589538d0", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -79404,7 +79404,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a5f34c63-fb5a-4424-9fe3-8840a50b33b3", + "id": "bb7f6daa-82b5-49b1-809e-78ae61aed33a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -79501,7 +79501,7 @@ } }, { - "id": "f5915caf-fec2-49f8-a889-fcee58d7526b", + "id": "9e26086c-ee60-4191-9b21-a20b6d8fbe5c", "name": "Retrieves a specific potential role", "request": { "name": "Retrieves a specific potential role", @@ -79554,7 +79554,7 @@ }, "response": [ { - "id": "403f9157-a74b-4879-9c97-3be31ab0370c", + "id": "668b0baa-3870-4d3a-88ea-e29cb65fc6b1", "name": "Succeeded. Returns a list of potential roles for a role mining session.", "originalRequest": { "url": { @@ -79595,12 +79595,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 \"ex_0\": \"cupidatat in sit Ut\",\n \"est_5\": \"in consectetur in\"\n },\n {\n \"ute5\": \"dolore ullamco\",\n \"eiusmod_5ff\": \"Excepteur in deserunt ut\"\n }\n ]\n },\n {\n \"attributeName\": \"department\",\n \"distribution\": [\n {\n \"in5\": \"velit exercitation consectetur\",\n \"ipsumc\": \"dolore id voluptate\"\n },\n {\n \"ipsumbaa\": \"dolore veniam voluptate\",\n \"ut_1ab\": \"ut velit incididunt\",\n \"enim48\": \"minim\"\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-01-19T19:21:08.788Z\",\n \"modifiedDate\": \"1947-04-24T06:19:07.697Z\"\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 \"Duis_66a\": \"labore anim\",\n \"velitaf4\": \"enim minim esse\",\n \"nonb0e\": \"amet voluptate incididunt\"\n },\n {\n \"in_ba2\": \"in non\",\n \"consequat_bb\": \"do pariatur\",\n \"cillum_5\": \"aliquip Lorem et pariatur\",\n \"consectetur_fc1\": \"tempor ullamco\"\n }\n ]\n },\n {\n \"attributeName\": \"department\",\n \"distribution\": [\n {\n \"ut70\": \"do laboris\",\n \"amet818\": \"labore laborum veniam dolore ullamco\",\n \"ipsum_f\": \"deserunt eiusmod occaecat commodo\"\n },\n {\n \"labore_\": \"commodo aliquip cupidatat adipisicing\",\n \"sunt_953\": \"Excepteur veniam minim\"\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\": \"1976-02-21T13:31:51.845Z\",\n \"modifiedDate\": \"1988-04-09T07:05:13.720Z\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "35bbddc6-6c65-4355-9220-ddbc1940bb66", + "id": "0c643289-c159-41d2-94f2-1d1fb646208f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -79646,7 +79646,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bd44529c-9403-405f-a977-a331c6bc0c63", + "id": "b9851f8a-7c4e-4bef-9512-d5b33d0f097e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -79692,7 +79692,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ddcd3398-cbf7-43d8-9626-dd4a86aed922", + "id": "acb5a5a3-6533-4db2-a166-3a527727c2e7", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -79738,7 +79738,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9ce167f9-e306-42d9-a7d5-2f97d8cc22f1", + "id": "5e78364a-da0b-4332-95a6-7f8b6203f267", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -79784,7 +79784,7 @@ "_postman_previewlanguage": "json" }, { - "id": "84215158-807a-4cff-aee8-1bff37b14ff4", + "id": "620819bd-6268-404a-88e6-86acf1cfd1ed", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -79836,7 +79836,7 @@ } }, { - "id": "a3ffd8d5-411f-4ef3-bd01-eca3949105f9", + "id": "90dbe21f-c4a1-45bf-9dbc-86b9e87446ef", "name": "Update a potential role", "request": { "name": "Update a potential role", @@ -79902,7 +79902,7 @@ }, "response": [ { - "id": "cab62f53-1d11-4829-a8b3-9989ccdede6d", + "id": "faa8da5e-02d9-4a63-aec2-129c5cf7756a", "name": "Succeeded. Returns the potential role summary based on the potentialRoleId provided.", "originalRequest": { "url": { @@ -79961,7 +79961,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d3b520ec-acc6-4472-b7ae-dc4cffa186da", + "id": "82d62271-e69b-4209-b1ee-5aaee8d12312", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -80020,7 +80020,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c9fdd6a5-afdb-4405-9a65-588d80273c90", + "id": "52cc9edf-5770-4217-a9a5-80da835d7b68", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -80079,7 +80079,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b336f578-1e48-484a-b0be-34e15776f19f", + "id": "cbb3ff26-2c50-4bd9-ab2c-11ba94df3359", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -80138,7 +80138,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bc17459a-be8f-4f78-9af1-85359ea58ac9", + "id": "831204c1-a802-4008-b144-75393a84a9d4", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -80197,7 +80197,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8bf320f9-25cc-4fb2-83bb-1e7b38353451", + "id": "fe16ceaa-3092-4ddb-868d-87c25f1c1c40", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -80256,7 +80256,7 @@ "_postman_previewlanguage": "json" }, { - "id": "94be5859-a574-4759-a02a-7e23d0af5ccd", + "id": "61a1c9b2-b4dd-4dcf-b2e0-50d0cff62e42", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -80321,7 +80321,7 @@ } }, { - "id": "015aaf52-70df-4813-9b8d-85a115b8b5ae", + "id": "3176728c-a1b0-4b40-93da-977c19085229", "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", @@ -80403,7 +80403,7 @@ }, "response": [ { - "id": "3bcaf035-a101-4f93-8ef4-65200fd1cef5", + "id": "008a4670-3375-4dc2-8491-1c968cd2a0e7", "name": "Succeeded. Returns a list of potential roles for a role mining session.", "originalRequest": { "url": { @@ -80478,7 +80478,7 @@ "_postman_previewlanguage": "json" }, { - "id": "17f42b46-d032-4853-9df2-9e871d0ec26b", + "id": "d367b2ce-be66-403f-9d34-78d4470c46b3", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -80553,7 +80553,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4803642a-c185-49ac-a6fd-fc98dfbf50dd", + "id": "63dc20f8-0fb7-45cd-8d24-3ee87294c814", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -80628,7 +80628,7 @@ "_postman_previewlanguage": "json" }, { - "id": "95faaaf0-1ee1-438b-907f-04122d5ecf20", + "id": "eae14f32-73f8-4fcf-8a09-9c31809320a0", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -80703,7 +80703,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cca3cfb0-4c9c-4078-b801-35d8af36e072", + "id": "5f7d920e-2543-4647-93be-1cfbc4d927d3", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -80784,7 +80784,7 @@ } }, { - "id": "4c7e817f-3288-46da-a55b-9fb19ff7f57c", + "id": "8ba42635-65b6-43ff-ab64-f188d62d44e8", "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", @@ -80893,7 +80893,7 @@ }, "response": [ { - "id": "0cb837ac-cae8-4863-b595-6aa30a90dc21", + "id": "b53d0d74-4fa0-4b13-af67-d1d837e819d0", "name": "Succeeded. Returns a list of entitlements for a potential role.", "originalRequest": { "url": { @@ -80995,7 +80995,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e9e2e728-de77-455a-b8d5-cf18e42827bd", + "id": "869630a2-6f56-474c-8503-84049eb0b8c9", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -81097,7 +81097,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ce3e0b7a-011a-4290-9c3f-3a7a160cfe44", + "id": "72bdffd3-4297-4cff-b7f8-29342c5be3f3", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -81199,7 +81199,7 @@ "_postman_previewlanguage": "json" }, { - "id": "018737b5-7973-4f32-b39a-d933be02e429", + "id": "f46766c6-b5f1-42f3-9a73-07990f6ef1ff", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -81301,7 +81301,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d01af167-dc5b-45cb-ac6e-809f72591030", + "id": "ccc58c0d-8cd8-4d34-a8e9-7eaddae717a2", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -81403,7 +81403,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d73a6672-d5c3-485a-869f-8f9ca45b41e1", + "id": "0394081b-b90f-48ff-9208-8b23c9d501ab", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -81511,7 +81511,7 @@ } }, { - "id": "c3f6e449-7ba0-476e-b06e-456c88660a16", + "id": "8e0845cc-f608-4985-b799-ac6b4655eade", "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", @@ -81538,7 +81538,7 @@ "type": "text/plain" }, "key": "includeCommonAccess", - "value": "false" + "value": "true" } ], "variable": [ @@ -81575,7 +81575,7 @@ }, "response": [ { - "id": "5bb39079-067d-4471-ba2d-ec09f4093c89", + "id": "f2dc0396-9be5-4604-8477-8b27c94ab139", "name": "Succeeded. Returns a map containing entitlement popularity distribution for a potential role.", "originalRequest": { "url": { @@ -81597,7 +81597,7 @@ "type": "text/plain" }, "key": "includeCommonAccess", - "value": "false" + "value": "true" } ], "variable": [] @@ -81627,12 +81627,12 @@ "value": "application/json" } ], - "body": "{\n \"etb\": 80336082,\n \"enim_9bc\": 79507686,\n \"doloreb\": -9561982,\n \"commodo_69\": 21352681,\n \"elitbb\": 25004139\n}", + "body": "{\n \"cillum76\": -96397313,\n \"ut_2e3\": 14549188,\n \"ut__\": -94811743\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b7ae4191-3a5f-405d-adcb-4b21205afe01", + "id": "a91368a0-c350-4676-97c2-3fc8ce86cd87", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -81654,7 +81654,7 @@ "type": "text/plain" }, "key": "includeCommonAccess", - "value": "false" + "value": "true" } ], "variable": [] @@ -81689,7 +81689,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0251f010-0ea0-40aa-8f43-94e4d9c03733", + "id": "d808836a-a5b8-459b-9db8-24b60d32697d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -81711,7 +81711,7 @@ "type": "text/plain" }, "key": "includeCommonAccess", - "value": "false" + "value": "true" } ], "variable": [] @@ -81746,7 +81746,7 @@ "_postman_previewlanguage": "json" }, { - "id": "18488e1a-3c78-4ad2-8b33-f2c8a4c30133", + "id": "a70511c8-49bf-43ec-86ca-bfb5089d3662", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -81768,7 +81768,7 @@ "type": "text/plain" }, "key": "includeCommonAccess", - "value": "false" + "value": "true" } ], "variable": [] @@ -81803,7 +81803,7 @@ "_postman_previewlanguage": "json" }, { - "id": "924af964-a5c0-4db4-bc6d-aa23efa468b2", + "id": "9ac66f98-ce18-4888-80c6-2f3fbf172c1d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -81825,7 +81825,7 @@ "type": "text/plain" }, "key": "includeCommonAccess", - "value": "false" + "value": "true" } ], "variable": [] @@ -81866,7 +81866,7 @@ } }, { - "id": "6cb09940-231a-4f2d-aacb-49a15b9662e3", + "id": "2946966d-1f8b-4a3d-ae3e-5d4802f22bdd", "name": "Edit entitlements for a potential role to exclude some entitlements", "request": { "name": "Edit entitlements for a potential role to exclude some entitlements", @@ -81933,7 +81933,7 @@ }, "response": [ { - "id": "43a7b9c5-384e-4047-a128-bd2ea8097ddc", + "id": "9bf7630e-c4fe-4eae-bf5c-55a5f42f9f02", "name": "Adds or removes entitlements from a potential role's entitlement exclusion list.", "originalRequest": { "url": { @@ -81988,12 +81988,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 \"ex_0\": \"cupidatat in sit Ut\",\n \"est_5\": \"in consectetur in\"\n },\n {\n \"ute5\": \"dolore ullamco\",\n \"eiusmod_5ff\": \"Excepteur in deserunt ut\"\n }\n ]\n },\n {\n \"attributeName\": \"department\",\n \"distribution\": [\n {\n \"in5\": \"velit exercitation consectetur\",\n \"ipsumc\": \"dolore id voluptate\"\n },\n {\n \"ipsumbaa\": \"dolore veniam voluptate\",\n \"ut_1ab\": \"ut velit incididunt\",\n \"enim48\": \"minim\"\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-01-19T19:21:08.788Z\",\n \"modifiedDate\": \"1947-04-24T06:19:07.697Z\"\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 \"Duis_66a\": \"labore anim\",\n \"velitaf4\": \"enim minim esse\",\n \"nonb0e\": \"amet voluptate incididunt\"\n },\n {\n \"in_ba2\": \"in non\",\n \"consequat_bb\": \"do pariatur\",\n \"cillum_5\": \"aliquip Lorem et pariatur\",\n \"consectetur_fc1\": \"tempor ullamco\"\n }\n ]\n },\n {\n \"attributeName\": \"department\",\n \"distribution\": [\n {\n \"ut70\": \"do laboris\",\n \"amet818\": \"labore laborum veniam dolore ullamco\",\n \"ipsum_f\": \"deserunt eiusmod occaecat commodo\"\n },\n {\n \"labore_\": \"commodo aliquip cupidatat adipisicing\",\n \"sunt_953\": \"Excepteur veniam minim\"\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\": \"1976-02-21T13:31:51.845Z\",\n \"modifiedDate\": \"1988-04-09T07:05:13.720Z\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "7d46e699-00fe-435a-b659-5c47b783e2cc", + "id": "fd7f0421-1e05-43b8-a1f3-6d4efbaa7ce2", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -82053,7 +82053,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b3e5a328-cec5-4eb6-9021-6a43c51fdf5f", + "id": "a77cd08e-840e-436e-b00d-b82c12fb4bdb", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -82113,7 +82113,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eb11794e-344d-4793-8b71-4fe3f80c496a", + "id": "e71cad76-8f77-47f9-b881-2c4e6a724af0", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -82173,7 +82173,7 @@ "_postman_previewlanguage": "json" }, { - "id": "663325a1-a475-42ac-82a2-8e648c674cac", + "id": "d47f1642-b6aa-4426-9e64-88b26f296002", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -82239,7 +82239,7 @@ } }, { - "id": "03d6ce33-cb81-4e96-b862-5b57e2b759c7", + "id": "764351ad-2c4d-4164-bc28-2f130c393cb2", "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", @@ -82275,7 +82275,7 @@ "type": "text/plain" }, "key": "filters", - "value": "labore" + "value": "laborum qui aliquip irure" }, { "disabled": true, @@ -82339,7 +82339,7 @@ }, "response": [ { - "id": "14827493-d088-42d5-a676-14833a16b734", + "id": "1a63060a-e4d4-4a66-a80a-24960c46e685", "name": "Succeeded. Returns a list of identities for a potential role.", "originalRequest": { "url": { @@ -82370,7 +82370,7 @@ "type": "text/plain" }, "key": "filters", - "value": "labore" + "value": "laborum qui aliquip irure" }, { "disabled": true, @@ -82432,7 +82432,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a70c5cdb-287b-458e-81a8-3807305b75bb", + "id": "6a03571b-4db0-49f4-91c7-40dc8d9e7e84", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -82463,7 +82463,7 @@ "type": "text/plain" }, "key": "filters", - "value": "labore" + "value": "laborum qui aliquip irure" }, { "disabled": true, @@ -82525,7 +82525,7 @@ "_postman_previewlanguage": "json" }, { - "id": "acfb6b3d-ff47-425c-880a-c29506454d9e", + "id": "1f7c95b2-3f73-47fb-a05f-69f5105157e9", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -82556,7 +82556,7 @@ "type": "text/plain" }, "key": "filters", - "value": "labore" + "value": "laborum qui aliquip irure" }, { "disabled": true, @@ -82618,7 +82618,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e2bcfe76-a81a-47fe-85f0-0ce1663a0fb5", + "id": "4641ddc5-b57f-4b12-b091-5d77e3b7622c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -82649,7 +82649,7 @@ "type": "text/plain" }, "key": "filters", - "value": "labore" + "value": "laborum qui aliquip irure" }, { "disabled": true, @@ -82711,7 +82711,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0dd21ab3-277a-4ae5-a93e-eda8ae1efb03", + "id": "9fc9ed30-847a-4bcb-8567-7317c37ec893", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -82742,7 +82742,7 @@ "type": "text/plain" }, "key": "filters", - "value": "labore" + "value": "laborum qui aliquip irure" }, { "disabled": true, @@ -82810,7 +82810,7 @@ } }, { - "id": "ae6c4ef5-985a-4f47-bcf6-552408ab5dc7", + "id": "48cf1cd0-3b0c-43c6-8a56-a31c1a9b9551", "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", @@ -82864,7 +82864,7 @@ }, "response": [ { - "id": "ae923de8-969f-4b00-a10c-db1796723ed4", + "id": "b7375439-6309-4b25-9734-7251461ab52f", "name": "Succeeded. Returns a zip file containing csv files for identities and entitlements for the potential role.", "originalRequest": { "url": { @@ -82906,12 +82906,12 @@ "value": "application/zip" } ], - "body": "labore", + "body": "laborum qui aliquip irure", "cookie": [], "_postman_previewlanguage": "text" }, { - "id": "68078af6-2e2d-43c9-bb76-6c865a0cd8b0", + "id": "a44ec3a5-c77d-460d-857b-be88baf68173", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -82958,7 +82958,7 @@ "_postman_previewlanguage": "json" }, { - "id": "aee787b2-769e-4a59-a455-a23401df3a47", + "id": "8cac0470-8342-43ff-ac8b-1a780bc47c46", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -83005,7 +83005,7 @@ "_postman_previewlanguage": "json" }, { - "id": "419afca7-7e49-4a54-a666-033f9f507332", + "id": "41ca5acc-bc51-4279-965d-9acf0d1c7d00", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -83052,7 +83052,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3a99a04e-216e-4501-a7db-816c3503f846", + "id": "98a2fa8f-6888-4b06-8311-8044b756843a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -83105,7 +83105,7 @@ } }, { - "id": "78f85ceb-0e52-452b-9be2-95dfe36e0d47", + "id": "f05eb5f8-4a4d-4ff7-b472-1f7eed7309f5", "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", @@ -83172,7 +83172,7 @@ }, "response": [ { - "id": "9122887d-08e3-46e6-96b7-cebf68a7295b", + "id": "99fe07ac-be62-44f3-80f4-fbfef1adb543", "name": "Job Submitted. Returns a reportId that can be used to download the zip once complete", "originalRequest": { "url": { @@ -83232,7 +83232,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d80ec97a-aafc-48b6-a7fb-0f912010baef", + "id": "31e95efe-15e6-465b-844f-086f9e72fa56", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -83292,7 +83292,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ad59ba65-b42e-44ca-a5bf-0fbef0a78d6e", + "id": "1335cb26-56e0-47ee-a732-2ae9f1b15e33", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -83352,7 +83352,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0d619ccf-fb10-4304-a5e5-83d414ac3604", + "id": "953debcb-97a3-432c-bc31-a0ddcabbe4cd", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -83412,7 +83412,7 @@ "_postman_previewlanguage": "json" }, { - "id": "864e2672-6f4e-4d58-af3b-b547a8319ff2", + "id": "5a5a72f3-861f-44c0-bd0e-6630f146a7eb", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -83478,7 +83478,7 @@ } }, { - "id": "7def2511-d6f0-4670-a621-f50e8dccdb56", + "id": "2bd6455e-24fa-45ac-9730-6c92ed5aefe6", "name": "Retrieve status of a potential role export job", "request": { "name": "Retrieve status of a potential role export job", @@ -83543,7 +83543,7 @@ }, "response": [ { - "id": "41cda7d9-7b6c-4ef8-8e4b-1ca0d77954b7", + "id": "401c7b95-5329-4da7-876b-7e6e1ca9b386", "name": "Success. Returns the current status of this export", "originalRequest": { "url": { @@ -83591,7 +83591,7 @@ "_postman_previewlanguage": "json" }, { - "id": "11f91f13-cc36-46db-9823-90695992bbf4", + "id": "7ab84af6-a407-4e16-9a1d-0b4f5c80e850", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -83639,7 +83639,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a7ca6408-4fc8-4b91-aadf-b76a6071e470", + "id": "bb0d17c8-8567-496e-900f-6a7615f00a44", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -83687,7 +83687,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0071c157-9a9b-45e8-8087-bc9464c86d4b", + "id": "b98a7c03-a69f-4e65-911f-fdb673d20053", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -83735,7 +83735,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7fc9b0d9-e53a-4b35-98a6-4a2636518fe9", + "id": "6b4ec540-17a6-4fda-9f56-8296ec9807bc", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -83789,7 +83789,7 @@ } }, { - "id": "1c9ff029-a9d8-48a4-8f33-374694cd1424", + "id": "e59c7f91-21b1-45fa-a262-6b1b97d6dbb5", "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", @@ -83855,7 +83855,7 @@ }, "response": [ { - "id": "c772c8c5-fe41-4d7e-8151-9b66c8c297fb", + "id": "1a29ea7e-6a39-4498-8fa4-d6fc703de014", "name": "Succeeded. Returns a zip file containing csv files for identities and entitlements for the potential role.", "originalRequest": { "url": { @@ -83899,12 +83899,12 @@ "value": "application/zip" } ], - "body": "labore", + "body": "laborum qui aliquip irure", "cookie": [], "_postman_previewlanguage": "text" }, { - "id": "3ac32756-0a99-4cc5-a3fc-796d29d63368", + "id": "36973416-2061-4347-a7ed-d1ff2cecaf05", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -83953,7 +83953,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fa746e8c-766b-47c7-bb45-1863d4aaaa23", + "id": "bd64c301-dd38-45a9-9cd1-99611a31db18", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -84002,7 +84002,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a70a7249-719c-4cd7-8c1a-aaa724e0bb3c", + "id": "8b7a05bf-fa77-4270-b5c9-a3eb3cd09ae4", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -84051,7 +84051,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4181015f-5b12-4d2e-b4d4-f7527ea15453", + "id": "2d790c25-4814-4c71-bba2-087a65f0c73e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -84106,7 +84106,7 @@ } }, { - "id": "1b7efe86-5364-418d-a1ff-0fea611d7e2e", + "id": "3e1a2176-7557-4b85-843f-ff6997f5c6f2", "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.", @@ -84192,7 +84192,7 @@ }, "response": [ { - "id": "d5f25362-977a-4e2e-8155-5793cad5d875", + "id": "1b2c14db-0cb0-4e53-b48e-68d9256a5a7c", "name": "Accepted. Returns a potential role summary including the status of the provison request", "originalRequest": { "url": { @@ -84266,12 +84266,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\": \"2020-05-17T21:22:47.819Z\",\n \"saved\": true,\n \"description\": \"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}", + "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\": \"2002-02-14T02:30:33.788Z\",\n \"saved\": true,\n \"description\": \"in proident ull\",\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": "bfaa7588-2441-4e0b-8732-20a0e49e0b2d", + "id": "0e139577-ad63-471b-83e7-3b9ebc144bc8", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -84350,7 +84350,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e9f5bebe-3e41-4f72-8fcc-76a8c9acf03f", + "id": "3d389b7d-2271-45b2-963e-5fc8f4e71b3b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -84429,7 +84429,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1d0bc6d6-7361-46b9-8e58-c63296d488be", + "id": "c85fb926-48e1-41e8-b392-f8571877e5a6", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -84508,7 +84508,7 @@ "_postman_previewlanguage": "json" }, { - "id": "60dea2fb-3bd4-4a66-a45f-b27ee385cf1d", + "id": "423a2da6-a81b-43b9-a2c7-1ca4dbb2ce08", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -84587,7 +84587,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0d14aa93-94b2-47d3-9863-c6137cdf0b20", + "id": "800bc2f9-21d8-4cb7-9377-c2c5569e5f81", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -84672,7 +84672,7 @@ } }, { - "id": "791552ef-0f33-4b1d-8c99-d22bcc42a4cd", + "id": "8a545c04-24dc-427b-bbd4-a445df5e5083", "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", @@ -84772,7 +84772,7 @@ }, "response": [ { - "id": "0232a7ba-bd4e-4279-baec-650edba55690", + "id": "e18fe3a9-1ae2-4bbb-9d31-c8691acaac19", "name": "Succeeded. Returns a list of excluded entitlements for a potential roles.", "originalRequest": { "url": { @@ -84865,7 +84865,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1c69e2ab-49cc-4e06-9db6-f869fb0972cb", + "id": "6f6f1fc4-146f-4e9b-813e-e900cfcc1d31", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -84958,7 +84958,7 @@ "_postman_previewlanguage": "json" }, { - "id": "637d1d65-70f7-46cf-940a-32b7243533ef", + "id": "41c31d9b-6f01-4bf9-a578-2748b83b594c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -85051,7 +85051,7 @@ "_postman_previewlanguage": "json" }, { - "id": "07815799-a2f3-4b48-bc61-6c037911375b", + "id": "44d4f154-e5f3-462d-b2c6-ff2de1278370", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -85144,7 +85144,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5cb5149e-af3b-49c8-8eb1-e8699148c502", + "id": "768b9214-b4aa-4cea-814a-a7e38caec57f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -85243,7 +85243,7 @@ } }, { - "id": "6adf6294-fe04-45bc-b1d1-15c29a75d099", + "id": "1cb979f3-3c09-45d4-a60e-7e4671610687", "name": "Retrieves all potential role summaries", "request": { "name": "Retrieves all potential role summaries", @@ -85318,7 +85318,7 @@ }, "response": [ { - "id": "d2663f65-ed41-4462-9a90-a400c395e517", + "id": "47652b6d-7df3-418a-8039-ba5019d2b0de", "name": "Succeeded. Returns all potential role summaries that match the query parameters.", "originalRequest": { "url": { @@ -85402,12 +85402,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\": \"1998-01-24T01:34:23.448Z\",\n \"saved\": true,\n \"description\": \"reprehenderit\",\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\": \"1951-08-31T22:36:19.273Z\",\n \"saved\": true,\n \"description\": \"ut minim elit\",\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\": \"1963-03-29T10:28:56.154Z\",\n \"saved\": true,\n \"description\": \"voluptate ex\",\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\": \"2008-05-08T14:09:41.774Z\",\n \"saved\": true,\n \"description\": \"enim laborum amet\",\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": "7fa21d33-babb-4af4-ad55-673dfa0ff8b6", + "id": "0d242bdb-265a-47f4-a3a6-2b76d7962007", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -85496,7 +85496,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1fa0da34-8487-45be-98ef-975f5dc24864", + "id": "d1846fb2-c556-43d9-9c3c-5363d74a7a48", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -85585,7 +85585,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e66919f7-5522-4eaf-9521-fe17c2a1bd28", + "id": "7e5047af-4939-49c4-904e-4bb9497c4870", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -85674,7 +85674,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b200bb40-9b91-44b3-92eb-f6a0e8bbeb4d", + "id": "0a9617e0-a8d3-4c98-af49-05db44355ad8", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -85763,7 +85763,7 @@ "_postman_previewlanguage": "json" }, { - "id": "41b09ada-78f7-4725-a8ab-2133effacb15", + "id": "7728448c-fd17-43d6-b5d2-d692a783ed9e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -85858,7 +85858,7 @@ } }, { - "id": "5690034a-2f6c-4d51-bed4-b4b9d099d284", + "id": "d09a59c5-b187-4a17-acf4-382135925e27", "name": "Retrieves a specific potential role", "request": { "name": "Retrieves a specific potential role", @@ -85899,7 +85899,7 @@ }, "response": [ { - "id": "d279a4fc-d3c5-453a-9a0d-b3a63d6a5b04", + "id": "bd1be7b2-f25e-4454-8eb0-980a8a8877e1", "name": "Succeeded. Returns a list of potential roles for a role mining session.", "originalRequest": { "url": { @@ -85938,12 +85938,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 \"ex_0\": \"cupidatat in sit Ut\",\n \"est_5\": \"in consectetur in\"\n },\n {\n \"ute5\": \"dolore ullamco\",\n \"eiusmod_5ff\": \"Excepteur in deserunt ut\"\n }\n ]\n },\n {\n \"attributeName\": \"department\",\n \"distribution\": [\n {\n \"in5\": \"velit exercitation consectetur\",\n \"ipsumc\": \"dolore id voluptate\"\n },\n {\n \"ipsumbaa\": \"dolore veniam voluptate\",\n \"ut_1ab\": \"ut velit incididunt\",\n \"enim48\": \"minim\"\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-01-19T19:21:08.788Z\",\n \"modifiedDate\": \"1947-04-24T06:19:07.697Z\"\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 \"Duis_66a\": \"labore anim\",\n \"velitaf4\": \"enim minim esse\",\n \"nonb0e\": \"amet voluptate incididunt\"\n },\n {\n \"in_ba2\": \"in non\",\n \"consequat_bb\": \"do pariatur\",\n \"cillum_5\": \"aliquip Lorem et pariatur\",\n \"consectetur_fc1\": \"tempor ullamco\"\n }\n ]\n },\n {\n \"attributeName\": \"department\",\n \"distribution\": [\n {\n \"ut70\": \"do laboris\",\n \"amet818\": \"labore laborum veniam dolore ullamco\",\n \"ipsum_f\": \"deserunt eiusmod occaecat commodo\"\n },\n {\n \"labore_\": \"commodo aliquip cupidatat adipisicing\",\n \"sunt_953\": \"Excepteur veniam minim\"\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\": \"1976-02-21T13:31:51.845Z\",\n \"modifiedDate\": \"1988-04-09T07:05:13.720Z\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "12199618-e904-4f66-89cc-6117f9ef9a94", + "id": "06f2a6f5-a075-4714-aa6e-31c5c5fcce0f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -85987,7 +85987,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f5b81f73-fd5a-47af-9da8-448f2845acab", + "id": "13127cd6-77e5-4c55-8e58-e3e00cb2e2fa", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -86031,7 +86031,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c027b2c7-280f-471b-8930-c3f086f47804", + "id": "5d8489f5-6292-451a-abe7-4458551aa750", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -86075,7 +86075,7 @@ "_postman_previewlanguage": "json" }, { - "id": "914cabee-91f0-4275-9012-cc8460677970", + "id": "98f3af2b-9f17-46f9-b737-8881fdf72e49", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -86119,7 +86119,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2407853f-40b1-4539-98c2-64926deae01c", + "id": "d602677a-1010-48dc-8b85-3117947c183b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -86169,7 +86169,7 @@ } }, { - "id": "fe4c7892-e41c-483e-889d-83f61877f88b", + "id": "2ad80be4-1c82-4556-9854-14625dbf77ee", "name": "Update a potential role", "request": { "name": "Update a potential role", @@ -86233,7 +86233,7 @@ }, "response": [ { - "id": "76871b6c-5f7b-4dac-92e6-4ae62f37b379", + "id": "f9539af3-f34f-49cc-9b5c-c3e1a8f26f36", "name": "Succeeded. Returns the potential role summary based on the potentialRoleId provided.", "originalRequest": { "url": { @@ -86290,7 +86290,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7b951ab6-11e7-44c4-87b8-884d9bdd2bba", + "id": "f95d59a1-e543-4597-9ca1-948ca3824c18", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -86347,7 +86347,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4a97bc12-04d2-4e40-b2bd-9b7c825dddd9", + "id": "ca22337a-f46b-4f26-9fa2-1fe8027105c9", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -86404,7 +86404,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ec1ab682-465f-48a5-97d4-444213cc43ec", + "id": "ed1c1252-f539-443f-baf9-2d4b808cb673", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -86461,7 +86461,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b1db38a6-5e38-4f1b-b4ec-e9340bd2b328", + "id": "5f4d97df-ba45-414a-834b-b681219a2468", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -86518,7 +86518,7 @@ "_postman_previewlanguage": "json" }, { - "id": "46a70d93-4753-412b-93c0-093f9fdd0d96", + "id": "2029df70-6a75-4477-896c-f8aad4399e14", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -86575,7 +86575,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d359d1ee-359a-41f8-9f0c-fc971781e88e", + "id": "ffa8c2fe-118f-44a9-8ff3-a1987e1ba142", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -86638,7 +86638,7 @@ } }, { - "id": "c87089b5-1100-4aa3-9279-df01a546ec24", + "id": "5ad7b738-4f2d-4b07-ae9f-90b047ad1a87", "name": "Retrieves all saved potential roles", "request": { "name": "Retrieves all saved potential roles", @@ -86705,7 +86705,7 @@ }, "response": [ { - "id": "acae52cf-7450-41bf-8dbf-1ea864efe8d4", + "id": "09fcc03e-2db7-4777-a336-0c35578feab7", "name": "Succeeded. Returns a list of draft roles for a role mining session.", "originalRequest": { "url": { @@ -86781,12 +86781,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\": \"2015-07-10T17:42:03.998Z\",\n \"modifiedDate\": \"2007-12-15T16:38:11.745Z\"\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\": \"1954-01-02T18:09:31.666Z\",\n \"modifiedDate\": \"1988-11-08T08:38:32.414Z\"\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\": \"1946-10-19T22:59:18.651Z\",\n \"modifiedDate\": \"2016-10-08T15:04:23.468Z\"\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\": \"1985-05-28T17:09:09.164Z\",\n \"modifiedDate\": \"1978-12-01T13:14:30.300Z\"\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "0807fa57-c2da-4483-a78f-b3b41d68c8bd", + "id": "c99608e4-9254-45e1-88da-3173f2b29bda", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -86867,7 +86867,7 @@ "_postman_previewlanguage": "json" }, { - "id": "38d3938e-87d3-47bc-ae84-4a4dd4713655", + "id": "ebaa96b3-b0a7-4772-a2cb-f5b95478be8d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -86948,7 +86948,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0b630fbd-f35e-4ce1-ade2-904c09bc6091", + "id": "346b4690-236d-4003-9e0b-4406ad79c688", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -87029,7 +87029,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a1098cb3-0ada-4422-9792-2e43b3935505", + "id": "1ff05fe4-cf88-43ee-83a2-4e3baea587e4", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -87110,7 +87110,7 @@ "_postman_previewlanguage": "json" }, { - "id": "26c3b289-c78d-4ef9-8abb-3f97acdaaa7d", + "id": "1c9eb271-a941-4b3f-9945-999bb6895b47", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -87197,7 +87197,7 @@ } }, { - "id": "77341426-7635-42be-8b31-5321aea30e03", + "id": "a3b2fd01-f873-4923-be48-9add9633565f", "name": "Retrieves potential role source usage", "request": { "name": "Retrieves potential role source usage", @@ -87288,7 +87288,7 @@ }, "response": [ { - "id": "fcbd594d-42d5-43c1-8063-30ef1ec8f5f8", + "id": "136efb03-08ce-4f67-bed0-9fb70702a037", "name": "Succeeded. Returns a list of source usage for the identities in a potential role.", "originalRequest": { "url": { @@ -87372,7 +87372,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8bc6ff2e-ea00-45e8-b92f-3d6e2a0d3681", + "id": "6e7235c6-73d6-4beb-9103-d7d689354a4c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -87456,7 +87456,7 @@ "_postman_previewlanguage": "json" }, { - "id": "74f367e8-e4ca-4df9-a0b6-f4d36698237c", + "id": "adcb6163-ead6-4794-b1aa-894431122c02", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -87540,7 +87540,7 @@ "_postman_previewlanguage": "json" }, { - "id": "129f8431-c77e-4a92-9d43-f4a89605a96e", + "id": "523098a5-cd90-4a85-ac78-e2d176f4796d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -87624,7 +87624,7 @@ "_postman_previewlanguage": "json" }, { - "id": "612e240c-2dc9-4e18-9108-019bad346b70", + "id": "15288567-ca5f-4769-bb7f-372a0d25b22f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -87708,7 +87708,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9b8301c5-e142-42c0-bf66-728e3b029188", + "id": "87e6198e-2860-45a2-b766-c3d0262a2a74", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -87804,7 +87804,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": "94b508fe-7914-49dc-960f-c2cf3b4657ff", + "id": "427a37da-d54c-4fe1-bdde-564264758c39", "name": "Update an icon", "request": { "name": "Update an icon", @@ -87873,7 +87873,7 @@ }, "response": [ { - "id": "788d369a-ce63-4907-918d-cdb2779cc2e8", + "id": "43b90c16-46d2-4766-9827-2713d563d11d", "name": "Icon updated", "originalRequest": { "url": { @@ -87935,7 +87935,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5e6c2cb6-0dee-4129-bb16-9b217b3e6606", + "id": "8a6dc7f1-9a60-4bb7-a04f-e31a3850ea3f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -87997,7 +87997,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7ac7d9e3-09d7-43f8-a2f1-b788caa007bf", + "id": "a6d99ca7-4111-4944-aa2b-509b56841cac", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -88059,7 +88059,7 @@ "_postman_previewlanguage": "json" }, { - "id": "52c08522-9794-4ecd-95a6-fe6d7e0f03c5", + "id": "9ca293a0-080d-4d27-925e-041ce8f1f941", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -88121,7 +88121,7 @@ "_postman_previewlanguage": "json" }, { - "id": "39d96a2a-0f41-41d0-83de-340e535cf0ad", + "id": "94b148fc-3eb9-4608-85ea-e8665e873f94", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -88183,7 +88183,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c7ff7af9-6f18-49df-a34f-36fb330cd970", + "id": "30e12447-eda6-410b-85ef-74407754c0d9", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -88245,7 +88245,7 @@ "_postman_previewlanguage": "json" }, { - "id": "06887602-5557-4334-bc61-afd0a46bf5d1", + "id": "33585159-cff3-4f10-b79a-09ca9e69253e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -88313,7 +88313,7 @@ } }, { - "id": "19ba43d4-d285-4cc5-b9e6-b2979b3257db", + "id": "b5c1c98b-a393-4f58-a2d9-6524b658c22c", "name": "Delete an icon", "request": { "name": "Delete an icon", @@ -88365,7 +88365,7 @@ }, "response": [ { - "id": "eb4b0cf0-1b04-4a71-8e0d-bdf2b41c6e5c", + "id": "4378c262-852b-4f63-9e9b-2d93aebec49c", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -88400,7 +88400,7 @@ "_postman_previewlanguage": "text" }, { - "id": "a56bf3e2-7413-4418-9460-fd0debcbccd0", + "id": "638eac7d-359e-44e1-b9ab-37a0c825e992", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -88445,7 +88445,7 @@ "_postman_previewlanguage": "json" }, { - "id": "849750a4-da98-484c-91f1-e60a5e864c50", + "id": "9adf3f71-674e-4504-af4e-f31f57ca9b67", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -88490,7 +88490,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6ecfebd6-cb7f-49ff-b964-62a34a258739", + "id": "b6755ed1-8269-4ee2-8d67-7f6fb0bf70a0", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -88535,7 +88535,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3fd015db-b6fd-43a7-9ef3-690b4bf4357e", + "id": "ef38190d-8eba-47cf-9b2e-28ab08c88a1d", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -88580,7 +88580,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0d70a9f7-3190-4b68-b90a-e44f4db75542", + "id": "c38f3022-d9c8-4f48-a915-0d7a49b09304", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -88625,7 +88625,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1b827bd9-20ec-43c0-b98b-f6363edad92d", + "id": "719bca7b-96b8-4d9b-96e1-086813c39052", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -88682,7 +88682,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": "f364e452-ea6e-4aa0-a61a-4f6a398e13cc", + "id": "e5c3edaa-b3cb-4664-ac26-d1ef5ab5a0c4", "name": "Attribute synchronization for single identity.", "request": { "name": "Attribute synchronization for single identity.", @@ -88703,7 +88703,7 @@ "variable": [ { "type": "any", - "value": "labore", + "value": "laborum qui aliquip irure", "key": "identityId", "disabled": true, "description": { @@ -88724,7 +88724,7 @@ }, "response": [ { - "id": "beeeb188-798b-4fcc-9340-190cf5320283", + "id": "6af6d71c-b274-4520-b505-ccd1bb30f876", "name": "An Identity Sync job", "originalRequest": { "url": { @@ -88769,7 +88769,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4d3e2308-f4e4-44f8-b310-428e4a43e5a0", + "id": "e9d25fab-93af-46a9-8ce0-43b9c69c30b3", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -88814,7 +88814,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f2f3e39b-b9d0-4592-8e04-f78c52f1ff20", + "id": "59066131-321b-48ae-b0e5-c890fd21f77d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -88859,7 +88859,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0d53d76f-a3b2-4486-b02a-befcba5105a2", + "id": "27b61533-eeba-4989-bc24-c48aea1df6fe", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -88904,7 +88904,7 @@ "_postman_previewlanguage": "json" }, { - "id": "43d208be-6e09-416c-8c82-b2db14b34ab4", + "id": "dbc0bffd-12a9-4b63-9144-b38d3d544d71", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -88949,7 +88949,7 @@ "_postman_previewlanguage": "json" }, { - "id": "82e42736-ed33-4d27-bde0-ccc8eb50395d", + "id": "6fbd07c2-66cd-48b2-b7f4-c65c31e6ca6b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -88994,7 +88994,7 @@ "_postman_previewlanguage": "json" }, { - "id": "13800cc4-d33a-4224-9f3a-10209c00e3ea", + "id": "dc15747e-88d6-4272-8eaf-431565908f41", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -89045,7 +89045,7 @@ } }, { - "id": "7d12415d-032d-4ce4-9ed6-e5d698fa98bb", + "id": "664829ee-90c5-4157-aeaf-2d177e8a4fd1", "name": "Get ownership details", "request": { "name": "Get ownership details", @@ -89087,7 +89087,7 @@ }, "response": [ { - "id": "48f86459-63bc-4813-b7d2-3aa526242f44", + "id": "c5a5ab46-6cd1-4807-a72a-c7f5a6e379f9", "name": "Identity's ownership association details.", "originalRequest": { "url": { @@ -89132,7 +89132,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d9fc4068-cc4e-4d9c-a3d0-93af8a74cf75", + "id": "9a068b28-3e11-478a-b10e-4208cf4118e1", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -89177,7 +89177,7 @@ "_postman_previewlanguage": "json" }, { - "id": "acd6ba53-3de5-4166-bd5c-f0bbea6f239a", + "id": "3491fd44-15fc-4ae6-a233-fd595f296e70", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -89222,7 +89222,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4fffcde3-6da9-4952-a82f-df8d6f3978ea", + "id": "f6b8905d-9bf5-43aa-88dc-1a43188e2144", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -89267,7 +89267,7 @@ "_postman_previewlanguage": "json" }, { - "id": "04b94149-afe2-4efc-ad98-be252439e111", + "id": "dbc35cd6-7513-4dee-8578-295b4d837138", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -89312,7 +89312,7 @@ "_postman_previewlanguage": "json" }, { - "id": "868f9f6a-4b28-4fdb-a3b6-d4469c8fb942", + "id": "bccf9f88-574b-46a0-a079-c484eda34b19", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -89357,7 +89357,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c100ba4b-e0bd-4ab8-92fc-c5a6ffbf5c58", + "id": "fbaef0bb-857e-46d2-a1ce-7b65d2fc2a86", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -89408,7 +89408,7 @@ } }, { - "id": "37ff6afb-8ef7-4946-aa4d-9fd7369e95f3", + "id": "4a6005c8-a0fa-40ef-9752-fe93a12379fa", "name": "List Identities", "request": { "name": "List Identities", @@ -89492,7 +89492,7 @@ }, "response": [ { - "id": "79f25d03-cf26-4a3d-a7c3-5a7954f916f8", + "id": "fb401a20-2b44-40dd-9318-3318c351ba15", "name": "List of identities.", "originalRequest": { "url": { @@ -89590,7 +89590,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8923328b-539f-48c2-9c9a-b682014bb491", + "id": "d654ad5f-0ac7-4d54-8eb1-6bccefbbcf93", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -89688,7 +89688,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f165a256-62af-4062-83fc-81b6a6ecc526", + "id": "a0133957-6f5e-42ad-9581-f224d0470a46", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -89786,7 +89786,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a57df24f-2745-413b-b5d0-a342624ff3cc", + "id": "9e7be53b-e020-4725-ac3e-7f7403c82c98", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -89884,7 +89884,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d219bbc4-7d96-4f7a-a771-8f344ed528e1", + "id": "8b6a19e0-a569-44e0-8624-be8a89fd8537", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -89982,7 +89982,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d0e9acf8-8a00-4b1e-a67c-1a1743a12064", + "id": "56f42158-b3c4-47fe-b8ed-a9a59dc16fcb", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -90086,7 +90086,7 @@ } }, { - "id": "663229dd-4fc1-4b31-91cb-61c30e09f07d", + "id": "62168226-395f-486f-b82a-13a1521f88fe", "name": "Identity Details", "request": { "name": "Identity Details", @@ -90127,7 +90127,7 @@ }, "response": [ { - "id": "4acf9fee-4bac-4dbe-ac0d-0b5ed48ca744", + "id": "53003383-75fa-439a-860f-72d28017dfd6", "name": "An identity object", "originalRequest": { "url": { @@ -90171,7 +90171,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fc35dcab-8c41-43ba-99db-b4ee0bae2372", + "id": "67e3c57b-dd5d-4a8a-8fd4-4227cebc1ced", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -90215,7 +90215,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2c40d656-a34d-43fd-9295-c466f918a9b3", + "id": "7a164eac-93b4-4f9d-be90-5ce557501913", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -90259,7 +90259,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8ed604d8-0bc8-4eaa-9f8b-01a8990ba101", + "id": "51200740-8bcb-4f84-bd67-5a38e86e06cd", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -90303,7 +90303,7 @@ "_postman_previewlanguage": "json" }, { - "id": "19ee9a95-500a-46c9-9c5e-8459a7b50103", + "id": "3c380240-3be9-4054-ad02-f69ecc1fb0d3", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -90347,7 +90347,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e8eb0e90-3d44-433a-8c39-cd04202b988b", + "id": "b290c484-1082-4165-ab7f-3b1e532a5b6a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -90391,7 +90391,7 @@ "_postman_previewlanguage": "json" }, { - "id": "836c3d3b-fbd1-4a98-9bde-992630ef5c64", + "id": "9502b5f4-5627-4101-a928-7ec9a645d480", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -90441,7 +90441,7 @@ } }, { - "id": "bd638207-967e-4248-b759-155ea0f42ac9", + "id": "b671fa50-98f3-4029-8a8f-cefc320d81fd", "name": "Delete identity", "request": { "name": "Delete identity", @@ -90482,7 +90482,7 @@ }, "response": [ { - "id": "1460b044-4bd5-4a59-844a-2c97dec4e714", + "id": "b230dfa9-741c-4601-abb6-cde36eb58631", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -90516,7 +90516,7 @@ "_postman_previewlanguage": "text" }, { - "id": "04836403-4ec2-4068-84a9-b7b24566a037", + "id": "882dbbe7-12df-42ab-9fc1-8c6a6535f104", "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": { @@ -90560,7 +90560,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c4bd9369-63a3-4621-8bea-88d595eeadb1", + "id": "06a5eb0e-6877-4eb3-99ce-539fea43bd55", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -90604,7 +90604,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eedf5fbe-6b20-4e2f-aa89-0ecc1a9f9e19", + "id": "08dfc0a1-dc37-4ad7-8af5-55aac427acb5", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -90648,7 +90648,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b082ffc9-61c0-458a-87c5-d33d47ce2dde", + "id": "efc8eef9-c1fa-4658-8a17-02f4bd2cb6cd", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -90692,7 +90692,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9aa81a60-ebb8-4bc9-9b30-facc680fda23", + "id": "86aa6a26-8635-4f36-b3af-92b19910b016", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -90736,7 +90736,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fa7e24a7-377b-4f6c-bc17-0fca2148e42e", + "id": "d2f88cf3-3b45-45b7-9fae-a53476ba54be", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -90786,7 +90786,7 @@ } }, { - "id": "382c6390-0ff2-425d-b335-630ebeacb314", + "id": "80a6cff2-0a71-446f-8270-f581dbe4ce05", "name": "Invite identities to register", "request": { "name": "Invite identities to register", @@ -90829,7 +90829,7 @@ }, "response": [ { - "id": "16937ca2-b1c8-40dd-a9c6-1a579a3cfdf8", + "id": "d8cb4b53-c397-41e6-9371-c24bd0a7b45e", "name": "Responds with an initial TaskStatus for the executed task", "originalRequest": { "url": { @@ -90881,12 +90881,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 \"enim8\": -98771837.64861956,\n \"in2\": 11884556.145661935,\n \"temporb31\": 44689326,\n \"eu_1ed\": \"ut mollit veniam a\"\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 \"voluptate01\": -47111608\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": "33afd6fb-9a14-4f00-8e19-5c2743e5a996", + "id": "37691637-014e-44c5-9299-33c19e5d6de4", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -90943,7 +90943,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c90acb95-8adf-4464-a8e6-3513dfc904ff", + "id": "3691a6f8-bf4f-4934-897f-bad87d25c242", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -91000,7 +91000,7 @@ "_postman_previewlanguage": "json" }, { - "id": "994a7bd8-58d9-450a-b594-35a6fd1ddbcf", + "id": "91c4da5b-b548-4d43-8da1-6628ca4c05c5", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -91057,7 +91057,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f0ab18d4-2be9-4bb9-8fd1-0e288811b3b1", + "id": "85ef84a4-252c-4618-99ea-8f1e2f5139c4", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -91114,7 +91114,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ec0918dd-3160-45c5-98ac-f90e1e8a9961", + "id": "3b3a7120-ce08-41d8-bf42-08c3451f7524", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -91171,7 +91171,7 @@ "_postman_previewlanguage": "json" }, { - "id": "785f9377-4362-4688-9b02-4378133fad36", + "id": "79f81477-6959-4f19-b6ee-cb627ab6b0d1", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -91234,7 +91234,7 @@ } }, { - "id": "fae7881f-041c-4014-9f60-fcfd6f326f6a", + "id": "c05aaa84-61e5-4604-aad1-2bfd4adbb843", "name": "Send password reset email", "request": { "name": "Send password reset email", @@ -91285,7 +91285,7 @@ }, "response": [ { - "id": "120b6125-e4b6-47e6-a556-a52d0ae83735", + "id": "110b7a5c-031c-4223-b1d4-1aaa118e1e86", "name": "The email was successfully sent", "originalRequest": { "url": { @@ -91335,7 +91335,7 @@ "_postman_previewlanguage": "text" }, { - "id": "e3ae22f7-d2b6-41b7-89b4-2397580373df", + "id": "a4473795-1a4b-4a77-8c05-1d1a2686e0b8", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -91395,7 +91395,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c2a2e546-7e3d-4c47-8201-6bf6b1fd6ee1", + "id": "be298d12-1aff-41f3-ac06-27ad13880b66", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -91455,7 +91455,7 @@ "_postman_previewlanguage": "json" }, { - "id": "58fcca81-522e-4890-addd-b64f2bdb2cbe", + "id": "4e709e35-2cd6-40b0-ba22-cd6b84f840b5", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -91515,7 +91515,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b6455b2a-027c-43d2-9b06-93aeb2b72261", + "id": "99572e78-3a2e-4795-9f9d-258d1ae55ee0", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -91575,7 +91575,7 @@ "_postman_previewlanguage": "json" }, { - "id": "16af2aae-7ae1-4e0d-bd19-a0d59b568560", + "id": "d621b9c4-c0bf-4474-ab68-de0dfbaa4691", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -91635,7 +91635,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0496e5b1-8b42-4aa7-ba3c-3f7366cb78f6", + "id": "a2bf5312-f099-4cb0-a1e5-9551cc463fad", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -91701,7 +91701,7 @@ } }, { - "id": "cc053b12-5a45-4291-8d15-06632d9920d6", + "id": "3fe542f8-cc1d-4140-abaf-b05d07093d10", "name": "Process a list of identityIds", "request": { "name": "Process a list of identityIds", @@ -91744,7 +91744,7 @@ }, "response": [ { - "id": "e0fbe7d0-844a-4388-9920-3391c1927d5f", + "id": "69c09824-3587-4227-8c1a-de7dfba78892", "name": "Object containing the DTO type TASK_RESULT and the job id for the task", "originalRequest": { "url": { @@ -91801,7 +91801,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3b0f10f3-0d88-4ace-949d-abc4a2537626", + "id": "97a74cf8-c370-4ea2-86dc-4afaa097b2fd", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -91858,7 +91858,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e59bfec7-5e08-457d-9890-4b25dac31443", + "id": "6be8bf5a-4f60-48ce-b817-1951d6334c9f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -91915,7 +91915,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0fbca0fb-9251-479c-ae4f-ecf394ec3b71", + "id": "6ec12f16-82c7-443b-a67a-6c67c111ba10", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -91972,7 +91972,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4da82129-3656-4ea2-b531-5448eedc8112", + "id": "482a27c1-dd15-49de-a6d8-11852b95766c", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -92029,7 +92029,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9e5b9a1b-e6a5-49a1-8286-c593f56b75e2", + "id": "bced6062-1b1a-4b72-8ffd-a107937c2bef", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -92086,7 +92086,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3c6dfe51-e043-4992-848c-2477ee890e25", + "id": "4c92d895-01da-47da-a378-165167c5c058", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -92149,7 +92149,7 @@ } }, { - "id": "8d78e977-afaa-4e72-a4d2-4d6fc16b9386", + "id": "639b9301-4860-43c3-b5f7-33133651c5de", "name": "Reset an identity", "request": { "name": "Reset an identity", @@ -92195,7 +92195,7 @@ }, "response": [ { - "id": "a033d4ed-1d00-454b-b509-4344a03763f0", + "id": "9f38a3f9-6b2e-44b9-ad3a-a761f623993f", "name": "Accepted. The reset request accepted and is in progress.", "originalRequest": { "url": { @@ -92230,7 +92230,7 @@ "_postman_previewlanguage": "text" }, { - "id": "9005794f-e160-4d7d-9464-0666a41d6b87", + "id": "08b7904b-1968-4c96-95e4-be4154e4762f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -92275,7 +92275,7 @@ "_postman_previewlanguage": "json" }, { - "id": "76ce0cb5-c889-4fbc-b6a8-eeead7a8746c", + "id": "533c651b-0af3-467f-8395-832f81482dc3", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -92320,7 +92320,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8e65543c-ddb0-4c0f-962c-7ca45bf82d9e", + "id": "4bc928e7-87db-4ab7-8418-959fe6b0a327", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -92365,7 +92365,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5e4466f4-c7e0-4b15-ab81-6bc6a290fb4b", + "id": "0fcb8969-68e5-4ff6-94f1-f1823e4fd292", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -92410,7 +92410,7 @@ "_postman_previewlanguage": "json" }, { - "id": "85c579e6-8dc9-4768-b94a-3134733223bd", + "id": "cb390b73-6184-4c33-8bcc-ab816d201726", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -92455,7 +92455,7 @@ "_postman_previewlanguage": "json" }, { - "id": "159c4d11-9e02-4ead-85a5-0b0a6e66072a", + "id": "4b5e4ef0-e7e7-4978-a8d4-c1958bef2ce9", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -92506,7 +92506,7 @@ } }, { - "id": "afbf53e5-57be-46ec-880b-4a399b9f1fd8", + "id": "b18dc458-9f6f-4050-8410-49ff10d73a74", "name": "List role assignments", "request": { "name": "List role assignments", @@ -92567,7 +92567,7 @@ }, "response": [ { - "id": "14027ee7-2c94-4f60-b60c-71b7bb385da9", + "id": "4b452f5a-bc6b-4e18-a9d7-353415c0db68", "name": "A role assignment object", "originalRequest": { "url": { @@ -92631,7 +92631,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3339ea76-2cc4-4bf5-a66c-9912964841a4", + "id": "a1af53c0-8dd2-430d-91ba-2062b3d28d85", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -92695,7 +92695,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0b0ff26e-58fd-48d6-8b78-562357e5b211", + "id": "6c8d80f3-c187-4c6c-af77-fb439fe19ee3", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -92759,7 +92759,7 @@ "_postman_previewlanguage": "json" }, { - "id": "355b5769-7efc-4942-93a0-09cb30439dce", + "id": "79f03026-f630-4d74-8584-d54183e8a5eb", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -92823,7 +92823,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8b35d12c-f73b-4ed2-879f-1e67cfd6c0ca", + "id": "c56c7177-998e-45e0-ad8f-725ae679e7f8", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -92887,7 +92887,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f1b5a165-6ec0-45ce-84cb-0db8818a3890", + "id": "8d845db0-76f9-4b1c-9a63-2b20d523cec5", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -92951,7 +92951,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7edf2eae-c268-4001-ae88-10669f3c6733", + "id": "b37bfbb1-19d9-458b-8dc2-6c680a770f7e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -93021,7 +93021,7 @@ } }, { - "id": "43e0ca15-0669-4245-8599-8d5c4ca7b0f9", + "id": "8564a2b8-b9ee-4b96-b309-329732c73cc4", "name": "Role assignment details", "request": { "name": "Role assignment details", @@ -93071,7 +93071,7 @@ }, "response": [ { - "id": "77c76dc0-768e-4116-bce6-7d6b3dc59180", + "id": "3e280172-29c4-4451-8378-5c5e0f8bf506", "name": "A role assignment object", "originalRequest": { "url": { @@ -93117,7 +93117,7 @@ "_postman_previewlanguage": "json" }, { - "id": "db3c0ad9-e3b2-4954-809e-a39aaf124f92", + "id": "70ea52df-430d-419f-8279-009c7f3007d4", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -93163,7 +93163,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6a41adc6-6434-4c80-b3e4-24e290feeb1b", + "id": "38ecdad3-5f62-483b-8511-59121ea9d3f9", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -93209,7 +93209,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0fae54ff-e10d-4148-8395-5e0f0f4e1ef5", + "id": "ba0b2b6e-ea73-4732-ae34-b7545a89d898", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -93255,7 +93255,7 @@ "_postman_previewlanguage": "json" }, { - "id": "09990dc3-0193-4784-931b-006a04d208db", + "id": "02dfe0b9-f7d9-4144-a116-e756631457f6", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -93301,7 +93301,7 @@ "_postman_previewlanguage": "json" }, { - "id": "62f4f20e-f344-467c-984a-82fbab1bc08a", + "id": "509fa586-f529-4b58-8f95-5d5bbd165749", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -93347,7 +93347,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6b0aeae1-7c43-40b5-b991-3a4a2dfc96b5", + "id": "2e46edb2-2805-45da-9b33-b2eb6fb7f0ef", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -93405,7 +93405,7 @@ "description": "", "item": [ { - "id": "cf66fca4-bb12-4bcc-8e9a-ddc411cdd45f", + "id": "8118a3b8-cf11-412d-9d36-3265e765d1e3", "name": "List Identity Attributes", "request": { "name": "List Identity Attributes", @@ -93471,7 +93471,7 @@ }, "response": [ { - "id": "09e0bd16-5597-4e52-b66c-4c701c87cc79", + "id": "b85b17aa-95f7-40a1-bd43-0115cf40793c", "name": "List of identity attributes.", "originalRequest": { "url": { @@ -93551,7 +93551,7 @@ "_postman_previewlanguage": "json" }, { - "id": "97e9d375-f5e6-499b-803f-b685640d75a5", + "id": "add88ee3-54b4-4ede-86c5-ef1610fb4aa0", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -93631,7 +93631,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7caea0a5-eaf7-46fa-aa85-41ec11a9649d", + "id": "7e0a2239-4c28-4d3c-b873-e73190676175", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -93711,7 +93711,7 @@ "_postman_previewlanguage": "json" }, { - "id": "939bc488-c620-45c6-b4aa-50f0e2b22bbf", + "id": "f452eee5-2c22-40da-b1a1-4d0f3898b416", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -93791,7 +93791,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5c1f5aa9-98c0-41f5-85dc-b0fb54bd98d8", + "id": "393e84a1-365a-41de-8381-1d273ae788cb", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -93871,7 +93871,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6bc66c59-a60f-4959-848d-25365158a361", + "id": "e7bb4078-0fd1-4a2b-846f-5362f04497bc", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -93957,7 +93957,7 @@ } }, { - "id": "966076a5-42b2-490f-b57e-edb5d93409c2", + "id": "c95d0a38-783e-4788-88d3-d55bcb0a1ae0", "name": "Create Identity Attribute", "request": { "name": "Create Identity Attribute", @@ -93999,7 +93999,7 @@ }, "response": [ { - "id": "b9e2b399-69f0-4caf-8bc9-9c058e76135c", + "id": "c8783d02-6c8a-44cd-9450-3dd72a6c9519", "name": "The identity attribute was created successfully.", "originalRequest": { "url": { @@ -94055,7 +94055,7 @@ "_postman_previewlanguage": "json" }, { - "id": "50f557cc-a6a1-4acd-b98b-e79ebb7a2ef4", + "id": "5f4a3547-60ad-4c56-93d6-b95e9d5e26bf", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -94111,7 +94111,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5f3f166a-3641-40fa-850a-2707d92a072f", + "id": "af4309c6-b6bd-433f-a9a0-9efd6897d273", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -94167,7 +94167,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7fccfcc1-80fe-4d11-bf29-8b7d114d5df1", + "id": "4357f972-4c18-421f-8537-e9b90413980b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -94223,7 +94223,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c26d59e5-569f-4890-b007-1e1c7e121613", + "id": "a6c115f5-db6d-4073-acba-3daf99195d20", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -94279,7 +94279,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b2461393-616c-45e1-a6a0-916238431dd0", + "id": "535a2c04-3077-4f9c-8d5f-cfc281bc2eb4", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -94335,7 +94335,7 @@ "_postman_previewlanguage": "json" }, { - "id": "abea1005-8a6a-4525-afcf-b708bda5db6a", + "id": "6fab0779-ca6a-40a3-9cc3-1583689e7466", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -94397,7 +94397,7 @@ } }, { - "id": "7bbcddc3-27f7-4b9f-880e-a4cae14f1be1", + "id": "25d1ad87-170e-440c-9a3d-198254239de7", "name": "Get Identity Attribute", "request": { "name": "Get Identity Attribute", @@ -94438,7 +94438,7 @@ }, "response": [ { - "id": "3c3fe917-58c3-43fe-93f3-00dd9883506a", + "id": "cdcb2e31-9e4a-42f2-9480-6bb85a5dc4b4", "name": "The identity attribute with the given name", "originalRequest": { "url": { @@ -94482,7 +94482,7 @@ "_postman_previewlanguage": "json" }, { - "id": "76654563-bee1-46ae-84f9-7f5efb4530c4", + "id": "f7334640-7518-4e1b-8d58-43264f0d772d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -94526,7 +94526,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f3b48a52-b26b-4dee-8246-b45addd6f83f", + "id": "e085c2ed-a643-484f-aa8d-a47bd068ee17", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -94570,7 +94570,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0c1f07e3-8f5a-4f4d-8956-607440a80a92", + "id": "efaa5987-2064-47e7-bb3f-758b6232e5d1", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -94614,7 +94614,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e79ee9bd-7620-4f5f-b618-6c0aceab8693", + "id": "80cd971e-bc88-459b-81b1-6bc9d11eb3fe", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -94658,7 +94658,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e97730e8-57ac-4af4-bdf1-074a7c1d2e3d", + "id": "5c760e88-8ecb-45c9-a3c4-c77f5cd79837", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -94702,7 +94702,7 @@ "_postman_previewlanguage": "json" }, { - "id": "adbd0e43-a668-4432-819e-7d26b4cc64b0", + "id": "b92ae9e1-48e9-4156-92f4-50958838a648", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -94752,7 +94752,7 @@ } }, { - "id": "a2c15ef1-6619-4b26-ab04-101a41fed8ff", + "id": "02fc724a-6a3b-4310-a42a-18614a8ea086", "name": "Update Identity Attribute", "request": { "name": "Update Identity Attribute", @@ -94806,7 +94806,7 @@ }, "response": [ { - "id": "3a79b826-a9c5-4070-b882-0cd0ef947a4d", + "id": "d50714fe-c8ba-416f-aed6-96346c84f124", "name": "The identity attribute was updated successfully", "originalRequest": { "url": { @@ -94863,7 +94863,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2aab8db6-b750-4b66-8178-c9a6b9508065", + "id": "bbea3f10-d78b-4fa7-b3a4-a2906a941b73", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -94920,7 +94920,7 @@ "_postman_previewlanguage": "json" }, { - "id": "887936f0-2518-493f-bed0-04268934900c", + "id": "cbdb3bff-6b7a-4ffe-a00c-81dda5b351de", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -94977,7 +94977,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ebadf01a-82da-475e-be97-d91da6db6e32", + "id": "ec89fa68-5afb-4e36-8a1d-46aeab5b74d1", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -95034,7 +95034,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8712b625-494c-4a0c-bd85-83b9319ae5a2", + "id": "b7259c80-9f73-4030-96e4-99e334187480", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -95091,7 +95091,7 @@ "_postman_previewlanguage": "json" }, { - "id": "73451bde-1b91-42e7-9b46-d440ae9060cd", + "id": "94a2e05d-6cad-4ca4-8fed-0cfea7157085", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -95148,7 +95148,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f23582ea-67cb-4ee5-80a0-975319d0d73e", + "id": "e6ffeba3-69d1-4761-9db4-77e75f3c8332", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -95211,7 +95211,7 @@ } }, { - "id": "c90f3cdd-109c-49dd-a940-df36e0663329", + "id": "a76eba7c-e11a-473e-84ba-73dbcd4ab5cc", "name": "Delete Identity Attribute", "request": { "name": "Delete Identity Attribute", @@ -95252,7 +95252,7 @@ }, "response": [ { - "id": "f15a94ed-9f7c-42b8-b9ff-d838c3d23197", + "id": "1412d0da-2606-48ee-a4a1-85e171dd89bb", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -95286,7 +95286,7 @@ "_postman_previewlanguage": "text" }, { - "id": "f975f94b-6b9e-4623-99fc-b1ebf7675536", + "id": "7bb93a38-0811-446e-9585-d447180b6e1f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -95330,7 +95330,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b85d186b-6998-4828-bb4d-6665a4a99785", + "id": "b59753ee-fdcb-4afb-8d66-bb8e2935535d", "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": "035f8fd3-fd15-40e1-bd65-2846852a549f", + "id": "7352e99a-e679-41a4-84a1-c03bcf5ee3ce", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -95418,7 +95418,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a71ecf27-79db-4777-8797-7ee573ddf836", + "id": "adab4542-748b-455e-ab04-a7ca0289a616", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -95462,7 +95462,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1567663d-a7d8-4e6c-8b2b-ea630aae1042", + "id": "30f7f3f3-c5f0-4f6e-a075-ece43bf7cc45", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -95506,7 +95506,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4e993287-f2d3-45d3-a09f-ca37dcaf9b45", + "id": "1d55913c-b460-48ec-b649-4a031b3f3b64", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -95556,7 +95556,7 @@ } }, { - "id": "5477e969-a5eb-407e-aed4-8508d4697406", + "id": "2e33c955-9e7c-4ef6-b8a4-0f3f8e9b7fbc", "name": "Bulk delete Identity Attributes", "request": { "name": "Bulk delete Identity Attributes", @@ -95599,7 +95599,7 @@ }, "response": [ { - "id": "364a8566-ce92-4899-b49b-70dc4a11dbe8", + "id": "14d79e1f-da77-4850-a8ef-535abd5c80a2", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -95646,7 +95646,7 @@ "_postman_previewlanguage": "text" }, { - "id": "ba2bcd7b-afb1-417c-b0fc-3a0fdf35f945", + "id": "d11dc009-7de7-4445-aa9f-7092d696ebb7", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -95703,7 +95703,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0a47d6eb-fc46-49e6-be5c-f9812359c038", + "id": "b2f89b62-16ef-4413-8cdb-97aa32412718", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -95760,7 +95760,7 @@ "_postman_previewlanguage": "json" }, { - "id": "058b3b9f-c20d-49b1-9d8f-b27d4f81e47a", + "id": "6ba797a3-459a-493b-9e48-ff2004c516d3", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -95817,7 +95817,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6f63b163-2b39-4bbd-a7fd-3d1a935a9c29", + "id": "70a0809f-6659-480b-8e04-3113e203ea12", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -95874,7 +95874,7 @@ "_postman_previewlanguage": "json" }, { - "id": "10df0429-56c0-4a72-8527-8899c222adf4", + "id": "8fe88cd8-015b-44d3-b932-3be835993018", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -95931,7 +95931,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3e685b8c-ed79-42b6-8ee5-cdfcfebe44d3", + "id": "65682fa6-831d-4b70-b183-b89c8a75f7b8", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -96000,7 +96000,7 @@ "description": "", "item": [ { - "id": "44160e6a-4243-44ed-833f-3be33c6abf5d", + "id": "c7212a9c-56e4-4b7f-8696-474695a5422e", "name": "Lists all the identities", "request": { "name": "Lists all the identities", @@ -96075,7 +96075,7 @@ }, "response": [ { - "id": "ed922bf7-8142-457c-b168-d1ddee31ddd5", + "id": "0147b8f7-1088-4085-a3a2-c7d13125a19c", "name": "List of identities for the customer.", "originalRequest": { "url": { @@ -96164,7 +96164,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4c63b35e-67e5-470f-863b-167e7dfb8f68", + "id": "1b873b19-77af-40ce-ba14-c78ad8e4582a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -96253,7 +96253,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3f89b0c4-cd05-491a-ad13-51c14935fb21", + "id": "11d1865b-c6cf-4bf1-b69e-42c9d40be7ba", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -96342,7 +96342,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e6d1093a-79be-4b57-9b1a-2d03c83a1613", + "id": "ee2cbe90-1409-45bc-af5f-ef3474416a31", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -96431,7 +96431,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dfc4926c-4ae4-404e-baf9-b74bb09e3011", + "id": "9d475c49-0637-4e92-bb55-2c734466cf2d", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -96520,7 +96520,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2a7303e5-b25f-4300-80aa-5cdf1d6c1d8a", + "id": "b0b51839-7bcb-4ffb-845f-4f17b985e7d2", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -96615,7 +96615,7 @@ } }, { - "id": "67de0589-384d-459c-a625-7b951fc554ba", + "id": "b6af6eb7-8835-4be7-b331-f5402d5e8b36", "name": "Get latest snapshot of identity", "request": { "name": "Get latest snapshot of identity", @@ -96656,7 +96656,7 @@ }, "response": [ { - "id": "4a6a725f-cc12-4c09-8226-49b07b4a4c7a", + "id": "4ed58be4-3671-4458-a7f7-6da1d6c68a39", "name": "The identity object.", "originalRequest": { "url": { @@ -96700,7 +96700,7 @@ "_postman_previewlanguage": "json" }, { - "id": "22cf5629-728b-487e-bab2-a2389c54f3b9", + "id": "247186dc-26c3-4398-aefa-3cd880c96b07", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -96744,7 +96744,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2a80ac6e-abf7-43fc-b336-266bedf59349", + "id": "8753cb54-de4a-4f4c-93ad-8a194f4790a9", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -96788,7 +96788,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e561aa38-2fd9-4107-85b4-ed96e9c3d7b6", + "id": "81908711-d278-4bab-b048-150f94b9dcf1", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -96832,7 +96832,7 @@ "_postman_previewlanguage": "json" }, { - "id": "acb75f44-0982-4aab-934c-94ef54a92224", + "id": "4acc47a9-598f-4e09-bab7-37ccad94114b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -96876,7 +96876,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3b678f78-f205-4ac4-8751-369eaf64fa0a", + "id": "c8afec1e-fa7d-415d-a5c1-d149d55db963", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -96926,7 +96926,7 @@ } }, { - "id": "c5097410-851b-469e-81db-75f6379eafda", + "id": "530375ce-cd2d-40aa-9519-04426fa70bae", "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", @@ -97005,7 +97005,7 @@ }, "response": [ { - "id": "62a3e509-b5d4-437c-9250-56386e70446d", + "id": "a07580b4-4152-486b-b934-3fd607853d37", "name": "Access Profile", "originalRequest": { "url": { @@ -97087,7 +97087,7 @@ "_postman_previewlanguage": "json" }, { - "id": "da71c018-5013-45c0-b17a-ae7efc19cb8b", + "id": "8c39e26b-59c5-4d22-8b2d-c72cc3f340bf", "name": "Account", "originalRequest": { "url": { @@ -97169,7 +97169,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9cad1796-ff9b-4434-9c3f-20640a52930f", + "id": "9b9e6d88-0efe-4d56-b386-24bac271bd2d", "name": "App", "originalRequest": { "url": { @@ -97251,7 +97251,7 @@ "_postman_previewlanguage": "json" }, { - "id": "47ac4a17-6e6a-4cb3-9c12-1ed96d1af2fe", + "id": "acc7a47b-c97d-4a8e-bdd3-5bf461c1ef14", "name": "Entitlement", "originalRequest": { "url": { @@ -97333,7 +97333,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5ef56b40-921f-4076-89d0-7426915bf2bc", + "id": "64be6df7-039c-4cf6-862f-1b00c9a7e090", "name": "Role", "originalRequest": { "url": { @@ -97415,7 +97415,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3de5a1f1-9387-45bd-8a97-10960cdd718e", + "id": "d1307701-cab5-4bce-a8f0-1c78488d6516", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -97497,7 +97497,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2e96bd3d-09eb-4ada-8ff9-5e74d45b4f1f", + "id": "3f5aba4f-5b23-4fc7-9c13-8324c8a11599", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -97579,7 +97579,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7b15e63b-22b6-4273-9a49-44ef48532d96", + "id": "b91fb833-a9e4-4145-8160-410e48035acc", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -97661,7 +97661,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7be10d74-55de-4c45-b4ed-5d6845c6b671", + "id": "25bd5e0c-3b29-44f4-be65-fd60b816b66b", "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": "4f18c6f3-9d75-471c-8f23-6915daa68815", + "id": "80f3eee7-3203-4686-b934-eec413942879", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -97825,7 +97825,7 @@ "_postman_previewlanguage": "json" }, { - "id": "90755115-4b00-499e-baa7-f8a287d5a328", + "id": "34979e8a-c719-4d59-91da-4b5a312b16ee", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -97913,7 +97913,7 @@ } }, { - "id": "9df280cf-40ce-49e3-884c-115f1cb7b666", + "id": "6f915a7b-d3c8-48fc-bb72-759cefaf1f7b", "name": "Lists all the snapshots for the identity", "request": { "name": "Lists all the snapshots for the identity", @@ -98001,7 +98001,7 @@ }, "response": [ { - "id": "df5b7131-22b9-4e37-87f2-b473c8cd1192", + "id": "292176f4-667f-484b-b921-9835e9a333d5", "name": "A list of identity summary for each snapshot.", "originalRequest": { "url": { @@ -98092,7 +98092,7 @@ "_postman_previewlanguage": "json" }, { - "id": "782bfccc-9dfa-4524-8b2c-48c038a1b3d8", + "id": "ac5552ca-d792-422f-8e11-3005657cb831", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -98183,7 +98183,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5ca120fa-9fdb-464c-b81f-a10d5d37fe42", + "id": "66edbce4-4248-4fa4-9cc2-4d6268feb16e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -98274,7 +98274,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c0de5f4d-7459-470a-b58c-ed95dc7787c6", + "id": "c31b01d4-3a35-4ab6-b726-20b30fa82003", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -98365,7 +98365,7 @@ "_postman_previewlanguage": "json" }, { - "id": "58b961dc-f246-4795-a587-1ee48258dec7", + "id": "36228266-3987-44cd-8035-fe0ba8546ffa", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -98456,7 +98456,7 @@ "_postman_previewlanguage": "json" }, { - "id": "80f09b23-cc7f-4f4d-9de3-fdb3a48c9c43", + "id": "588c8598-c2a3-46b8-86a8-d494b2125125", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -98553,7 +98553,7 @@ } }, { - "id": "e904246b-9090-46d5-913f-fdb4abb2eca9", + "id": "ce0268ff-597b-4860-a865-a571e21b7c5e", "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", @@ -98650,7 +98650,7 @@ }, "response": [ { - "id": "fdd608ae-7315-4617-bfad-9cbe7cb95187", + "id": "40c27be3-dd81-455c-bf06-007b5ae7eb06", "name": "A summary list of identity changes in date histogram format.", "originalRequest": { "url": { @@ -98750,7 +98750,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d272ba81-8d7c-40d9-947c-c26480bba90c", + "id": "54b09404-1a4d-422b-bb74-0cb3d3afdeab", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -98850,7 +98850,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8d6acee7-f170-4b37-9ff4-cfcd47517c84", + "id": "d26ee6b6-c006-4d74-812e-a3d3e79addf5", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -98950,7 +98950,7 @@ "_postman_previewlanguage": "json" }, { - "id": "59ec77ca-6cb6-4857-8210-c09530680fa1", + "id": "bb266789-fc20-495f-81a1-1fdd8e0d49e7", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -99050,7 +99050,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8f6538b7-e897-44de-994c-0ec608e4d901", + "id": "90df2a21-1360-4497-a5c4-a18e9f336dc9", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -99150,7 +99150,7 @@ "_postman_previewlanguage": "json" }, { - "id": "372eecab-b704-428e-a071-a6dddf53a426", + "id": "3b481a08-9b9e-41d0-8f75-ac98d7b727c3", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -99256,7 +99256,7 @@ } }, { - "id": "29c24e74-1736-43d6-8cd9-0d196e7b313e", + "id": "120756c2-de1b-4f1b-941a-0f3f3c99f74b", "name": "Gets an identity snapshot at a given date", "request": { "name": "Gets an identity snapshot at a given date", @@ -99309,7 +99309,7 @@ }, "response": [ { - "id": "d24eb762-7a9a-410a-acf7-18d7147b0fd6", + "id": "73fdc3fa-5290-4737-b5dd-379a417298cd", "name": "The identity object.", "originalRequest": { "url": { @@ -99355,7 +99355,7 @@ "_postman_previewlanguage": "json" }, { - "id": "56ae5e13-148b-42a8-bcd1-203dd6ac0d9a", + "id": "4b7a2f65-bb9b-42c6-bba6-1c1419efbcf1", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -99401,7 +99401,7 @@ "_postman_previewlanguage": "json" }, { - "id": "464b924b-c911-4412-aaae-74ce30c64513", + "id": "904522c8-9ef0-4964-8355-89911ecd2134", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -99447,7 +99447,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d4d482a7-ed4d-4036-9270-889bb4170edb", + "id": "b3d86745-91e7-4978-afdc-7c60cf6f5522", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -99493,7 +99493,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1bd2d6f5-e552-4d88-ac3a-105347dfd81c", + "id": "b5f42a39-45d9-42da-a5fd-3ac79826bfe5", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -99539,7 +99539,7 @@ "_postman_previewlanguage": "json" }, { - "id": "51868c51-3b1b-4a4d-8d3d-1a3e67bc8418", + "id": "c1c22578-43e4-4b3c-83d2-cdfef62f2fc4", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -99591,7 +99591,7 @@ } }, { - "id": "81042738-fbdc-4510-8f75-2936b570b0dc", + "id": "9d43325c-01ac-423b-b0fc-5e42fbb2a1f7", "name": "Get Identity Access Items Snapshot", "request": { "name": "Get Identity Access Items Snapshot", @@ -99655,7 +99655,7 @@ }, "response": [ { - "id": "f754a0af-8888-4e36-ad96-74d2be257922", + "id": "3dd3ed1d-3199-4d18-861b-6cd3bd61c95f", "name": "Access Item AccessProfile Response", "originalRequest": { "url": { @@ -99712,7 +99712,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d1421cc5-e9a6-4f2b-afac-ec5e95ce4dea", + "id": "484635d2-71d2-4dde-a0ef-e51bba576b51", "name": "Access Item Account Response", "originalRequest": { "url": { @@ -99769,7 +99769,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4f398e4e-d2f0-4931-919b-bd1b38aafea3", + "id": "c311b409-7627-461f-b8c3-c647e2bd92ff", "name": "Access Item App Response", "originalRequest": { "url": { @@ -99826,7 +99826,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f5ec66bd-cbbc-49d0-9e0b-60ad6a6d3354", + "id": "8260592a-63e5-45ff-9da1-538e389e11d6", "name": "Access Item Entitlement Response", "originalRequest": { "url": { @@ -99883,7 +99883,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5363f711-1df0-46fe-9e5c-2bbb691405ff", + "id": "0002fe0d-32b4-4a79-be23-db47de549fef", "name": "Access Item Role Response", "originalRequest": { "url": { @@ -99940,7 +99940,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f5ea3ce7-b6f6-48ee-8fc2-28360b4c7339", + "id": "248351f2-4fea-4b32-88bb-62054aa91f77", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -99997,7 +99997,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9dadd87d-31ef-4833-9276-acda76a66f3d", + "id": "71a7f635-3016-4729-9af0-ea3855702b9c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -100054,7 +100054,7 @@ "_postman_previewlanguage": "json" }, { - "id": "877a9ddc-03aa-48d2-aefa-6d562d5f0cfb", + "id": "bc102c6d-b345-49aa-ad3d-e450b374ad5f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -100111,7 +100111,7 @@ "_postman_previewlanguage": "json" }, { - "id": "aadad06f-df9c-4005-8748-f39d9af68c3f", + "id": "7eec745b-ebdd-4e81-9d58-b629ea1e1c83", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -100168,7 +100168,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b2e80a88-c9ec-43db-81e5-6dea2804c1d1", + "id": "665721fa-d8d1-4078-8ef4-335c5ccf2005", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -100225,7 +100225,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a6bd6cab-33da-49a0-b82b-b200bdf5ed1f", + "id": "1a64142c-c091-4ec7-a0b8-84b00d6aa7b3", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -100288,7 +100288,7 @@ } }, { - "id": "ea579b99-affc-42fa-b47d-0dc92e91b283", + "id": "ca2826e2-dd5f-4c47-9d26-43bbd8ac5f33", "name": "Lists all events for the given identity", "request": { "name": "Lists all events for the given identity", @@ -100403,7 +100403,7 @@ }, "response": [ { - "id": "35c2a8ac-0d04-4926-bbe5-08adf0426a38", + "id": "ad688a5c-b562-4ce7-b6da-4fa1231db69c", "name": "AccessItemAssociated", "originalRequest": { "url": { @@ -100503,7 +100503,7 @@ "_postman_previewlanguage": "json" }, { - "id": "318c3591-9695-4164-92bc-3e2d350ff9f0", + "id": "df1a271a-ce57-4048-ab86-5e9bc87ac593", "name": "AccessItemRemoved", "originalRequest": { "url": { @@ -100603,7 +100603,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ace77b2c-2c85-49a5-8870-594c830a58b4", + "id": "14f245e6-0f71-48e1-9e6e-79dc79399177", "name": "AttributesChanged", "originalRequest": { "url": { @@ -100703,7 +100703,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9513d90d-a38e-4509-9762-53c2dfe339a5", + "id": "523206b9-dc1a-4c63-a01a-71f32d98a961", "name": "AccessRequested", "originalRequest": { "url": { @@ -100803,7 +100803,7 @@ "_postman_previewlanguage": "json" }, { - "id": "43487e5a-4f55-407f-af11-bb15c69b94c5", + "id": "1250e59b-d2d9-4d67-b3d3-48b818a70e12", "name": "IdentityCertified", "originalRequest": { "url": { @@ -100903,7 +100903,7 @@ "_postman_previewlanguage": "json" }, { - "id": "739e957c-bf13-4205-8c82-8dbbc08bc714", + "id": "01fb654c-5b5b-4108-aa5c-38ce4a780f55", "name": "AccountStatusChanged", "originalRequest": { "url": { @@ -101003,7 +101003,7 @@ "_postman_previewlanguage": "json" }, { - "id": "634584ff-1ba1-45ff-a58a-6f805d0d5457", + "id": "ee190397-f2a6-41c2-b1fa-7f34bf7b0f94", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -101103,7 +101103,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5e611ff4-d491-460e-bccd-6d1b089151a0", + "id": "bfc51e92-dc2a-4c5d-925b-c8c81dbeafe1", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -101203,7 +101203,7 @@ "_postman_previewlanguage": "json" }, { - "id": "90f07a97-993a-41fd-85c0-56c4a6aa0a1a", + "id": "61941d23-7bcf-478d-8bb8-720391e49397", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -101303,7 +101303,7 @@ "_postman_previewlanguage": "json" }, { - "id": "560b2010-31e7-45a2-9e32-7ed7697cedc0", + "id": "56186838-6528-4ba2-a0d1-7de3458817d5", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -101403,7 +101403,7 @@ "_postman_previewlanguage": "json" }, { - "id": "72637735-682c-48a8-bf32-4d226bd41a23", + "id": "23749e4f-db75-4737-baa5-3e065210b674", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -101503,7 +101503,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e2da1909-e8e9-402d-8e11-47396154a73c", + "id": "2eba45ea-5215-4bae-b3c4-10496ba394dc", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -101609,7 +101609,7 @@ } }, { - "id": "69fc88a7-ab24-4c4b-b663-0b7a3b7baa4e", + "id": "2fa5a382-6be1-419a-8ffd-e71983e11f96", "name": "Gets the start date of the identity", "request": { "name": "Gets the start date of the identity", @@ -101651,7 +101651,7 @@ }, "response": [ { - "id": "cf92e667-31dd-43bc-ad73-b6caae653fd5", + "id": "0750f953-e1d6-4f29-93d0-956b299c48de", "name": "The start date of the identity", "originalRequest": { "url": { @@ -101696,7 +101696,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cb14e83e-42e4-4d8d-8fe1-3abe213ec273", + "id": "dd2aa582-4db6-46d8-8c11-74536d7f8cfa", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -101741,7 +101741,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d948baba-08b8-4986-ac98-894de71de741", + "id": "6e1ab93a-c7ad-490d-ba05-36412238dceb", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -101786,7 +101786,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1b9f3b4d-5efa-497a-b639-5d466fe35cef", + "id": "2a6f97c3-6868-412f-bcb9-94658f0e8b9e", "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": "437790ea-e1bf-475f-b98e-4b24ca5987f8", + "id": "d7a68039-d953-4ca6-948f-36ae449c49ad", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -101876,7 +101876,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c0bb5893-19ea-4beb-bc48-5c4386b9be63", + "id": "77bdf83d-cb63-4729-b1b8-78da4f170f96", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -101927,7 +101927,7 @@ } }, { - "id": "ac91dac0-b5b5-425d-9f05-b5cfa8f897d0", + "id": "a5fa3b45-048c-49bd-aee6-0b0cf2135a96", "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", @@ -101970,7 +101970,7 @@ "type": "text/plain" }, "key": "accessItemTypes", - "value": "mollit in" + "value": "ea minim Duis" }, { "disabled": true, @@ -101979,7 +101979,7 @@ "type": "text/plain" }, "key": "accessItemTypes", - "value": "in ut ipsum reprehenderit non" + "value": "fugiat enim ut minim" }, { "disabled": true, @@ -102033,7 +102033,7 @@ }, "response": [ { - "id": "cccd6397-8a8d-4a0d-b93d-9c4121c41c54", + "id": "747c6639-d522-404e-a26e-7604168b5da2", "name": "A IdentityCompare object with difference details for each access item type", "originalRequest": { "url": { @@ -102071,7 +102071,7 @@ "type": "text/plain" }, "key": "accessItemTypes", - "value": "in ut ipsum reprehenderit non" + "value": "fugiat enim ut minim" }, { "disabled": true, @@ -102133,7 +102133,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b0ca9d0c-27d1-4cc1-b3de-7eff572ed898", + "id": "fc7d1a14-f32f-4941-a604-c25c6842030f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -102171,7 +102171,7 @@ "type": "text/plain" }, "key": "accessItemTypes", - "value": "in ut ipsum reprehenderit non" + "value": "fugiat enim ut minim" }, { "disabled": true, @@ -102233,7 +102233,7 @@ "_postman_previewlanguage": "json" }, { - "id": "89d4fab9-0590-412a-94cb-d8e355185488", + "id": "f2e57950-4d10-4ba3-857d-13682d3afe30", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -102271,7 +102271,7 @@ "type": "text/plain" }, "key": "accessItemTypes", - "value": "in ut ipsum reprehenderit non" + "value": "fugiat enim ut minim" }, { "disabled": true, @@ -102333,7 +102333,7 @@ "_postman_previewlanguage": "json" }, { - "id": "201d179f-59fb-4a8f-aa70-61f984150102", + "id": "02a2de40-768c-4938-9cf0-fc7bba1e6c0a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -102371,7 +102371,7 @@ "type": "text/plain" }, "key": "accessItemTypes", - "value": "in ut ipsum reprehenderit non" + "value": "fugiat enim ut minim" }, { "disabled": true, @@ -102433,7 +102433,7 @@ "_postman_previewlanguage": "json" }, { - "id": "16cbb44c-bea1-496d-9b23-7a1deec7cefe", + "id": "6a5fe5fa-f66d-41ff-8c56-11f2f54aa88d", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -102471,7 +102471,7 @@ "type": "text/plain" }, "key": "accessItemTypes", - "value": "in ut ipsum reprehenderit non" + "value": "fugiat enim ut minim" }, { "disabled": true, @@ -102533,7 +102533,7 @@ "_postman_previewlanguage": "json" }, { - "id": "12d96b25-9baf-4c6b-9221-8abf5905508f", + "id": "7a4245ac-a7d8-47e2-8e7d-6632b5846e6a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -102571,7 +102571,7 @@ "type": "text/plain" }, "key": "accessItemTypes", - "value": "in ut ipsum reprehenderit non" + "value": "fugiat enim ut minim" }, { "disabled": true, @@ -102639,7 +102639,7 @@ } }, { - "id": "cb909a50-a811-4fb1-964c-a51e767ca0d4", + "id": "8859b48d-7d52-450f-b608-79a2114dd57e", "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", @@ -102751,7 +102751,7 @@ }, "response": [ { - "id": "4a2a20f8-14c7-4152-ab3e-1a480b8b0fa2", + "id": "03a8cd20-3cff-499a-99db-9acd774c8a2e", "name": "A list of events for the identity", "originalRequest": { "url": { @@ -102852,7 +102852,7 @@ "_postman_previewlanguage": "json" }, { - "id": "720b83e2-f862-4a2f-ab11-7504f2647e9d", + "id": "c3a47c78-cf88-4f9e-94cd-1cdc23cddf10", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -102953,7 +102953,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c2f650ad-09c6-4fa3-b4c6-e37c691f6ad0", + "id": "7c1100f5-1f93-4bb1-923b-53a027800d8b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -103054,7 +103054,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ca11f1a6-6388-4ad6-8d1a-8839504194be", + "id": "1dc3348d-3df0-49f2-8d75-cc183b7b9214", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -103155,7 +103155,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2c5a032a-1ac0-4d20-bc5e-14ece6aabcb8", + "id": "f7463f82-7d5a-4717-89bf-0f363e715afd", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -103256,7 +103256,7 @@ "_postman_previewlanguage": "json" }, { - "id": "43f0f5c1-fa5a-4375-8b52-98fa185b5517", + "id": "d30585c4-e666-41e8-97f4-4f47d78c017f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -103369,7 +103369,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": "942f0ec1-4812-4c0d-a137-d9dfce67bc2c", + "id": "18529271-eee0-4460-8b87-f60392e9f7d2", "name": "Identity Profiles list", "request": { "name": "Identity Profiles list", @@ -103444,7 +103444,7 @@ }, "response": [ { - "id": "b2afe2a6-d78d-4866-9c87-aa8e3d596fe9", + "id": "7c4ec7f2-7b0f-4091-acc3-e21cc3ea6181", "name": "List of identityProfiles.", "originalRequest": { "url": { @@ -103528,12 +103528,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\": \"urn:uuid:9274c02f-96f1-ed73-ab4b-72c17c7b0eff\",\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\": \"159a6e05-908f-f589-72b2-be7f089d07a0\",\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\": \"urn:uuid:bf51f9ec-05d9-1008-4d90-5547ce8e92aa\",\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\": \"5d054b14-dfe1-aecd-f034-84e960d69397\",\n \"reportName\": \"My annual report\"\n },\n \"hasTimeBasedAttr\": true\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "0bccde87-c1e6-402f-8fec-7278040ca7fe", + "id": "9dea0b7d-045f-490a-b8cb-21943e033655", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -103622,7 +103622,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5e727980-5cb3-4c1e-b224-6daec5ed83d7", + "id": "e6a6f97e-7fcd-4633-88e2-751095d04ec5", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -103711,7 +103711,7 @@ "_postman_previewlanguage": "json" }, { - "id": "62e39ecb-f137-4235-8dcf-bcb2efc11ea5", + "id": "95b7a209-73f1-4037-905c-f3448a6b0070", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -103800,7 +103800,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4784a6ab-3038-46c8-82e8-0745e31ca839", + "id": "0788addb-f50a-4932-bfa6-1a6f725ac0a5", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -103889,7 +103889,7 @@ "_postman_previewlanguage": "json" }, { - "id": "410c0260-3852-408b-beee-480afb0f5d04", + "id": "76e88a26-8b6d-4c05-9a7b-980625053340", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -103984,7 +103984,7 @@ } }, { - "id": "5150e478-d078-4fa1-ae85-a0ecf8d7a71f", + "id": "35679dca-0d17-4d72-b3bb-60271d2a9c59", "name": "Create an Identity Profile", "request": { "name": "Create an Identity Profile", @@ -104015,7 +104015,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 \"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:23612230-a398-f511-e8ec-05558928837b\",\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 \"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\": \"a20cb750-1c18-37dc-4304-807e238a6a45\",\n \"reportName\": \"My annual report\"\n },\n \"hasTimeBasedAttr\": true\n}", "options": { "raw": { "headerFamily": "json", @@ -104026,7 +104026,7 @@ }, "response": [ { - "id": "0c9a2739-c38d-4f37-9b38-25f6461735ae", + "id": "3344386d-bad8-4a83-9435-5ec15ed27cff", "name": "The created Identity Profile", "originalRequest": { "url": { @@ -104060,7 +104060,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 \"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:23612230-a398-f511-e8ec-05558928837b\",\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 \"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\": \"a20cb750-1c18-37dc-4304-807e238a6a45\",\n \"reportName\": \"My annual report\"\n },\n \"hasTimeBasedAttr\": true\n}", "options": { "raw": { "headerFamily": "json", @@ -104077,12 +104077,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\": \"urn:uuid:23612230-a398-f511-e8ec-05558928837b\",\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\": \"a20cb750-1c18-37dc-4304-807e238a6a45\",\n \"reportName\": \"My annual report\"\n },\n \"hasTimeBasedAttr\": true\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "8bb280e9-6420-4854-af5b-6158b76b1f75", + "id": "1eb2832b-eb0b-46a3-aedd-6a30f6f322d1", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -104116,7 +104116,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 \"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:23612230-a398-f511-e8ec-05558928837b\",\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 \"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\": \"a20cb750-1c18-37dc-4304-807e238a6a45\",\n \"reportName\": \"My annual report\"\n },\n \"hasTimeBasedAttr\": true\n}", "options": { "raw": { "headerFamily": "json", @@ -104138,7 +104138,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4f1c64b9-706a-486f-ae2c-6fa31756ff3b", + "id": "b34d78a0-2a88-40f0-9ca7-88319baf67ec", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -104172,7 +104172,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 \"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:23612230-a398-f511-e8ec-05558928837b\",\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 \"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\": \"a20cb750-1c18-37dc-4304-807e238a6a45\",\n \"reportName\": \"My annual report\"\n },\n \"hasTimeBasedAttr\": true\n}", "options": { "raw": { "headerFamily": "json", @@ -104194,7 +104194,7 @@ "_postman_previewlanguage": "json" }, { - "id": "983259cb-ea4a-4641-acdb-13a76690feca", + "id": "d06567fa-8e0c-4f8c-8ddb-08933d59b822", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -104228,7 +104228,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 \"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:23612230-a398-f511-e8ec-05558928837b\",\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 \"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\": \"a20cb750-1c18-37dc-4304-807e238a6a45\",\n \"reportName\": \"My annual report\"\n },\n \"hasTimeBasedAttr\": true\n}", "options": { "raw": { "headerFamily": "json", @@ -104250,7 +104250,7 @@ "_postman_previewlanguage": "json" }, { - "id": "874e2f49-250e-49ec-86a2-2aacdf3c6748", + "id": "ed0d453e-faff-4a0b-abff-a21cf22afcc3", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -104284,7 +104284,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 \"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:23612230-a398-f511-e8ec-05558928837b\",\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 \"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\": \"a20cb750-1c18-37dc-4304-807e238a6a45\",\n \"reportName\": \"My annual report\"\n },\n \"hasTimeBasedAttr\": true\n}", "options": { "raw": { "headerFamily": "json", @@ -104306,7 +104306,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a765dbb7-7ad7-4183-9706-5b6a10227038", + "id": "6eb8fb69-c30f-459e-acbd-66532dac5ce1", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -104340,7 +104340,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 \"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:23612230-a398-f511-e8ec-05558928837b\",\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 \"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\": \"a20cb750-1c18-37dc-4304-807e238a6a45\",\n \"reportName\": \"My annual report\"\n },\n \"hasTimeBasedAttr\": true\n}", "options": { "raw": { "headerFamily": "json", @@ -104368,7 +104368,7 @@ } }, { - "id": "018caa10-ece5-4e6f-8fde-fdfd290cb2f9", + "id": "555d17f2-84f0-42fe-975e-1353d151e710", "name": "Delete Identity Profiles", "request": { "name": "Delete Identity Profiles", @@ -104411,7 +104411,7 @@ }, "response": [ { - "id": "c801d2d9-58db-4cc6-82fb-9ad9e34e4349", + "id": "4c7114bf-b63a-4d53-846d-d99bcb4a9e29", "name": "Accepted - Returns a TaskResult object referencing the bulk delete job created.", "originalRequest": { "url": { @@ -104463,12 +104463,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\": \"1954-06-08T09:28:20.568Z\",\n \"launched\": \"2020-05-09T03:03:01.405Z\",\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-12-02T11:22:03.692Z\",\n \"launched\": \"1989-07-23T09:06:57.047Z\",\n \"completionStatus\": \"Success\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d73e2813-fac5-4a28-86fd-c123c2ca080e", + "id": "981bf25c-0c46-48a1-b7e9-0911315779a1", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -104525,7 +104525,7 @@ "_postman_previewlanguage": "json" }, { - "id": "47c2b78b-a130-498b-a22f-150b6d2a299b", + "id": "713dd9e5-237e-4d79-abcf-1ba7fe3af8e7", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -104582,7 +104582,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4e00eed2-0ba4-4f6a-af73-8a0850582eb2", + "id": "a89cc0e6-ebba-41d5-a83c-9b7fa4921b04", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -104639,7 +104639,7 @@ "_postman_previewlanguage": "json" }, { - "id": "45782a52-478d-4aa5-927c-7c9e7ab7f2ed", + "id": "311a25a8-b5d7-40e6-9aea-707dca9f016c", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -104696,7 +104696,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cb132bfc-fea2-4b43-8346-bdb38ed7ba79", + "id": "b12b132c-14d0-4afc-b489-e92246a08f1a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -104759,7 +104759,7 @@ } }, { - "id": "f9e5845f-d107-4dc5-9e6c-b22555d783a7", + "id": "3c404790-94ea-42b2-b322-f6e03d74c31f", "name": "Export Identity Profiles", "request": { "name": "Export Identity Profiles", @@ -104835,7 +104835,7 @@ }, "response": [ { - "id": "b30e2f8d-0254-4d9e-bf54-4334a1375f54", + "id": "748132d0-f1e0-429f-a9f5-839f6b49c141", "name": "List of export objects with identity profiles.", "originalRequest": { "url": { @@ -104925,7 +104925,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e3c9f8cf-beb0-4e38-a8c4-2931a58aadc0", + "id": "94e0ee09-25db-42f3-98ba-bd49b05a58cd", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -105015,7 +105015,7 @@ "_postman_previewlanguage": "json" }, { - "id": "41f5deb7-6635-449b-8e76-7d18c2e82cf7", + "id": "00864e13-4b12-46fa-aa26-a10b88bff279", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -105105,7 +105105,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fcfdb923-1906-4b7c-93bb-60d70ac45cd3", + "id": "a394bb29-7257-4a68-8511-cd4cf2b5c849", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -105195,7 +105195,7 @@ "_postman_previewlanguage": "json" }, { - "id": "93b35c87-3f3c-4563-992e-a205714fa8a4", + "id": "538f016e-e995-426a-a102-dab69435d3de", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -105285,7 +105285,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ef7f12a8-c74f-4158-86bb-28e463878c31", + "id": "c3d61c2e-4c09-4f28-b7fd-5bca8de5e095", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -105375,7 +105375,7 @@ "_postman_previewlanguage": "json" }, { - "id": "376dee42-6a3c-4132-92fc-741de4dd19ee", + "id": "6241d2b2-002d-4c76-9e21-2cd1cdaae0dd", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -105471,7 +105471,7 @@ } }, { - "id": "e3af3526-135e-4cbe-b8b7-0609aa9d95d5", + "id": "e16728f0-baa0-4772-aa46-723de1bff8d9", "name": "Import Identity Profiles", "request": { "name": "Import Identity Profiles", @@ -105514,7 +105514,7 @@ }, "response": [ { - "id": "95d19791-a506-46e8-9cbf-2871c9d3716d", + "id": "354c34c3-4f05-4259-a2e4-c6d75fcd09f8", "name": "The result of importing Identity Profiles.", "originalRequest": { "url": { @@ -105566,12 +105566,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 \"officia_11\": {}\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 \"tempora\": {}\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 \"magna98\": {},\n \"tempor_6\": {},\n \"quis35b\": {},\n \"non_0e\": {}\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 }\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 \"laborum_30\": {},\n \"dolore_d7f\": {},\n \"irure_e66\": {},\n \"Excepteur_9\": {}\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 \"quis_9d6\": {},\n \"sunt_c3\": {},\n \"qui9_\": {}\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 \"culpa4e0\": {},\n \"in_6a\": {}\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 \"ut13c\": {},\n \"incididuntd4e\": {},\n \"ipsuma3\": {}\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 \"culpa_4f7\": {}\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 \"cupidatat__\": {}\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 \"est2\": {},\n \"incididunt__\": {},\n \"dolore_b45\": {}\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 \"adec3\": {},\n \"minim_3\": {},\n \"id_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": "36afc971-b6f9-4034-8328-bcabdce8e842", + "id": "7106daf4-90a7-47f2-8f56-773690048a95", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -105628,7 +105628,7 @@ "_postman_previewlanguage": "json" }, { - "id": "be717291-05b6-4494-a087-b7d7c99569b7", + "id": "3cd58f19-e5a4-46ef-9c86-008f6014dfd1", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -105685,7 +105685,7 @@ "_postman_previewlanguage": "json" }, { - "id": "671c4583-4379-4bb0-afd0-0214c530fedb", + "id": "b6630bd6-ea97-44e0-b095-90bb944e6527", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -105742,7 +105742,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ea9cde24-8dcf-4d5f-9328-1b123f446d8b", + "id": "ab3ad3fb-6697-43a5-bd26-e1ad18cf8f7a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -105799,7 +105799,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f7bdff59-5591-4afe-ac96-f28a65169d61", + "id": "47e76188-3c1b-4ccd-ac02-94ee78fddaae", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -105862,12 +105862,12 @@ } }, { - "id": "76445d07-37d1-4232-89e6-6499504b0088", + "id": "26beb683-b219-46b4-89a5-3dec71553ff7", "name": "Generate Identity Profile Preview", "request": { "name": "Generate Identity Profile Preview", "description": { - "content": "This generates a non-persisted IdentityDetails object that will represent as the preview of the identities attribute when the given policy's attribute config is applied.\nA token with ORG_ADMIN authority is required to call this API to generate an identity preview.", + "content": "Use this API to generate a non-persisted `IdentityDetails` object that represents a preview of the identity attributes with a specified policy's attribute config applied.\nThis API supports the `accountAttribute`, `rule`, and `reference` transform types. \nA token with ORG_ADMIN authority is required to call this API to generate an identity preview.", "type": "text/plain" }, "url": { @@ -105894,7 +105894,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"identityId\": \"7f6ab7ed-3381-06aa-e093-ecd6989d2f74\",\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:1aa6cc8f-6549-61dd-7704-e76ac1cf2ebc\",\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", @@ -105905,7 +105905,7 @@ }, "response": [ { - "id": "9a81960d-fed3-435f-abb1-dc25e93dabd1", + "id": "43462a78-572e-44ec-97d2-8a73eee0b7d6", "name": "Object representing the preview object with all of the identity attributes using the current mappings.", "originalRequest": { "url": { @@ -105940,7 +105940,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"identityId\": \"7f6ab7ed-3381-06aa-e093-ecd6989d2f74\",\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:1aa6cc8f-6549-61dd-7704-e76ac1cf2ebc\",\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", @@ -105962,7 +105962,7 @@ "_postman_previewlanguage": "json" }, { - "id": "af331ad7-293d-40be-9d53-532067a7e0f9", + "id": "c34a84a9-f1e2-4120-87c7-9ba9e70e1d70", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -105997,7 +105997,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"identityId\": \"7f6ab7ed-3381-06aa-e093-ecd6989d2f74\",\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:1aa6cc8f-6549-61dd-7704-e76ac1cf2ebc\",\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", @@ -106019,7 +106019,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5d53e1e3-af6a-4435-8168-67c155b07c75", + "id": "d257cb18-7979-4b91-a8b1-0191194409f9", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -106054,7 +106054,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"identityId\": \"7f6ab7ed-3381-06aa-e093-ecd6989d2f74\",\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:1aa6cc8f-6549-61dd-7704-e76ac1cf2ebc\",\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", @@ -106076,7 +106076,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4cd248ef-78e4-4ec7-a896-fd256a25c3c2", + "id": "9b1c23c6-7a1c-4709-a726-9685298ad2a6", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -106111,7 +106111,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"identityId\": \"7f6ab7ed-3381-06aa-e093-ecd6989d2f74\",\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:1aa6cc8f-6549-61dd-7704-e76ac1cf2ebc\",\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", @@ -106133,7 +106133,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e3cd61d7-96f1-4e3c-9866-e069945d8931", + "id": "9e24898a-a3ff-4307-a975-b3a2369d2306", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -106168,7 +106168,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"identityId\": \"7f6ab7ed-3381-06aa-e093-ecd6989d2f74\",\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:1aa6cc8f-6549-61dd-7704-e76ac1cf2ebc\",\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", @@ -106190,7 +106190,7 @@ "_postman_previewlanguage": "json" }, { - "id": "de5bf8dd-805e-45d3-8acd-9597d3170135", + "id": "0b9f5389-8f56-4a49-a80b-b6b91eb6b389", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -106225,7 +106225,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"identityId\": \"7f6ab7ed-3381-06aa-e093-ecd6989d2f74\",\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:1aa6cc8f-6549-61dd-7704-e76ac1cf2ebc\",\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", @@ -106253,7 +106253,7 @@ } }, { - "id": "a0ad6cdc-3c95-4a96-a3c4-3eac4fac8292", + "id": "7f9acadd-a1fd-497f-8d14-58cfb963ef1c", "name": "Gets a single Identity Profile", "request": { "name": "Gets a single Identity Profile", @@ -106294,7 +106294,7 @@ }, "response": [ { - "id": "61bbbfc0-9c06-44b6-8319-c386276933dc", + "id": "da832099-7358-4235-acae-e2a2171f8c78", "name": "An Identity Profile object", "originalRequest": { "url": { @@ -106333,12 +106333,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\": \"urn:uuid:23612230-a398-f511-e8ec-05558928837b\",\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\": \"a20cb750-1c18-37dc-4304-807e238a6a45\",\n \"reportName\": \"My annual report\"\n },\n \"hasTimeBasedAttr\": true\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "9d89ff2d-c613-445a-b77e-d9b64c950b6d", + "id": "fbb6a918-4887-4c2d-b52c-c64e31bb8a9e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -106382,7 +106382,7 @@ "_postman_previewlanguage": "json" }, { - "id": "339bbd42-3da1-48de-b56b-0a0e6ecd6542", + "id": "0ef8db33-5169-43ac-92f5-1d53b78bfd35", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -106426,7 +106426,7 @@ "_postman_previewlanguage": "json" }, { - "id": "907f130f-21b8-426c-868f-aac37f5e989c", + "id": "38c8e635-ae60-4414-912c-a342c91602f1", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -106470,7 +106470,7 @@ "_postman_previewlanguage": "json" }, { - "id": "da60518a-e4f7-44bb-abb1-d1e5c915a01a", + "id": "c3d959ab-5091-45c3-8cd3-7c72b0e89365", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -106514,7 +106514,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2ef159e9-9a32-4949-aca3-25fcaa9fc6f1", + "id": "0349bb01-bdd2-4553-9eba-d76c7cf6e0f4", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -106558,7 +106558,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2b9e9589-3719-4251-ad83-9920784c58b2", + "id": "c97ff261-1169-47a9-910c-519bd1064804", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -106608,7 +106608,7 @@ } }, { - "id": "94c20d2c-b2fe-4cf1-8c18-a7cd8910b489", + "id": "557de919-aa87-4186-b74f-49907777fa8f", "name": "Delete an Identity Profile", "request": { "name": "Delete an Identity Profile", @@ -106649,7 +106649,7 @@ }, "response": [ { - "id": "28487ed3-88fe-4cf4-8d56-319f2e7c4d3c", + "id": "263acb63-7d40-4761-803b-37623ffda08a", "name": "Accepted - Returns a TaskResult object referencing the bulk delete job created.", "originalRequest": { "url": { @@ -106688,12 +106688,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\": \"2010-07-25T00:28:16.564Z\",\n \"launched\": \"1980-07-21T05:31:19.489Z\",\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\": \"1954-04-29T02:58:56.772Z\",\n \"launched\": \"2009-02-10T19:26:09.142Z\",\n \"completionStatus\": \"Success\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d3db602f-f9f1-4eb9-9f97-56504072f2c4", + "id": "ca7246b6-2757-4922-abbf-e55ac6c74e9a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -106737,7 +106737,7 @@ "_postman_previewlanguage": "json" }, { - "id": "36f69c8f-ba96-4598-a659-3a6d1f15159b", + "id": "9b00910f-de6a-4a16-b4f2-f459d1df0090", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -106781,7 +106781,7 @@ "_postman_previewlanguage": "json" }, { - "id": "272dfe7d-8954-467f-989c-19a9f5a614c2", + "id": "4eaff76f-2d33-4a3d-9eea-53f4bb28e1f3", "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": "fba64eed-ad03-4543-a80e-8e4b33d70e23", + "id": "b60dfad8-71ce-4f01-bf37-8372e15234b8", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -106869,7 +106869,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6b64f450-c5bd-4493-880a-6ba338c821d1", + "id": "120abf24-6735-492b-b490-489f25b54925", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -106913,7 +106913,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0778439a-8636-44fa-a6d4-6d2328a0eaf8", + "id": "c9130ab3-b2b6-47a7-8406-01be8a1993ff", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -106963,7 +106963,7 @@ } }, { - "id": "1a2004bf-63c6-463b-8062-bd60dd050212", + "id": "5ccedc8b-d8d8-490b-b68f-b77be863d703", "name": "Update the Identity Profile", "request": { "name": "Update the Identity Profile", @@ -107017,7 +107017,7 @@ }, "response": [ { - "id": "0b7a17a7-49c5-4a29-bf9e-3ab7fdc509e5", + "id": "bf9a7848-96c3-41aa-a797-795a9dcc9294", "name": "The updated Identity Profile.", "originalRequest": { "url": { @@ -107069,12 +107069,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\": \"urn:uuid:23612230-a398-f511-e8ec-05558928837b\",\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\": \"a20cb750-1c18-37dc-4304-807e238a6a45\",\n \"reportName\": \"My annual report\"\n },\n \"hasTimeBasedAttr\": true\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "3141e2db-f1ed-433e-9640-08c0ec4c9ea5", + "id": "3df7b41e-b338-46ba-b0e4-d47225a7e4a4", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -107131,7 +107131,7 @@ "_postman_previewlanguage": "json" }, { - "id": "79c9045a-9e1e-4587-8703-b86ff3d3339b", + "id": "936c9cc9-7d1d-4d35-92d7-672c3185f50d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -107188,7 +107188,7 @@ "_postman_previewlanguage": "json" }, { - "id": "84fd8603-7be7-43cb-b484-cec6159f6df6", + "id": "15d715ee-e2e6-4a59-86b7-bb047d692b73", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -107245,7 +107245,7 @@ "_postman_previewlanguage": "json" }, { - "id": "15a902ec-e171-40d0-83d1-f4a93738e0ad", + "id": "7830c4c5-da72-46bf-b409-eb1ecdc444cb", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -107302,7 +107302,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4bfe55b5-a9a7-41fa-a979-716f0ba288e1", + "id": "b7b883de-900e-4e01-acca-52d7977623cd", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -107359,7 +107359,7 @@ "_postman_previewlanguage": "json" }, { - "id": "95f909cd-a38f-4268-a0cb-c9dbae06a508", + "id": "f5934d8b-fdf7-41ce-b7b1-0baae4bac4da", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -107422,7 +107422,7 @@ } }, { - "id": "6e877eb0-1394-49f5-8648-cdd9385f5ea4", + "id": "5b57598f-55a9-4f7e-bf4a-274f5aae0312", "name": "Default identity attribute config", "request": { "name": "Default identity attribute config", @@ -107464,7 +107464,7 @@ }, "response": [ { - "id": "7837f1d9-9d8a-4f01-8f71-8e879390d810", + "id": "27cfaf79-f97d-494d-be87-e388e0f47862", "name": "An Identity Attribute Config object", "originalRequest": { "url": { @@ -107509,7 +107509,7 @@ "_postman_previewlanguage": "json" }, { - "id": "771cb677-e7e2-4d49-ae0e-35db314c13cc", + "id": "3ce1f4c8-a848-4261-b4c1-9379c93c8aec", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -107554,7 +107554,7 @@ "_postman_previewlanguage": "json" }, { - "id": "989bd895-0493-4f17-8dcf-706384b7527f", + "id": "750fb4b7-1acb-41aa-a559-9a8b2bd624a0", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -107599,7 +107599,7 @@ "_postman_previewlanguage": "json" }, { - "id": "092a1f1a-1148-4f5b-88a2-cd9a3e3f13c7", + "id": "1e9c8dcc-2cca-4d11-a87d-1cfc336e5ed7", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -107644,7 +107644,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6c27edaf-d780-4c99-a2c2-b4de29889c8d", + "id": "0754e910-29fc-4496-8e19-85bd6607af5a", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -107689,7 +107689,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2e025b0a-5bdc-4821-97e6-668b32bd9c10", + "id": "8cf02c9f-b282-4855-894a-e928de234da4", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -107734,7 +107734,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5a23dedd-499f-4709-add6-28885ac3a7cf", + "id": "c74493ee-d069-4bea-9d5a-07b55d0d7ae9", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -107785,7 +107785,7 @@ } }, { - "id": "b07c4a78-e2b7-4b79-8ac4-12ffbd02e772", + "id": "04136015-091e-4da7-88cc-83b5e8c18b83", "name": "Process identities under profile", "request": { "name": "Process identities under profile", @@ -107827,7 +107827,7 @@ }, "response": [ { - "id": "4bdadc60-1bba-4c7c-bb8a-c1e68d614e58", + "id": "f637822b-9efc-409a-a2a8-e53eb969e4cc", "name": "Accepted status after refresh has launched", "originalRequest": { "url": { @@ -107872,7 +107872,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0496ef07-015f-429c-921e-99fe6f5db3c6", + "id": "d51a98e9-3c21-43de-a13c-22415944c068", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -107917,7 +107917,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8171c1a2-9326-4f45-9118-bcaf0a963d01", + "id": "108ee327-4cfe-4f56-a551-3b4f31e348c5", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -107962,7 +107962,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e6cb24fa-cc06-4c62-bc38-df4653f040a9", + "id": "4cb8e869-c255-45a0-be57-464f5e951104", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -108007,7 +108007,7 @@ "_postman_previewlanguage": "json" }, { - "id": "695d1b0b-d5ba-4b87-a6bf-62ebd4936c38", + "id": "df3a5dc6-92b1-4750-9787-fd8c7d39a936", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -108052,7 +108052,7 @@ "_postman_previewlanguage": "json" }, { - "id": "18d41dc3-3a6b-4eb6-9222-34770b69c3b8", + "id": "e87907f2-dea5-4c36-a62a-06bba90789bc", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -108097,7 +108097,7 @@ "_postman_previewlanguage": "json" }, { - "id": "14bceb7e-3c93-4b27-a5a5-999ab6383c7b", + "id": "ed780c66-5073-4b3b-8691-ae84f676f18e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -108154,7 +108154,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": "ea759f21-f65e-4d55-a6fc-214b2f098034", + "id": "e2fa4c9d-43e2-4a75-9882-bf37d3ed9b8a", "name": "Get Lifecycle State", "request": { "name": "Get Lifecycle State", @@ -108207,7 +108207,7 @@ }, "response": [ { - "id": "62f4b976-9a86-4017-8367-72be9d59c4da", + "id": "0d4a06d1-5d25-4df4-b0b4-496e960e7e2d", "name": "Requested lifecycle state.", "originalRequest": { "url": { @@ -108253,7 +108253,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c70510d3-d682-4bc7-8ccc-7851ec890639", + "id": "9f07ddfd-9ef4-4011-971a-0917554c90eb", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -108299,7 +108299,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2cf1be36-e67b-4846-b897-522747dc5f7f", + "id": "3133ba48-f867-4e83-b940-cfb191e0219e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -108345,7 +108345,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ed51f78b-4b88-4413-868a-d38ff0a774d3", + "id": "a0dfbc4f-0800-467b-8a60-0f36cf6532c2", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -108391,7 +108391,7 @@ "_postman_previewlanguage": "json" }, { - "id": "95bbd4b0-70fd-4db4-b125-a054e6bf6393", + "id": "e13c8743-d51c-45a8-8334-6d9677d9ae15", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -108437,7 +108437,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6a97e8f0-b538-467b-98cd-254cf4584243", + "id": "27fa7cf1-d306-41ae-8213-e6b0b3df7e6a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -108489,7 +108489,7 @@ } }, { - "id": "b0f2e545-50d2-443d-bae9-079a284242a9", + "id": "3b5f2987-2288-451b-b803-b3b77946a719", "name": "Update Lifecycle State", "request": { "name": "Update Lifecycle State", @@ -108555,7 +108555,7 @@ }, "response": [ { - "id": "172a575c-a49d-4b85-be66-1b1ff4b40cb8", + "id": "0a4a4ec2-628d-47cf-b164-a862acdf265e", "name": "Updated lifecycle state.", "originalRequest": { "url": { @@ -108614,7 +108614,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ff2a2d8e-917e-4b76-9274-7ec4193e4bc0", + "id": "16cd86ac-de24-4bb5-8be2-b5f48ed9a46c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -108673,7 +108673,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ace26eec-d1e5-406e-9c98-a082a06f4416", + "id": "3aa381cc-beac-4603-ba19-6b1c48b1c78a", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -108732,7 +108732,7 @@ "_postman_previewlanguage": "json" }, { - "id": "da92bd92-665c-49ae-a720-532963fa5c83", + "id": "db37dd63-7e61-4efe-a445-6f0346dfa332", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -108791,7 +108791,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8ab250fa-bf9e-4d99-9992-3513e0ee34e5", + "id": "df6637c4-9247-4d17-89eb-6fe7f8a8a4e5", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -108850,7 +108850,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a7d9947a-941c-40aa-a485-519e6300dfd6", + "id": "31627819-7c2c-4054-ac22-90f2dfe07f8c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -108921,7 +108921,7 @@ "description": "Read and write operations for managing client data and statuses", "item": [ { - "id": "2a122907-5508-4dd3-8f35-cd3a439af6eb", + "id": "afb4b71b-70b5-4c6b-bc32-e850418e0ee5", "name": "Specified Managed Client Status.", "request": { "name": "Specified Managed Client Status.", @@ -108973,7 +108973,7 @@ }, "response": [ { - "id": "c6f13b0d-6404-4fe4-a8af-a58ccc0b3487", + "id": "b207648c-e895-4458-80af-eeeb991f31e4", "name": "Responds with Managed Client Status having the given ID and Type.", "originalRequest": { "url": { @@ -109028,7 +109028,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4a002a64-9ddc-49bd-907a-052f918f9a80", + "id": "1b4f5f48-ccbf-4b96-bdfa-db7f1979f3bd", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -109083,7 +109083,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d52b862e-9cb7-49c2-8c74-25027dbe1ce9", + "id": "db02e05d-7b51-4b9a-a487-7a32566dea7a", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -109138,7 +109138,7 @@ "_postman_previewlanguage": "json" }, { - "id": "06a2ceac-e1cf-431e-9e68-dfb0dbbf5bb2", + "id": "f18a1a32-13c0-4360-9684-9259c80e54b9", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -109193,7 +109193,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9d279611-0e0b-4268-bfea-5e9678921de8", + "id": "4869f683-449f-4586-be4e-1ae06054aba2", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -109248,7 +109248,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a19bde8c-a547-4e8a-bc45-36a9c4a3c7d2", + "id": "b10a2a72-5170-47ba-95bd-87b113b7dfc3", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -109303,7 +109303,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b5c93dc8-6a83-48f3-8957-a7dbe662b5f0", + "id": "d1dd2320-7ebf-43d6-b1d5-db926209b019", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -109364,7 +109364,7 @@ } }, { - "id": "812f61b0-da69-4271-b5c1-f0a647c301e9", + "id": "4229c5d5-8d58-481b-b7c9-a6aaaecaff60", "name": "Handle status request from client", "request": { "name": "Handle status request from client", @@ -109419,7 +109419,7 @@ }, "response": [ { - "id": "440d4381-4208-4033-8a9a-b2303380eff7", + "id": "cceb5454-535f-4b6e-b9c3-9e6bb2e5d213", "name": "Responds with the updated Managed Client Status.", "originalRequest": { "url": { @@ -109477,7 +109477,7 @@ "_postman_previewlanguage": "json" }, { - "id": "aaeb68f4-702f-4c5e-a0fa-21dfcece19f6", + "id": "bb859c97-8f02-40c3-b6e1-d70bd2dc2b5b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -109535,7 +109535,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9da715cf-e00f-4238-b8aa-73a6a0120580", + "id": "8012f690-0e84-48f9-8c16-455a4c53b722", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -109593,7 +109593,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4227df59-0d6f-498a-953a-2408da7b0ea0", + "id": "1bc029a9-421e-474d-bec3-1f27c8edf318", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -109651,7 +109651,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d3da580e-0b91-4487-af17-d501633efafd", + "id": "b3df49ae-6729-4952-a7e9-6c9895df9a90", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -109709,7 +109709,7 @@ "_postman_previewlanguage": "json" }, { - "id": "40ed9a3c-d481-4650-9f2f-14fc53ce27d0", + "id": "027bbf28-ccfa-48ae-a468-5ac03e579c6f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -109767,7 +109767,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e46ee769-3ca0-42b7-bdf1-c53c4d182abe", + "id": "4bd3b544-3e90-470f-848b-4901926f8414", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -109837,7 +109837,7 @@ "description": "Operations for accessing and managing client Clusters, including Log Configuration", "item": [ { - "id": "87e496f1-1cb1-427b-a8db-4295be0c0013", + "id": "cab51287-d3a5-4a12-a7c3-cb9702c9dca8", "name": "Get a specified ManagedCluster.", "request": { "name": "Get a specified ManagedCluster.", @@ -109878,7 +109878,7 @@ }, "response": [ { - "id": "de479ac3-d93e-441d-bc24-eef820cc8818", + "id": "91f3d694-d340-477a-a0e2-285df5501896", "name": "Responds with ManagedCluster having the given ID.", "originalRequest": { "url": { @@ -109922,7 +109922,7 @@ "_postman_previewlanguage": "json" }, { - "id": "790e7bd6-9b69-4d07-ad43-638b7ba88006", + "id": "92554bb9-a7f0-4870-a4a0-6b37a7ef8110", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -109966,7 +109966,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ebba39e2-6273-494e-8ba5-8ea3f243cd5e", + "id": "e2c5d4da-4490-4644-8ecb-746254dcfc0f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -110010,7 +110010,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e5860273-a3c1-4c09-b7b1-f4bf94ac2778", + "id": "b1bb199e-8726-42f4-839a-23246f553d48", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -110054,7 +110054,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7d4e2810-5f9d-46d2-8b1a-317ddbf5bfba", + "id": "2a0a7056-e04f-47ac-9f01-7d7418ecf690", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -110098,7 +110098,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f05173d4-df80-4d8c-84bf-150a17d94fa0", + "id": "2d29b51a-f0a9-4f31-b44b-0c4239456233", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -110142,7 +110142,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0cf28b06-6e2a-482d-a2b6-1bd6f0a0cd04", + "id": "eaacba83-19e8-460b-86a3-9bb163d810df", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -110192,7 +110192,7 @@ } }, { - "id": "43e931be-2225-4feb-845b-4105eb18e4e5", + "id": "a494a144-dd1b-417a-b537-f9c4f9b335c8", "name": "Get managed cluster's log configuration", "request": { "name": "Get managed cluster's log configuration", @@ -110234,7 +110234,7 @@ }, "response": [ { - "id": "17cf3801-c5d4-4c5f-8f13-50452d2f2781", + "id": "b45ed1c6-f80c-4ecc-9bed-ddc2cbeca98b", "name": "Log configuration of ManagedCluster matching given cluster ID", "originalRequest": { "url": { @@ -110279,7 +110279,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d20f3694-c4a4-4a65-9869-404b2917527a", + "id": "0212b840-24bf-46b4-9b9e-0724cece16fd", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -110324,7 +110324,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1d8a7851-4c47-409a-bcdb-3c19ee6b6ceb", + "id": "f5932173-f308-4980-a65c-4785b331e245", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -110369,7 +110369,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1a55c43a-242b-40b4-8792-2ef09a123adf", + "id": "ac3cb3dd-54db-4d7e-92a1-60ff96f279dc", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -110414,7 +110414,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6a47dbbb-52af-4ea2-bb80-8c9443590633", + "id": "a4171544-cab1-4e6b-807a-f014b08fff9a", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -110459,7 +110459,7 @@ "_postman_previewlanguage": "json" }, { - "id": "046e0dde-1984-471a-8255-abb8219d8c62", + "id": "ac4dcdfb-3cba-464b-b70f-270aef847417", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -110504,7 +110504,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9561eb80-6b95-447c-964c-4b855136325d", + "id": "9d15fd47-4c87-4c46-8af6-b79cc4d45ffc", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -110555,7 +110555,7 @@ } }, { - "id": "e3fa223c-7f38-402d-abfa-816181a3bfde", + "id": "a4ca0f4d-e7c1-4c4f-8d81-6fd499de4add", "name": "Update managed cluster's log configuration", "request": { "name": "Update managed cluster's log configuration", @@ -110610,7 +110610,7 @@ }, "response": [ { - "id": "c6b60824-9ea2-401e-9bbf-107e2b170b7b", + "id": "1197fe76-1675-4e15-a99f-cef50f5b1da2", "name": "Responds with updated ClientLogConfiguration for given ManagedCluster", "originalRequest": { "url": { @@ -110668,7 +110668,7 @@ "_postman_previewlanguage": "json" }, { - "id": "335a5ace-1b7b-4848-8caa-cc09f045740e", + "id": "d139e5d5-3667-445c-977b-7339607b7332", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -110726,7 +110726,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7f1891b2-0206-4370-b7a5-ad63fde81c75", + "id": "1cc575b1-1c3a-4d52-b39d-c4c38eb7af0b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -110784,7 +110784,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2b21846b-5c91-42d4-be76-86cf687c2113", + "id": "a8721806-5fa0-4d87-8ea2-ebccfb7444f9", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -110842,7 +110842,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b6fc6672-dd88-4c46-b6aa-524070e837c8", + "id": "7c9ed2f0-662b-41b5-99bc-35000f36ca09", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -110900,7 +110900,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a9c92b2d-9847-456a-9823-8e679a6e48ed", + "id": "49b4ff1c-1b26-41c0-ace1-65f756e98ef4", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -110958,7 +110958,7 @@ "_postman_previewlanguage": "json" }, { - "id": "576f07b2-e33e-43b9-92a8-e89901ec0f91", + "id": "aa480fd1-5c6d-4012-b855-85817f038b64", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -111022,7 +111022,7 @@ } }, { - "id": "4bee5c86-1639-4dd6-a3c4-49d48dfbfaec", + "id": "c83991e8-ad84-4017-baea-dacc49ddefa7", "name": "Retrieve all Managed Clusters.", "request": { "name": "Retrieve all Managed Clusters.", @@ -111088,7 +111088,7 @@ }, "response": [ { - "id": "5eeaa1f6-f362-48e3-a9c3-c346b8b01014", + "id": "b69ff244-a130-4331-b935-9f59e0dbe3ee", "name": "Responds with a list of ManagedCluster.", "originalRequest": { "url": { @@ -111168,7 +111168,7 @@ "_postman_previewlanguage": "json" }, { - "id": "41f63ab2-766f-4c14-82dd-e29521be66af", + "id": "85ce3845-a752-45e2-91de-7d335e8d1639", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -111248,7 +111248,7 @@ "_postman_previewlanguage": "json" }, { - "id": "73bc41c3-9d6b-41b8-a32f-ddca8657c8a2", + "id": "92937c6a-6796-4f44-9714-d1547302225a", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -111328,7 +111328,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7a122c5e-0700-4c92-8388-ff4558c51e7a", + "id": "52ef3422-c038-46a1-962b-db7e51d3a17d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -111408,7 +111408,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e18e0ee0-25e3-4689-8f06-af812ad30e4d", + "id": "44612151-c0d5-49f6-94da-61ba6c123825", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -111488,7 +111488,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ef2ec900-e98f-47fc-be23-b7e59f8d4e28", + "id": "8d5f2fd8-7442-4b12-844c-4193abf01c1b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -111580,7 +111580,7 @@ "description": "Configure and test multifactor authentication (MFA) methods", "item": [ { - "id": "fa8a4270-4b53-43e7-a54a-6ad4564ad4fe", + "id": "887a9d92-8a15-4712-9ec4-dbd43b8bc2c2", "name": "Configuration of Okta MFA method", "request": { "name": "Configuration of Okta MFA method", @@ -111611,7 +111611,7 @@ }, "response": [ { - "id": "a45058c8-67da-4960-a957-a027e19b219d", + "id": "f8f1704c-c9fa-413f-8b6f-4ce60e4ee665", "name": "The configuration of an Okta MFA method.", "originalRequest": { "url": { @@ -111656,7 +111656,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1786f769-1a86-41f3-8296-60c3e1c5f3c4", + "id": "c8880b0a-bac8-499b-b5db-29971d213d84", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -111701,7 +111701,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8f3ec210-4e10-4dea-9a33-5c6fa9f4b994", + "id": "1b055d33-9bf6-4b6f-8341-0fd0bd07a412", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -111746,7 +111746,7 @@ "_postman_previewlanguage": "json" }, { - "id": "86442a38-7c54-4f3e-85c5-b34ee21a74b7", + "id": "cc333dfc-1ea8-4340-80af-01fa4c00c464", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -111791,7 +111791,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ec00c1b5-6953-4a54-b8cf-b77855e1c0f9", + "id": "878f129d-09c0-45c5-878a-88a098d0a454", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -111836,7 +111836,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4524a987-c81e-45d2-83c3-5aec11cb9b1c", + "id": "aa8727c0-4f9b-49d4-8a98-4d09b3d7e8a3", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -111887,7 +111887,7 @@ } }, { - "id": "37a5e082-69f1-4903-8e81-3d9737d60631", + "id": "3c020a40-613a-4136-b3a9-ef293eb560de", "name": "Set Okta MFA configuration", "request": { "name": "Set Okta MFA configuration", @@ -111931,7 +111931,7 @@ }, "response": [ { - "id": "c8f90500-223a-431c-a1d2-7274e42ab90c", + "id": "b5c717da-306a-4761-8c90-da5ead1fa17b", "name": "MFA configuration of an Okta MFA method.", "originalRequest": { "url": { @@ -111989,7 +111989,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8d594f25-392d-4b8d-959b-ed0d1d0afdd8", + "id": "3d0f141f-c695-4b9e-95a6-a8e343d263db", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -112047,7 +112047,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f849c76a-aaeb-442a-8e37-a6c730b8a310", + "id": "97f86a22-99f8-4b04-9222-24986ce9960d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -112105,7 +112105,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3703bf47-3ecd-42c3-9dbb-72284636290e", + "id": "4e637170-27da-421e-99e3-8f84dcae4d36", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -112163,7 +112163,7 @@ "_postman_previewlanguage": "json" }, { - "id": "492d88a8-7de5-4591-8003-362db67bbb92", + "id": "dbedb52d-1fe6-4270-8b06-936efe317789", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -112221,7 +112221,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9fdc61f2-3906-44d9-a3d6-1b6c997dd8c0", + "id": "ebdd3d18-31e9-41a1-97b7-f0f2f7405fb4", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -112285,7 +112285,7 @@ } }, { - "id": "7ccbf4a6-de5e-4405-b03f-e5f04e5f541d", + "id": "9a858828-db0a-46bb-bf28-f5b89f76ef30", "name": "Configuration of Duo MFA method", "request": { "name": "Configuration of Duo MFA method", @@ -112316,7 +112316,7 @@ }, "response": [ { - "id": "c37dcf55-11cb-4f4b-8205-64c81b768cce", + "id": "8b19bceb-705d-45bb-b16c-b3031200f025", "name": "The configuration of an Duo MFA method.", "originalRequest": { "url": { @@ -112361,7 +112361,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dab8640b-b293-41e4-9460-04bfb3e7718d", + "id": "7247cb1a-729a-499f-9b8e-5b53372a7e70", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -112406,7 +112406,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d2e23da1-1d1b-48af-b058-cb7872d45e1f", + "id": "b8457da5-0a89-4c6d-8826-7eeee0b0aaf0", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -112451,7 +112451,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a46dfb93-1d32-4d5c-848c-e0b868d7b764", + "id": "a8a39dd8-4047-495b-b942-ae0d329aafc8", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -112496,7 +112496,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e834a1fd-d40b-4c6b-825c-3cb7a97f551f", + "id": "a69fe313-e35f-4a35-aff2-c34ec14279d1", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -112541,7 +112541,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9784f9e8-5bf9-4ea1-820a-ff3357cd92ec", + "id": "d2a0588c-bb43-4ae7-8787-3f6b86c651a8", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -112592,7 +112592,7 @@ } }, { - "id": "e2319d37-70e4-4d3c-adf3-6933b1ab3081", + "id": "33ab4eec-c4dd-47dd-8a97-77409d3bf1f6", "name": "Set Duo MFA configuration", "request": { "name": "Set Duo MFA configuration", @@ -112636,7 +112636,7 @@ }, "response": [ { - "id": "26d6ca0a-f67c-4ad6-8557-acadffc29714", + "id": "110062ba-5fc5-4451-8755-260cd5bb566d", "name": "MFA configuration of an Duo MFA method.", "originalRequest": { "url": { @@ -112694,7 +112694,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7fb7c42f-8605-42fc-a132-28c9488380f0", + "id": "46d4bfaa-b263-47ec-82a5-9eeb162a7997", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -112752,7 +112752,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c4e34d49-f6cb-416e-9193-19918ffc07ab", + "id": "8961e492-4d03-4100-af49-51e9c20523a7", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -112810,7 +112810,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a5780578-8d2c-44d1-a853-8fc01fa442bf", + "id": "e1e03245-11bc-494a-acdd-05c9c4a0069a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -112868,7 +112868,7 @@ "_postman_previewlanguage": "json" }, { - "id": "69434694-8361-4af0-91d4-66545153fea2", + "id": "bea07d62-7ee8-4bb3-9526-04c6db7947ac", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -112926,7 +112926,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3dd1d3b7-f192-4c3e-874a-c7b102155191", + "id": "4d411089-3b6f-4aeb-8968-8d3746cdcfb5", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -112990,7 +112990,7 @@ } }, { - "id": "90744469-6261-49e4-8685-6e37ea1d20ca", + "id": "eb7132bb-ae6f-4192-8923-be6d17d41ede", "name": "Configuration of KBA MFA method", "request": { "name": "Configuration of KBA MFA method", @@ -113031,7 +113031,7 @@ }, "response": [ { - "id": "4f0f0028-b809-4735-be86-cd973f6b2ce3", + "id": "33298b8d-b303-4149-b8a2-bfe86d49568f", "name": "The configuration for KBA MFA method.", "originalRequest": { "url": { @@ -113086,7 +113086,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1be04248-bc03-4552-b67b-644c70ab5353", + "id": "d30fb2e3-430b-4333-bd4f-856fee8893de", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -113141,7 +113141,7 @@ "_postman_previewlanguage": "json" }, { - "id": "68dac14f-c57b-4210-8c49-a6e136bd639f", + "id": "8f3edf36-9fe6-41b4-88cf-af66426df3c6", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -113196,7 +113196,7 @@ "_postman_previewlanguage": "json" }, { - "id": "57a4e49c-f78d-4b7d-8ede-7efcb05a7036", + "id": "d8eec32b-af99-4ae2-858f-4442dae317de", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -113251,7 +113251,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c14b39b5-79a8-412c-a6b0-260024de8dc5", + "id": "754be04c-a8b0-40af-bb40-001b33b28f11", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -113306,7 +113306,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a2321989-20a0-4b5e-84ed-e4cd1d6aed4d", + "id": "61ec40b9-4c90-415c-bd32-1a7150a747b9", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -113367,7 +113367,7 @@ } }, { - "id": "1a0913f8-0f7f-4d61-ac58-eacda8b50196", + "id": "493c7a13-b57f-4493-a525-267ad71ef475", "name": "Set MFA KBA configuration", "request": { "name": "Set MFA KBA configuration", @@ -113412,7 +113412,7 @@ }, "response": [ { - "id": "7e75a636-c589-4702-82b4-fd04c7cadc35", + "id": "3168b4ce-21f9-4cbe-9a3f-e58ab8ff6a42", "name": "The new KBA configuration for the user.", "originalRequest": { "url": { @@ -113471,7 +113471,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f40f2120-c254-404b-85a7-4b2db4095422", + "id": "e0de69bb-5e82-4120-99e2-67722667ca07", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -113530,7 +113530,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b001f101-805d-493b-ad3c-fe9769228041", + "id": "7a87f35d-2637-4e34-8cfc-5db66f1277af", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -113589,7 +113589,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0f6f23a5-0ef8-483f-b428-142d62c0189d", + "id": "50ff6ed0-7cf9-4a24-9397-49364e3c7a50", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -113648,7 +113648,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1fdb8461-e294-472b-8f1b-9cddf2b07f78", + "id": "bef66e09-eb96-4fa9-b528-357e72ad3660", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -113707,7 +113707,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a126949b-4483-4842-a840-804925b37fd5", + "id": "f44ee68e-9d4e-4c0f-af5a-5bf4a47c21d0", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -113772,7 +113772,7 @@ } }, { - "id": "e9492228-df1b-43ec-8288-03e514f2a5c4", + "id": "5d55e37d-91ae-4010-97a9-d829188025ce", "name": "MFA method's test configuration", "request": { "name": "MFA method's test configuration", @@ -113814,7 +113814,7 @@ }, "response": [ { - "id": "ced45e62-aae2-4af7-b511-82a1037d645b", + "id": "b0c3dc3c-94b7-4ad9-92f9-4275f9880398", "name": "The result of configuration test for the MFA provider.", "originalRequest": { "url": { @@ -113859,7 +113859,7 @@ "_postman_previewlanguage": "json" }, { - "id": "805b281d-3882-4ac7-84c9-d241c779ef1e", + "id": "abe4bf8c-bf4d-43e0-8702-3abf09a8da62", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -113904,7 +113904,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d90ab6b9-17fb-4554-ad53-2e1ef99560a5", + "id": "304cf26b-d00a-4c60-9d55-0946b1c476f0", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -113949,7 +113949,7 @@ "_postman_previewlanguage": "json" }, { - "id": "27cd868a-2c9c-4cff-b12b-0aeb814c1016", + "id": "a55c02ee-ad71-4e4f-8bb6-8639449b6979", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -113994,7 +113994,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3569a201-5ea7-4c0e-b2b4-1e3d8d6bc50b", + "id": "01260b64-6deb-47a3-bdfc-edae019055ee", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -114039,7 +114039,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cea20a98-27da-499b-9ea9-c2ffe209525f", + "id": "fb452e62-8441-42a6-bf17-cd205ec48b57", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -114090,7 +114090,7 @@ } }, { - "id": "07d85861-5972-4c64-85e9-23736af5711d", + "id": "81359fb8-d986-48ea-bd8d-596471284c90", "name": "Delete MFA method configuration", "request": { "name": "Delete MFA method configuration", @@ -114132,7 +114132,7 @@ }, "response": [ { - "id": "85b6b963-5453-48f1-b062-21e084ae2249", + "id": "9eb46664-a9e8-40f4-936b-877b4eccd628", "name": "MFA configuration of an MFA method.", "originalRequest": { "url": { @@ -114177,7 +114177,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b2bca9d2-d6cc-420b-adb9-3611367e0308", + "id": "45c9647f-0baa-4ca1-b991-bcc4f59c7d26", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -114222,7 +114222,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0b806e18-a698-4bd5-9648-7b4c7faa18d9", + "id": "0ce74ed4-73d8-4471-87e8-b44bcdb425b7", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -114267,7 +114267,7 @@ "_postman_previewlanguage": "json" }, { - "id": "12097ef7-ee8f-444c-87f5-33027ed01244", + "id": "d2f5edcf-b7f9-45c2-968f-9519031c3e4c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -114312,7 +114312,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ba534318-4748-40e7-beba-10488559a0d5", + "id": "39e37402-db63-48b3-978f-63e57459eb32", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -114357,7 +114357,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8a6b14e6-94eb-4578-888e-743f9f29b522", + "id": "24f2ed74-5f7d-4fc8-bcbd-a2c6a092dd84", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -114414,7 +114414,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": "c6b6942c-716d-4bef-a2cd-910f138aa6d8", + "id": "a965abcb-ddc6-4aa6-a5a9-016e6d959acf", "name": "Verifying authentication via Okta method", "request": { "name": "Verifying authentication via Okta method", @@ -114458,7 +114458,7 @@ }, "response": [ { - "id": "550ae9dd-0852-44ad-b7de-7b4c7f085d17", + "id": "fc192ef9-b6dd-40e5-97de-455c284ce051", "name": "The status of verification request.", "originalRequest": { "url": { @@ -114516,7 +114516,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b7c9831b-25fc-4eca-82fe-9209b8ea24ba", + "id": "f69e5b05-db3e-4a94-b4b0-b5ce669800c4", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -114574,7 +114574,7 @@ "_postman_previewlanguage": "json" }, { - "id": "61e67fe4-3417-4a9e-821c-3bd6b3128258", + "id": "c51df15d-54e6-401f-8058-ca58a17e95db", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -114632,7 +114632,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2c7241ed-e9ba-44b4-a4fd-eff4d5e8bb1d", + "id": "3161b878-5595-4ddf-9317-f871f094e6b4", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -114690,7 +114690,7 @@ "_postman_previewlanguage": "json" }, { - "id": "63dc0d6f-7f3e-4fe8-9617-f10346ab3375", + "id": "ee9bac82-5c8c-4225-a30f-6e98f51d6272", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -114748,7 +114748,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6fca3479-48d9-4c8d-8485-886e381c50b5", + "id": "032ce07d-0f02-44be-ba57-4bab1715ca34", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -114812,7 +114812,7 @@ } }, { - "id": "20137cd8-5741-449a-a0bc-3578008b3acd", + "id": "a3f877b5-7667-4107-acbd-b6e33fcf69b3", "name": "Verifying authentication via Duo method", "request": { "name": "Verifying authentication via Duo method", @@ -114856,7 +114856,7 @@ }, "response": [ { - "id": "5abcdfeb-76bf-465f-8e66-920dda9f13dc", + "id": "61f52989-c3e9-4a80-9e6c-f77b6bcd7b34", "name": "The status of verification request.", "originalRequest": { "url": { @@ -114914,7 +114914,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7810b091-36eb-407a-97ce-eeffe4a0db07", + "id": "35274e64-e4a8-478a-a2ac-a1449e9940fd", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -114972,7 +114972,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c4378106-4db2-4faf-928f-af9d783d5a44", + "id": "c7c7ce62-c32b-4d94-9a2a-51b7cab5c73a", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -115030,7 +115030,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e01b7847-99cb-4b87-ac8b-cbb66643e2d3", + "id": "2697a2e5-5872-45ea-823d-a6583f890fe4", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -115088,7 +115088,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d24d5d79-2bc7-43a7-a6c7-85588e9d2fa1", + "id": "89d2e360-cf87-4e6f-a74b-3c2b30167bd0", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -115146,7 +115146,7 @@ "_postman_previewlanguage": "json" }, { - "id": "971b93e7-c7d2-48af-8531-6a0af0e5110c", + "id": "5b29e9e6-2905-457e-96da-0938644d6baf", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -115210,7 +115210,7 @@ } }, { - "id": "f2867611-930d-480d-8ff8-c7a7215b24a5", + "id": "a3b90aeb-a199-48d7-972f-0c3441fbfb91", "name": "Polling MFA method by VerificationPollRequest", "request": { "name": "Polling MFA method by VerificationPollRequest", @@ -115265,7 +115265,7 @@ }, "response": [ { - "id": "ca250109-b7f9-4c94-9541-3f8c99bba2ca", + "id": "99f6c012-a0db-44f7-8a01-362857a2dc67", "name": "MFA VerificationPollRequest status an MFA method.", "originalRequest": { "url": { @@ -115323,7 +115323,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fcdd892a-2a3d-4cfa-9543-0bf0726f9489", + "id": "0e39f0d0-965c-4624-b0b1-946aba68e965", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -115381,7 +115381,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1ee0e14f-2239-4679-bbc7-66afc434ab59", + "id": "7d01d773-252a-4875-b46d-d48c8d0ad80b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -115439,7 +115439,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1603ac54-379f-4134-bdc9-49f9d50b4827", + "id": "fafac75d-55bf-482f-8201-8bbc45793fa4", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -115497,7 +115497,7 @@ "_postman_previewlanguage": "json" }, { - "id": "afccfa77-3f90-4188-acdf-405526490a4e", + "id": "5248ab42-ea4b-438b-8f45-bc317fb8e340", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -115555,7 +115555,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6e1b5f04-bb9e-478e-a493-2739661318bb", + "id": "e18e96b1-9dfa-4990-af17-423aed5d92dc", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -115619,7 +115619,7 @@ } }, { - "id": "4553e8f0-3f33-4b1a-a575-21f2b6ee7e32", + "id": "b92bc670-8c84-49e5-8d19-b4d1d2732275", "name": "Authenticate KBA provided MFA method", "request": { "name": "Authenticate KBA provided MFA method", @@ -115663,7 +115663,7 @@ }, "response": [ { - "id": "7f56518d-207c-41f2-a7a8-b5286bccc14b", + "id": "ff21c45f-428e-46bd-83ed-a19537187370", "name": "KBA authenticated status.", "originalRequest": { "url": { @@ -115721,7 +115721,7 @@ "_postman_previewlanguage": "json" }, { - "id": "82dcde3d-7188-4a61-af4e-19316b8fc58e", + "id": "47ff33e7-c64e-46f4-8fdd-6971454d65de", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -115779,7 +115779,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b6bfa1d1-cf51-4360-bd45-3dc90b33ad85", + "id": "059db22e-9c13-4955-90f6-0e4774d4d23e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -115837,7 +115837,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ab5403a8-c0ba-41b2-bb5f-3d9ac70f3cf9", + "id": "c88ff56c-7ab1-457c-82b6-c8ca25003481", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -115895,7 +115895,7 @@ "_postman_previewlanguage": "json" }, { - "id": "21caca80-c803-496a-ac19-55852136f6ac", + "id": "a7e6279f-0731-4cd0-9a38-a34aab5699bd", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -115953,7 +115953,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1f8231aa-af63-4567-8bf1-a0c6ed3a270d", + "id": "b3c5d119-32f5-4b83-9ab7-69ef5e3e9087", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -116017,7 +116017,7 @@ } }, { - "id": "2e115f20-5a08-4872-8aed-0cb86b0f34d2", + "id": "bf8e751f-6b82-4aef-9aed-2e2a79924222", "name": "Authenticate Token provided MFA method", "request": { "name": "Authenticate Token provided MFA method", @@ -116061,7 +116061,7 @@ }, "response": [ { - "id": "76c5fe77-3f46-48a8-94ee-9e6dbb2f1138", + "id": "c15ff5c0-f08c-45eb-bac9-3c369342c1d7", "name": "Token authenticated status.", "originalRequest": { "url": { @@ -116119,7 +116119,7 @@ "_postman_previewlanguage": "json" }, { - "id": "834f6d98-7baf-455e-aec5-08b6400e8936", + "id": "335eeed3-b98a-4d32-a485-e04e8076097b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -116177,7 +116177,7 @@ "_postman_previewlanguage": "json" }, { - "id": "df31eac8-74cf-4583-be90-7d8b8ee42ac9", + "id": "dec357df-4b66-46a4-944f-17aa6ec807a4", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -116235,7 +116235,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f23addea-93d1-4b9b-8b55-5a154fbeb849", + "id": "cb7e3e35-206f-406e-a99b-86ab0d9919d9", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -116293,7 +116293,7 @@ "_postman_previewlanguage": "json" }, { - "id": "30e8bd27-4c6d-4b62-98d4-4ba3ad5c0ad8", + "id": "fa5451c1-69a9-4d2e-99cb-d2f5389b64b4", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -116351,7 +116351,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2e7de616-270e-43b0-ace1-ee7a779536e9", + "id": "450d3c08-2a83-4fec-9dff-35ce097c9bba", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -116415,7 +116415,7 @@ } }, { - "id": "7f70ab44-b1ba-4357-80bf-83d6b11a6ae7", + "id": "18bf4efd-efcd-46ec-a014-a14d06fe08a5", "name": "Create and send user token", "request": { "name": "Create and send user token", @@ -116459,7 +116459,7 @@ }, "response": [ { - "id": "d2c9a4c6-6c4b-4612-9062-865e4b2990e1", + "id": "438118b5-9474-4501-8b99-173b5e9756cb", "name": "Token send status.", "originalRequest": { "url": { @@ -116517,7 +116517,7 @@ "_postman_previewlanguage": "json" }, { - "id": "32fa9d2f-d3d3-4dd6-9d5e-ea911068c12f", + "id": "1526e1df-92b1-4209-8ae9-a19b0387a775", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -116575,7 +116575,7 @@ "_postman_previewlanguage": "json" }, { - "id": "70920298-d743-4847-ae1c-b694f41ab832", + "id": "36c78dbe-263d-4e18-9ab2-60ceebf45b6f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -116633,7 +116633,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ac38c3f5-6290-44ee-b62e-6a53f15a41b6", + "id": "5344f7d7-600a-4c94-a72c-6b7b41da07f1", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -116691,7 +116691,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4fb5a3d5-497c-44a1-b06a-fa3eafce523c", + "id": "81a491a1-3db2-44a1-9728-756ceecede2f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -116749,7 +116749,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1154f71e-8f2d-4c24-96ae-67e04cd4b7a1", + "id": "be2ef545-dfd2-493a-82f8-fe5a9e999e65", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -116819,7 +116819,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": "39383066-d2f8-46b8-9bb8-67f78d387ff9", + "id": "3a999785-b28a-42f4-a50e-0aaa36f97422", "name": "Create Non-Employee Record", "request": { "name": "Create Non-Employee Record", @@ -116850,7 +116850,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"accountName\": \"william.smith\",\n \"firstName\": \"William\",\n \"lastName\": \"Smith\",\n \"email\": \"william.smith@example.com\",\n \"phone\": \"5555555555\",\n \"manager\": \"jane.doe\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"startDate\": \"2020-03-24T00:00:00-05:00\",\n \"endDate\": \"2021-03-25T00:00:00-05:00\",\n \"data\": {\n \"nostrud2\": \"voluptate dolor\",\n \"ex_b\": \"pariatur in ullamco\"\n }\n}", + "raw": "{\n \"accountName\": \"william.smith\",\n \"firstName\": \"William\",\n \"lastName\": \"Smith\",\n \"email\": \"william.smith@example.com\",\n \"phone\": \"5555555555\",\n \"manager\": \"jane.doe\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"startDate\": \"2020-03-24T00:00:00-05:00\",\n \"endDate\": \"2021-03-25T00:00:00-05:00\",\n \"data\": {\n \"pariatur_d\": \"eiusmod commodo cillum non\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -116861,7 +116861,7 @@ }, "response": [ { - "id": "6ce8a02c-fed3-42d4-9a77-b751bfd2023d", + "id": "a511e37b-daa6-4ec5-8bb4-513cc87220aa", "name": "Created non-employee record.", "originalRequest": { "url": { @@ -116895,7 +116895,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"accountName\": \"william.smith\",\n \"firstName\": \"William\",\n \"lastName\": \"Smith\",\n \"email\": \"william.smith@example.com\",\n \"phone\": \"5555555555\",\n \"manager\": \"jane.doe\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"startDate\": \"2020-03-24T00:00:00-05:00\",\n \"endDate\": \"2021-03-25T00:00:00-05:00\",\n \"data\": {\n \"nostrud2\": \"voluptate dolor\",\n \"ex_b\": \"pariatur in ullamco\"\n }\n}", + "raw": "{\n \"accountName\": \"william.smith\",\n \"firstName\": \"William\",\n \"lastName\": \"Smith\",\n \"email\": \"william.smith@example.com\",\n \"phone\": \"5555555555\",\n \"manager\": \"jane.doe\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"startDate\": \"2020-03-24T00:00:00-05:00\",\n \"endDate\": \"2021-03-25T00:00:00-05:00\",\n \"data\": {\n \"pariatur_d\": \"eiusmod commodo cillum non\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -116912,12 +116912,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"sit\",\n \"accountName\": \"magna culpa quis laborum dolore\",\n \"firstName\": \"William\",\n \"lastName\": \"Smith\",\n \"email\": \"william.smith@example.com\",\n \"phone\": \"5555555555\",\n \"manager\": \"jane.doe\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"data\": {\n \"laborum_\": \"sed et cupidatat in\",\n \"veniam_85\": \"deserunt esse adipisicing\"\n },\n \"startDate\": \"2019-08-23T18:52:59.162Z\",\n \"endDate\": \"2020-08-23T18:52:59.162Z\",\n \"modified\": \"2019-08-23T18:52:59.162Z\",\n \"created\": \"2019-08-23T18:40:35.772Z\"\n}", + "body": "{\n \"id\": \"reprehenderit commodo anim non\",\n \"accountName\": \"consectetur\",\n \"firstName\": \"William\",\n \"lastName\": \"Smith\",\n \"email\": \"william.smith@example.com\",\n \"phone\": \"5555555555\",\n \"manager\": \"jane.doe\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"data\": {\n \"do_0\": \"aliquip pariatur velit\",\n \"aliquipc\": \"magna\"\n },\n \"startDate\": \"2019-08-23T18:52:59.162Z\",\n \"endDate\": \"2020-08-23T18:52:59.162Z\",\n \"modified\": \"2019-08-23T18:52:59.162Z\",\n \"created\": \"2019-08-23T18:40:35.772Z\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "11f3e791-66ce-4775-9237-e5442ce15c71", + "id": "50c0f8cb-dc52-4542-8087-9e1be914caac", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -116951,7 +116951,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"accountName\": \"william.smith\",\n \"firstName\": \"William\",\n \"lastName\": \"Smith\",\n \"email\": \"william.smith@example.com\",\n \"phone\": \"5555555555\",\n \"manager\": \"jane.doe\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"startDate\": \"2020-03-24T00:00:00-05:00\",\n \"endDate\": \"2021-03-25T00:00:00-05:00\",\n \"data\": {\n \"nostrud2\": \"voluptate dolor\",\n \"ex_b\": \"pariatur in ullamco\"\n }\n}", + "raw": "{\n \"accountName\": \"william.smith\",\n \"firstName\": \"William\",\n \"lastName\": \"Smith\",\n \"email\": \"william.smith@example.com\",\n \"phone\": \"5555555555\",\n \"manager\": \"jane.doe\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"startDate\": \"2020-03-24T00:00:00-05:00\",\n \"endDate\": \"2021-03-25T00:00:00-05:00\",\n \"data\": {\n \"pariatur_d\": \"eiusmod commodo cillum non\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -116973,7 +116973,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f6a6a68e-1fda-4c16-9891-81f4c1255b67", + "id": "ad59e678-874d-4e8e-8ef1-8f81e41ef139", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -117007,7 +117007,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"accountName\": \"william.smith\",\n \"firstName\": \"William\",\n \"lastName\": \"Smith\",\n \"email\": \"william.smith@example.com\",\n \"phone\": \"5555555555\",\n \"manager\": \"jane.doe\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"startDate\": \"2020-03-24T00:00:00-05:00\",\n \"endDate\": \"2021-03-25T00:00:00-05:00\",\n \"data\": {\n \"nostrud2\": \"voluptate dolor\",\n \"ex_b\": \"pariatur in ullamco\"\n }\n}", + "raw": "{\n \"accountName\": \"william.smith\",\n \"firstName\": \"William\",\n \"lastName\": \"Smith\",\n \"email\": \"william.smith@example.com\",\n \"phone\": \"5555555555\",\n \"manager\": \"jane.doe\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"startDate\": \"2020-03-24T00:00:00-05:00\",\n \"endDate\": \"2021-03-25T00:00:00-05:00\",\n \"data\": {\n \"pariatur_d\": \"eiusmod commodo cillum non\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -117029,7 +117029,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dab939c7-0447-4929-88de-b389f1978dfb", + "id": "461e3232-3e3a-4a27-a166-4a00bf67c3f4", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -117063,7 +117063,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"accountName\": \"william.smith\",\n \"firstName\": \"William\",\n \"lastName\": \"Smith\",\n \"email\": \"william.smith@example.com\",\n \"phone\": \"5555555555\",\n \"manager\": \"jane.doe\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"startDate\": \"2020-03-24T00:00:00-05:00\",\n \"endDate\": \"2021-03-25T00:00:00-05:00\",\n \"data\": {\n \"nostrud2\": \"voluptate dolor\",\n \"ex_b\": \"pariatur in ullamco\"\n }\n}", + "raw": "{\n \"accountName\": \"william.smith\",\n \"firstName\": \"William\",\n \"lastName\": \"Smith\",\n \"email\": \"william.smith@example.com\",\n \"phone\": \"5555555555\",\n \"manager\": \"jane.doe\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"startDate\": \"2020-03-24T00:00:00-05:00\",\n \"endDate\": \"2021-03-25T00:00:00-05:00\",\n \"data\": {\n \"pariatur_d\": \"eiusmod commodo cillum non\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -117085,7 +117085,7 @@ "_postman_previewlanguage": "json" }, { - "id": "51236f19-bbd6-49d2-b364-0c0af8f5d88c", + "id": "13d0ed9c-06bf-4ee5-bdc6-3de240f6c891", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -117119,7 +117119,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"accountName\": \"william.smith\",\n \"firstName\": \"William\",\n \"lastName\": \"Smith\",\n \"email\": \"william.smith@example.com\",\n \"phone\": \"5555555555\",\n \"manager\": \"jane.doe\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"startDate\": \"2020-03-24T00:00:00-05:00\",\n \"endDate\": \"2021-03-25T00:00:00-05:00\",\n \"data\": {\n \"nostrud2\": \"voluptate dolor\",\n \"ex_b\": \"pariatur in ullamco\"\n }\n}", + "raw": "{\n \"accountName\": \"william.smith\",\n \"firstName\": \"William\",\n \"lastName\": \"Smith\",\n \"email\": \"william.smith@example.com\",\n \"phone\": \"5555555555\",\n \"manager\": \"jane.doe\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"startDate\": \"2020-03-24T00:00:00-05:00\",\n \"endDate\": \"2021-03-25T00:00:00-05:00\",\n \"data\": {\n \"pariatur_d\": \"eiusmod commodo cillum non\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -117141,7 +117141,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cfe20335-568e-4075-8c05-9d2a825d1b94", + "id": "5b8c4e22-d861-4d7a-8f80-8da02e32ca2a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -117175,7 +117175,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"accountName\": \"william.smith\",\n \"firstName\": \"William\",\n \"lastName\": \"Smith\",\n \"email\": \"william.smith@example.com\",\n \"phone\": \"5555555555\",\n \"manager\": \"jane.doe\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"startDate\": \"2020-03-24T00:00:00-05:00\",\n \"endDate\": \"2021-03-25T00:00:00-05:00\",\n \"data\": {\n \"nostrud2\": \"voluptate dolor\",\n \"ex_b\": \"pariatur in ullamco\"\n }\n}", + "raw": "{\n \"accountName\": \"william.smith\",\n \"firstName\": \"William\",\n \"lastName\": \"Smith\",\n \"email\": \"william.smith@example.com\",\n \"phone\": \"5555555555\",\n \"manager\": \"jane.doe\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"startDate\": \"2020-03-24T00:00:00-05:00\",\n \"endDate\": \"2021-03-25T00:00:00-05:00\",\n \"data\": {\n \"pariatur_d\": \"eiusmod commodo cillum non\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -117203,7 +117203,7 @@ } }, { - "id": "d03ed24d-55d8-48bb-b22e-ce6b4cab7712", + "id": "97132fb3-1dee-47ea-9f25-41d9b5de38a0", "name": "List Non-Employee Records", "request": { "name": "List Non-Employee Records", @@ -117278,7 +117278,7 @@ }, "response": [ { - "id": "ba9cc178-e25a-4cc9-8ec7-373d76d80b08", + "id": "93558ee7-07ea-415f-83a8-d219dab72909", "name": "Non-Employee record objects", "originalRequest": { "url": { @@ -117362,12 +117362,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"id adipisicing minim repreh\",\n \"accountName\": \"proident\",\n \"firstName\": \"William\",\n \"lastName\": \"Smith\",\n \"email\": \"william.smith@example.com\",\n \"phone\": \"5555555555\",\n \"manager\": \"jane.doe\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"data\": {\n \"sed_058\": \"eiusmod labore\",\n \"ullamco012\": \"fugiat exercitation sint\",\n \"officia_0\": \"in et\"\n },\n \"startDate\": \"2019-08-23T18:52:59.162Z\",\n \"endDate\": \"2020-08-23T18:52:59.162Z\",\n \"modified\": \"2019-08-23T18:52:59.162Z\",\n \"created\": \"2019-08-23T18:40:35.772Z\"\n },\n {\n \"id\": \"eu sit ad\",\n \"accountName\": \"qui proident\",\n \"firstName\": \"William\",\n \"lastName\": \"Smith\",\n \"email\": \"william.smith@example.com\",\n \"phone\": \"5555555555\",\n \"manager\": \"jane.doe\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"data\": {\n \"sedcf4\": \"est culpa ex magna pariatur\"\n },\n \"startDate\": \"2019-08-23T18:52:59.162Z\",\n \"endDate\": \"2020-08-23T18:52:59.162Z\",\n \"modified\": \"2019-08-23T18:52:59.162Z\",\n \"created\": \"2019-08-23T18:40:35.772Z\"\n }\n]", + "body": "[\n {\n \"id\": \"dolore co\",\n \"accountName\": \"dolore eu\",\n \"firstName\": \"William\",\n \"lastName\": \"Smith\",\n \"email\": \"william.smith@example.com\",\n \"phone\": \"5555555555\",\n \"manager\": \"jane.doe\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"data\": {\n \"dolore_86\": \"eu eiusmod deserunt\",\n \"nulla008\": \"laboris minim\",\n \"cupidatat_232\": \"cupidatat ut reprehenderit laboris\"\n },\n \"startDate\": \"2019-08-23T18:52:59.162Z\",\n \"endDate\": \"2020-08-23T18:52:59.162Z\",\n \"modified\": \"2019-08-23T18:52:59.162Z\",\n \"created\": \"2019-08-23T18:40:35.772Z\"\n },\n {\n \"id\": \"minim dolor volu\",\n \"accountName\": \"\",\n \"firstName\": \"William\",\n \"lastName\": \"Smith\",\n \"email\": \"william.smith@example.com\",\n \"phone\": \"5555555555\",\n \"manager\": \"jane.doe\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"data\": {\n \"eiusmodbc\": \"anim nulla irure\"\n },\n \"startDate\": \"2019-08-23T18:52:59.162Z\",\n \"endDate\": \"2020-08-23T18:52:59.162Z\",\n \"modified\": \"2019-08-23T18:52:59.162Z\",\n \"created\": \"2019-08-23T18:40:35.772Z\"\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "8b53706f-a909-41a9-877c-ed73bd90dd8c", + "id": "2c3b6745-24ff-4bc8-b754-69f230d6b832", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -117456,7 +117456,7 @@ "_postman_previewlanguage": "json" }, { - "id": "42e8648a-9516-4ec5-86a1-048de74fe7fa", + "id": "0c717978-f4b9-4f58-9a0f-9f632ea9f71a", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -117545,7 +117545,7 @@ "_postman_previewlanguage": "json" }, { - "id": "56c85a05-233a-4c79-8002-bc4310d3fb90", + "id": "a6c883dc-bf95-4546-b87a-539af40f5c35", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -117634,7 +117634,7 @@ "_postman_previewlanguage": "json" }, { - "id": "964cf4a9-ab6c-44c7-b639-3020c4838605", + "id": "f330ed8e-d9bf-49fb-90ed-973ee3063d3f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -117723,7 +117723,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6ae9a5bf-a3a4-4121-9d3b-4cb365cd61d3", + "id": "40d4a1ee-838f-40b5-97e2-4a5981c3b61b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -117818,7 +117818,7 @@ } }, { - "id": "6866fbe8-b094-43fa-b4fc-86d49178a5f5", + "id": "32f9f408-8b95-4da4-b7b6-f87da6124a20", "name": "Get a Non-Employee Record", "request": { "name": "Get a Non-Employee Record", @@ -117859,7 +117859,7 @@ }, "response": [ { - "id": "451d63ee-ac93-4d33-80d0-4563d1ea6864", + "id": "20900a31-d61e-46cb-8111-a331f8fb05ab", "name": "Non-Employee record object", "originalRequest": { "url": { @@ -117898,12 +117898,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"sit\",\n \"accountName\": \"magna culpa quis laborum dolore\",\n \"firstName\": \"William\",\n \"lastName\": \"Smith\",\n \"email\": \"william.smith@example.com\",\n \"phone\": \"5555555555\",\n \"manager\": \"jane.doe\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"data\": {\n \"laborum_\": \"sed et cupidatat in\",\n \"veniam_85\": \"deserunt esse adipisicing\"\n },\n \"startDate\": \"2019-08-23T18:52:59.162Z\",\n \"endDate\": \"2020-08-23T18:52:59.162Z\",\n \"modified\": \"2019-08-23T18:52:59.162Z\",\n \"created\": \"2019-08-23T18:40:35.772Z\"\n}", + "body": "{\n \"id\": \"reprehenderit commodo anim non\",\n \"accountName\": \"consectetur\",\n \"firstName\": \"William\",\n \"lastName\": \"Smith\",\n \"email\": \"william.smith@example.com\",\n \"phone\": \"5555555555\",\n \"manager\": \"jane.doe\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"data\": {\n \"do_0\": \"aliquip pariatur velit\",\n \"aliquipc\": \"magna\"\n },\n \"startDate\": \"2019-08-23T18:52:59.162Z\",\n \"endDate\": \"2020-08-23T18:52:59.162Z\",\n \"modified\": \"2019-08-23T18:52:59.162Z\",\n \"created\": \"2019-08-23T18:40:35.772Z\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "7fd0af06-86b1-494a-b918-62366fc4260c", + "id": "8d37ac45-db28-4470-843d-6043164a3ac3", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -117947,7 +117947,7 @@ "_postman_previewlanguage": "json" }, { - "id": "beb45037-3bbe-42eb-a973-8b0c188706ec", + "id": "22b2b24d-0f6a-4c36-b95a-0065d876dc37", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -117991,7 +117991,7 @@ "_postman_previewlanguage": "json" }, { - "id": "305fbed3-f173-4606-9286-fb895f6212a8", + "id": "66e7120b-09c0-438b-8c28-f4dff4707036", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -118035,7 +118035,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d169d4b7-b4e5-4239-b7fc-35a5c7938cb3", + "id": "a711fc26-d94b-4e37-b529-0ab6b0f35afd", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -118079,7 +118079,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a9da9e56-2359-41ff-954b-d685b458cefc", + "id": "05994255-0182-41e4-90a8-f6c7dd1a8cd4", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -118129,7 +118129,7 @@ } }, { - "id": "4469d4de-4c09-4817-b41d-adb8aae3af5b", + "id": "19688303-d530-4560-8cbb-8327d692cca8", "name": "Update Non-Employee Record", "request": { "name": "Update Non-Employee Record", @@ -118172,7 +118172,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"accountName\": \"william.smith\",\n \"firstName\": \"William\",\n \"lastName\": \"Smith\",\n \"email\": \"william.smith@example.com\",\n \"phone\": \"5555555555\",\n \"manager\": \"jane.doe\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"startDate\": \"2020-03-24T00:00:00-05:00\",\n \"endDate\": \"2021-03-25T00:00:00-05:00\",\n \"data\": {\n \"nostrud2\": \"voluptate dolor\",\n \"ex_b\": \"pariatur in ullamco\"\n }\n}", + "raw": "{\n \"accountName\": \"william.smith\",\n \"firstName\": \"William\",\n \"lastName\": \"Smith\",\n \"email\": \"william.smith@example.com\",\n \"phone\": \"5555555555\",\n \"manager\": \"jane.doe\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"startDate\": \"2020-03-24T00:00:00-05:00\",\n \"endDate\": \"2021-03-25T00:00:00-05:00\",\n \"data\": {\n \"pariatur_d\": \"eiusmod commodo cillum non\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -118183,7 +118183,7 @@ }, "response": [ { - "id": "de208dff-a7c0-407f-9325-9437c9177611", + "id": "163269ba-dedb-4b93-a8be-a1780c0ca684", "name": "An updated non-employee record.", "originalRequest": { "url": { @@ -118218,7 +118218,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"accountName\": \"william.smith\",\n \"firstName\": \"William\",\n \"lastName\": \"Smith\",\n \"email\": \"william.smith@example.com\",\n \"phone\": \"5555555555\",\n \"manager\": \"jane.doe\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"startDate\": \"2020-03-24T00:00:00-05:00\",\n \"endDate\": \"2021-03-25T00:00:00-05:00\",\n \"data\": {\n \"nostrud2\": \"voluptate dolor\",\n \"ex_b\": \"pariatur in ullamco\"\n }\n}", + "raw": "{\n \"accountName\": \"william.smith\",\n \"firstName\": \"William\",\n \"lastName\": \"Smith\",\n \"email\": \"william.smith@example.com\",\n \"phone\": \"5555555555\",\n \"manager\": \"jane.doe\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"startDate\": \"2020-03-24T00:00:00-05:00\",\n \"endDate\": \"2021-03-25T00:00:00-05:00\",\n \"data\": {\n \"pariatur_d\": \"eiusmod commodo cillum non\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -118235,12 +118235,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"sit\",\n \"accountName\": \"magna culpa quis laborum dolore\",\n \"firstName\": \"William\",\n \"lastName\": \"Smith\",\n \"email\": \"william.smith@example.com\",\n \"phone\": \"5555555555\",\n \"manager\": \"jane.doe\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"data\": {\n \"laborum_\": \"sed et cupidatat in\",\n \"veniam_85\": \"deserunt esse adipisicing\"\n },\n \"startDate\": \"2019-08-23T18:52:59.162Z\",\n \"endDate\": \"2020-08-23T18:52:59.162Z\",\n \"modified\": \"2019-08-23T18:52:59.162Z\",\n \"created\": \"2019-08-23T18:40:35.772Z\"\n}", + "body": "{\n \"id\": \"reprehenderit commodo anim non\",\n \"accountName\": \"consectetur\",\n \"firstName\": \"William\",\n \"lastName\": \"Smith\",\n \"email\": \"william.smith@example.com\",\n \"phone\": \"5555555555\",\n \"manager\": \"jane.doe\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"data\": {\n \"do_0\": \"aliquip pariatur velit\",\n \"aliquipc\": \"magna\"\n },\n \"startDate\": \"2019-08-23T18:52:59.162Z\",\n \"endDate\": \"2020-08-23T18:52:59.162Z\",\n \"modified\": \"2019-08-23T18:52:59.162Z\",\n \"created\": \"2019-08-23T18:40:35.772Z\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "78f010ee-e526-445f-af6b-378c34d16bab", + "id": "704c7906-080d-496c-9754-51422d077ccd", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -118275,7 +118275,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"accountName\": \"william.smith\",\n \"firstName\": \"William\",\n \"lastName\": \"Smith\",\n \"email\": \"william.smith@example.com\",\n \"phone\": \"5555555555\",\n \"manager\": \"jane.doe\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"startDate\": \"2020-03-24T00:00:00-05:00\",\n \"endDate\": \"2021-03-25T00:00:00-05:00\",\n \"data\": {\n \"nostrud2\": \"voluptate dolor\",\n \"ex_b\": \"pariatur in ullamco\"\n }\n}", + "raw": "{\n \"accountName\": \"william.smith\",\n \"firstName\": \"William\",\n \"lastName\": \"Smith\",\n \"email\": \"william.smith@example.com\",\n \"phone\": \"5555555555\",\n \"manager\": \"jane.doe\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"startDate\": \"2020-03-24T00:00:00-05:00\",\n \"endDate\": \"2021-03-25T00:00:00-05:00\",\n \"data\": {\n \"pariatur_d\": \"eiusmod commodo cillum non\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -118297,7 +118297,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eeeef4cf-3846-4ba9-9842-9b1214779805", + "id": "10c8e774-796a-4da8-83cd-36019116de10", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -118332,7 +118332,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"accountName\": \"william.smith\",\n \"firstName\": \"William\",\n \"lastName\": \"Smith\",\n \"email\": \"william.smith@example.com\",\n \"phone\": \"5555555555\",\n \"manager\": \"jane.doe\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"startDate\": \"2020-03-24T00:00:00-05:00\",\n \"endDate\": \"2021-03-25T00:00:00-05:00\",\n \"data\": {\n \"nostrud2\": \"voluptate dolor\",\n \"ex_b\": \"pariatur in ullamco\"\n }\n}", + "raw": "{\n \"accountName\": \"william.smith\",\n \"firstName\": \"William\",\n \"lastName\": \"Smith\",\n \"email\": \"william.smith@example.com\",\n \"phone\": \"5555555555\",\n \"manager\": \"jane.doe\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"startDate\": \"2020-03-24T00:00:00-05:00\",\n \"endDate\": \"2021-03-25T00:00:00-05:00\",\n \"data\": {\n \"pariatur_d\": \"eiusmod commodo cillum non\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -118354,7 +118354,7 @@ "_postman_previewlanguage": "json" }, { - "id": "44ade51c-b938-4384-ab06-3660725a0c62", + "id": "4fa38177-b919-42a5-8ee1-6f2620296922", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -118389,7 +118389,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"accountName\": \"william.smith\",\n \"firstName\": \"William\",\n \"lastName\": \"Smith\",\n \"email\": \"william.smith@example.com\",\n \"phone\": \"5555555555\",\n \"manager\": \"jane.doe\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"startDate\": \"2020-03-24T00:00:00-05:00\",\n \"endDate\": \"2021-03-25T00:00:00-05:00\",\n \"data\": {\n \"nostrud2\": \"voluptate dolor\",\n \"ex_b\": \"pariatur in ullamco\"\n }\n}", + "raw": "{\n \"accountName\": \"william.smith\",\n \"firstName\": \"William\",\n \"lastName\": \"Smith\",\n \"email\": \"william.smith@example.com\",\n \"phone\": \"5555555555\",\n \"manager\": \"jane.doe\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"startDate\": \"2020-03-24T00:00:00-05:00\",\n \"endDate\": \"2021-03-25T00:00:00-05:00\",\n \"data\": {\n \"pariatur_d\": \"eiusmod commodo cillum non\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -118411,7 +118411,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a99c4f1e-f63e-4536-922a-35e3aab0d130", + "id": "54111581-4f9a-4fa9-ab3a-3d605f9a1f61", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -118446,7 +118446,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"accountName\": \"william.smith\",\n \"firstName\": \"William\",\n \"lastName\": \"Smith\",\n \"email\": \"william.smith@example.com\",\n \"phone\": \"5555555555\",\n \"manager\": \"jane.doe\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"startDate\": \"2020-03-24T00:00:00-05:00\",\n \"endDate\": \"2021-03-25T00:00:00-05:00\",\n \"data\": {\n \"nostrud2\": \"voluptate dolor\",\n \"ex_b\": \"pariatur in ullamco\"\n }\n}", + "raw": "{\n \"accountName\": \"william.smith\",\n \"firstName\": \"William\",\n \"lastName\": \"Smith\",\n \"email\": \"william.smith@example.com\",\n \"phone\": \"5555555555\",\n \"manager\": \"jane.doe\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"startDate\": \"2020-03-24T00:00:00-05:00\",\n \"endDate\": \"2021-03-25T00:00:00-05:00\",\n \"data\": {\n \"pariatur_d\": \"eiusmod commodo cillum non\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -118468,7 +118468,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e4bbe029-f92a-4039-a9bf-53fe7204fc6d", + "id": "7a686d5b-f793-4034-918e-f2ad2b14348f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -118503,7 +118503,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"accountName\": \"william.smith\",\n \"firstName\": \"William\",\n \"lastName\": \"Smith\",\n \"email\": \"william.smith@example.com\",\n \"phone\": \"5555555555\",\n \"manager\": \"jane.doe\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"startDate\": \"2020-03-24T00:00:00-05:00\",\n \"endDate\": \"2021-03-25T00:00:00-05:00\",\n \"data\": {\n \"nostrud2\": \"voluptate dolor\",\n \"ex_b\": \"pariatur in ullamco\"\n }\n}", + "raw": "{\n \"accountName\": \"william.smith\",\n \"firstName\": \"William\",\n \"lastName\": \"Smith\",\n \"email\": \"william.smith@example.com\",\n \"phone\": \"5555555555\",\n \"manager\": \"jane.doe\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"startDate\": \"2020-03-24T00:00:00-05:00\",\n \"endDate\": \"2021-03-25T00:00:00-05:00\",\n \"data\": {\n \"pariatur_d\": \"eiusmod commodo cillum non\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -118525,7 +118525,7 @@ "_postman_previewlanguage": "json" }, { - "id": "667f4b81-80ee-4314-bfea-74d0f5a3b535", + "id": "bb120c28-9e1a-44a5-a4e5-8834418633e7", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -118560,7 +118560,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"accountName\": \"william.smith\",\n \"firstName\": \"William\",\n \"lastName\": \"Smith\",\n \"email\": \"william.smith@example.com\",\n \"phone\": \"5555555555\",\n \"manager\": \"jane.doe\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"startDate\": \"2020-03-24T00:00:00-05:00\",\n \"endDate\": \"2021-03-25T00:00:00-05:00\",\n \"data\": {\n \"nostrud2\": \"voluptate dolor\",\n \"ex_b\": \"pariatur in ullamco\"\n }\n}", + "raw": "{\n \"accountName\": \"william.smith\",\n \"firstName\": \"William\",\n \"lastName\": \"Smith\",\n \"email\": \"william.smith@example.com\",\n \"phone\": \"5555555555\",\n \"manager\": \"jane.doe\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"startDate\": \"2020-03-24T00:00:00-05:00\",\n \"endDate\": \"2021-03-25T00:00:00-05:00\",\n \"data\": {\n \"pariatur_d\": \"eiusmod commodo cillum non\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -118588,7 +118588,7 @@ } }, { - "id": "1c8703da-e0b9-421e-9c25-6aa18558c8b1", + "id": "37b2fd32-d736-4ca3-b7f7-b7345f62e38a", "name": "Patch Non-Employee Record", "request": { "name": "Patch Non-Employee Record", @@ -118642,7 +118642,7 @@ }, "response": [ { - "id": "a9278d4e-8adc-4030-9709-69effa0024a9", + "id": "ff8550e0-d174-4972-9a99-15b7826caf88", "name": "A patched non-employee record.", "originalRequest": { "url": { @@ -118694,12 +118694,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"sit\",\n \"accountName\": \"magna culpa quis laborum dolore\",\n \"firstName\": \"William\",\n \"lastName\": \"Smith\",\n \"email\": \"william.smith@example.com\",\n \"phone\": \"5555555555\",\n \"manager\": \"jane.doe\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"data\": {\n \"laborum_\": \"sed et cupidatat in\",\n \"veniam_85\": \"deserunt esse adipisicing\"\n },\n \"startDate\": \"2019-08-23T18:52:59.162Z\",\n \"endDate\": \"2020-08-23T18:52:59.162Z\",\n \"modified\": \"2019-08-23T18:52:59.162Z\",\n \"created\": \"2019-08-23T18:40:35.772Z\"\n}", + "body": "{\n \"id\": \"reprehenderit commodo anim non\",\n \"accountName\": \"consectetur\",\n \"firstName\": \"William\",\n \"lastName\": \"Smith\",\n \"email\": \"william.smith@example.com\",\n \"phone\": \"5555555555\",\n \"manager\": \"jane.doe\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"data\": {\n \"do_0\": \"aliquip pariatur velit\",\n \"aliquipc\": \"magna\"\n },\n \"startDate\": \"2019-08-23T18:52:59.162Z\",\n \"endDate\": \"2020-08-23T18:52:59.162Z\",\n \"modified\": \"2019-08-23T18:52:59.162Z\",\n \"created\": \"2019-08-23T18:40:35.772Z\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "8013d0e2-a1ae-4d54-b476-ff91538a11b5", + "id": "7bd56c1a-3ce7-4572-bfa1-6d1e70bd3b57", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -118756,7 +118756,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9e84486f-6f07-4d3a-838d-6c1ea49daf67", + "id": "e7f8b21e-9e7c-4bf1-92c5-437e89844c85", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -118813,7 +118813,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9bc3c81e-4037-41f8-92bd-a1d0d3b04171", + "id": "68672c9d-8fb3-4741-b425-6b6037bbb218", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -118870,7 +118870,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3caa3797-0411-429f-af4b-3c50f4f5854f", + "id": "aca680cb-a29f-473a-827f-8270224ccd7e", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -118927,7 +118927,7 @@ "_postman_previewlanguage": "json" }, { - "id": "82640f9d-2bd1-4dce-857b-277303e1ae70", + "id": "a3d92f48-33e7-4b3c-8363-27a08cb939f6", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -118984,7 +118984,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b8d0acd3-f81a-4137-8780-e9967df2405a", + "id": "b395d58a-519d-4405-8868-f9b2f05adcec", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -119047,7 +119047,7 @@ } }, { - "id": "b50adf17-9875-41e4-b583-154e3d76d6c5", + "id": "89b21e36-a988-4ba8-bcad-b441ca89cac9", "name": "Delete Non-Employee Record", "request": { "name": "Delete Non-Employee Record", @@ -119088,7 +119088,7 @@ }, "response": [ { - "id": "6dd50b07-9bf3-44b3-8389-a6151d4933bc", + "id": "e9ec9d96-66d4-4f42-b5ff-0ce92c34aaa1", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -119122,7 +119122,7 @@ "_postman_previewlanguage": "text" }, { - "id": "7ff04188-f4a1-482d-89c4-9ef6035f80bb", + "id": "c73ef1a3-2132-48c1-87e3-85f8727980b7", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -119166,7 +119166,7 @@ "_postman_previewlanguage": "json" }, { - "id": "86d4799d-9ef5-48a2-a6df-111beb78371c", + "id": "4588f451-2e7e-4f6d-83a5-238f86cbfd2c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -119210,7 +119210,7 @@ "_postman_previewlanguage": "json" }, { - "id": "464b46db-ad82-4de0-abd8-9ffe14d5fd95", + "id": "7ea366f8-3614-4408-b82e-c388f9bafab1", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -119254,7 +119254,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6a9e7c57-0e2f-4448-91ae-c9d8370496ae", + "id": "433c07cf-103a-43d7-a6ef-a5cc70dfbc42", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -119298,7 +119298,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c0215a77-e5c1-4cc5-be1c-3d167019b14c", + "id": "723eedc6-da73-4a0c-af87-99cc90ad58f3", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -119348,7 +119348,7 @@ } }, { - "id": "06ceb551-3e1d-4fc6-aacc-245420495399", + "id": "b209c332-94dc-489c-a8c8-f075148eb7e7", "name": "Delete Multiple Non-Employee Records", "request": { "name": "Delete Multiple Non-Employee Records", @@ -119380,7 +119380,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"ids\": [\n \"a5a45de7-578f-6dd5-5d16-451246047586\",\n \"urn:uuid:5eb5b6a5-145e-4335-9b8d-28ddf41cc2f3\"\n ]\n}", + "raw": "{\n \"ids\": [\n \"ab972003-a524-6018-af48-420d448983c2\",\n \"urn:uuid:8bd8522f-d826-4e2a-e84f-54594adb4173\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -119391,7 +119391,7 @@ }, "response": [ { - "id": "f76b16af-d668-48ff-b17d-98083b7a851e", + "id": "aefa6d0a-1274-4e2c-9665-1f5b278a643d", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -119422,7 +119422,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"ids\": [\n \"a5a45de7-578f-6dd5-5d16-451246047586\",\n \"urn:uuid:5eb5b6a5-145e-4335-9b8d-28ddf41cc2f3\"\n ]\n}", + "raw": "{\n \"ids\": [\n \"ab972003-a524-6018-af48-420d448983c2\",\n \"urn:uuid:8bd8522f-d826-4e2a-e84f-54594adb4173\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -119438,7 +119438,7 @@ "_postman_previewlanguage": "text" }, { - "id": "34ebb4b6-21ff-4587-afd9-c13732abf2f7", + "id": "cd1c6e36-3b60-4ed7-a91b-456027589a21", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -119473,7 +119473,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"ids\": [\n \"a5a45de7-578f-6dd5-5d16-451246047586\",\n \"urn:uuid:5eb5b6a5-145e-4335-9b8d-28ddf41cc2f3\"\n ]\n}", + "raw": "{\n \"ids\": [\n \"ab972003-a524-6018-af48-420d448983c2\",\n \"urn:uuid:8bd8522f-d826-4e2a-e84f-54594adb4173\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -119495,7 +119495,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f9999a37-aede-44da-9dbb-706857dd7cbc", + "id": "2e623edb-20f9-4d83-b871-8ec3f5f211fb", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -119530,7 +119530,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"ids\": [\n \"a5a45de7-578f-6dd5-5d16-451246047586\",\n \"urn:uuid:5eb5b6a5-145e-4335-9b8d-28ddf41cc2f3\"\n ]\n}", + "raw": "{\n \"ids\": [\n \"ab972003-a524-6018-af48-420d448983c2\",\n \"urn:uuid:8bd8522f-d826-4e2a-e84f-54594adb4173\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -119552,7 +119552,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b81a3e0d-b9b1-4256-884a-4f094b215979", + "id": "94f4b9bb-1c6d-4dbd-995a-40a168633496", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -119587,7 +119587,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"ids\": [\n \"a5a45de7-578f-6dd5-5d16-451246047586\",\n \"urn:uuid:5eb5b6a5-145e-4335-9b8d-28ddf41cc2f3\"\n ]\n}", + "raw": "{\n \"ids\": [\n \"ab972003-a524-6018-af48-420d448983c2\",\n \"urn:uuid:8bd8522f-d826-4e2a-e84f-54594adb4173\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -119609,7 +119609,7 @@ "_postman_previewlanguage": "json" }, { - "id": "25ba9b45-d0d0-46f8-8fd2-489573e475e1", + "id": "17966cc0-ff7c-493f-9cfa-c68ad00eb708", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -119644,7 +119644,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"ids\": [\n \"a5a45de7-578f-6dd5-5d16-451246047586\",\n \"urn:uuid:5eb5b6a5-145e-4335-9b8d-28ddf41cc2f3\"\n ]\n}", + "raw": "{\n \"ids\": [\n \"ab972003-a524-6018-af48-420d448983c2\",\n \"urn:uuid:8bd8522f-d826-4e2a-e84f-54594adb4173\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -119666,7 +119666,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4c0e0e9c-dc58-4808-88fd-44fe4c913a3e", + "id": "4b965948-2b12-44c9-9c6c-f97decf47e74", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -119701,7 +119701,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"ids\": [\n \"a5a45de7-578f-6dd5-5d16-451246047586\",\n \"urn:uuid:5eb5b6a5-145e-4335-9b8d-28ddf41cc2f3\"\n ]\n}", + "raw": "{\n \"ids\": [\n \"ab972003-a524-6018-af48-420d448983c2\",\n \"urn:uuid:8bd8522f-d826-4e2a-e84f-54594adb4173\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -119729,7 +119729,7 @@ } }, { - "id": "b2496089-7dee-4cd5-84a2-fa41e7f76a37", + "id": "80682cbb-19dc-41d0-aa6e-be02aa5994b2", "name": "Create Non-Employee Request", "request": { "name": "Create Non-Employee Request", @@ -119760,7 +119760,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"accountName\": \"william.smith\",\n \"firstName\": \"William\",\n \"lastName\": \"Smith\",\n \"email\": \"william.smith@example.com\",\n \"phone\": \"5555555555\",\n \"manager\": \"jane.doe\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"startDate\": \"2020-03-24T00:00:00-05:00\",\n \"endDate\": \"2021-03-25T00:00:00-05:00\",\n \"data\": {\n \"nostrud2\": \"voluptate dolor\",\n \"ex_b\": \"pariatur in ullamco\"\n }\n}", + "raw": "{\n \"accountName\": \"william.smith\",\n \"firstName\": \"William\",\n \"lastName\": \"Smith\",\n \"email\": \"william.smith@example.com\",\n \"phone\": \"5555555555\",\n \"manager\": \"jane.doe\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"startDate\": \"2020-03-24T00:00:00-05:00\",\n \"endDate\": \"2021-03-25T00:00:00-05:00\",\n \"data\": {\n \"pariatur_d\": \"eiusmod commodo cillum non\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -119771,7 +119771,7 @@ }, "response": [ { - "id": "3bab3f31-4cf8-4240-8e4b-dc1175df4c19", + "id": "b2ed63df-61a7-4b53-92f9-64ff21a7b7d0", "name": "Non-Employee request creation object", "originalRequest": { "url": { @@ -119805,7 +119805,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"accountName\": \"william.smith\",\n \"firstName\": \"William\",\n \"lastName\": \"Smith\",\n \"email\": \"william.smith@example.com\",\n \"phone\": \"5555555555\",\n \"manager\": \"jane.doe\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"startDate\": \"2020-03-24T00:00:00-05:00\",\n \"endDate\": \"2021-03-25T00:00:00-05:00\",\n \"data\": {\n \"nostrud2\": \"voluptate dolor\",\n \"ex_b\": \"pariatur in ullamco\"\n }\n}", + "raw": "{\n \"accountName\": \"william.smith\",\n \"firstName\": \"William\",\n \"lastName\": \"Smith\",\n \"email\": \"william.smith@example.com\",\n \"phone\": \"5555555555\",\n \"manager\": \"jane.doe\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"startDate\": \"2020-03-24T00:00:00-05:00\",\n \"endDate\": \"2021-03-25T00:00:00-05:00\",\n \"data\": {\n \"pariatur_d\": \"eiusmod commodo cillum non\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -119822,12 +119822,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\": \"5555555555\",\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 \"sint309\": \"v\",\n \"reprehenderit_9\": \"id sint mollit\",\n \"ida\": \"laborum mollit anim Lorem\",\n \"quis_b\": \"Excepteur labore do fugiat in\"\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\": \"NOT_READY\",\n \"approvalOrder\": 1,\n \"comment\": \"consectetur\",\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\": \"REJECTED\",\n \"approvalOrder\": 1,\n \"comment\": \"qui exercitation do sed\",\n \"modified\": \"2019-08-23T18:52:59.162Z\",\n \"created\": \"2019-08-23T18:40:35.772Z\"\n }\n ],\n \"approvalStatus\": \"APPROVED\",\n \"comment\": \"labore dolor fugiat veli\",\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\": \"5555555555\",\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 \"sunt_\": \"laborum\",\n \"eiusmod_e7c\": \"tempor eiusmod do sit dolore\"\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\": \"REJECTED\",\n \"approvalOrder\": 1,\n \"comment\": \"officia sunt occaecat ullamco\",\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\": \"CANCELLED\",\n \"approvalOrder\": 1,\n \"comment\": \"dolore sint dolor mollit\",\n \"modified\": \"2019-08-23T18:52:59.162Z\",\n \"created\": \"2019-08-23T18:40:35.772Z\"\n }\n ],\n \"approvalStatus\": \"APPROVED\",\n \"comment\": \"non nulla Duis\",\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": "5b7b66c7-82f3-4bf6-b886-9a8ec3c9c8a4", + "id": "8dac991c-78f6-4a35-9175-ed3ee11d843f", "name": "400.1 Bad Request Content", "originalRequest": { "url": { @@ -119861,7 +119861,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"accountName\": \"william.smith\",\n \"firstName\": \"William\",\n \"lastName\": \"Smith\",\n \"email\": \"william.smith@example.com\",\n \"phone\": \"5555555555\",\n \"manager\": \"jane.doe\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"startDate\": \"2020-03-24T00:00:00-05:00\",\n \"endDate\": \"2021-03-25T00:00:00-05:00\",\n \"data\": {\n \"nostrud2\": \"voluptate dolor\",\n \"ex_b\": \"pariatur in ullamco\"\n }\n}", + "raw": "{\n \"accountName\": \"william.smith\",\n \"firstName\": \"William\",\n \"lastName\": \"Smith\",\n \"email\": \"william.smith@example.com\",\n \"phone\": \"5555555555\",\n \"manager\": \"jane.doe\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"startDate\": \"2020-03-24T00:00:00-05:00\",\n \"endDate\": \"2021-03-25T00:00:00-05:00\",\n \"data\": {\n \"pariatur_d\": \"eiusmod commodo cillum non\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -119883,7 +119883,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5833be86-f5f9-412d-a8f5-9dee40439ef9", + "id": "f089d9aa-cb4a-467e-886d-a5dfc769bc0c", "name": "400.1.409 Reference conflict", "originalRequest": { "url": { @@ -119917,7 +119917,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"accountName\": \"william.smith\",\n \"firstName\": \"William\",\n \"lastName\": \"Smith\",\n \"email\": \"william.smith@example.com\",\n \"phone\": \"5555555555\",\n \"manager\": \"jane.doe\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"startDate\": \"2020-03-24T00:00:00-05:00\",\n \"endDate\": \"2021-03-25T00:00:00-05:00\",\n \"data\": {\n \"nostrud2\": \"voluptate dolor\",\n \"ex_b\": \"pariatur in ullamco\"\n }\n}", + "raw": "{\n \"accountName\": \"william.smith\",\n \"firstName\": \"William\",\n \"lastName\": \"Smith\",\n \"email\": \"william.smith@example.com\",\n \"phone\": \"5555555555\",\n \"manager\": \"jane.doe\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"startDate\": \"2020-03-24T00:00:00-05:00\",\n \"endDate\": \"2021-03-25T00:00:00-05:00\",\n \"data\": {\n \"pariatur_d\": \"eiusmod commodo cillum non\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -119939,7 +119939,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6c3780b6-454b-416a-b0f3-b0cb510dcf51", + "id": "e0877044-a828-4fa0-9377-7e597fb1b90b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -119973,7 +119973,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"accountName\": \"william.smith\",\n \"firstName\": \"William\",\n \"lastName\": \"Smith\",\n \"email\": \"william.smith@example.com\",\n \"phone\": \"5555555555\",\n \"manager\": \"jane.doe\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"startDate\": \"2020-03-24T00:00:00-05:00\",\n \"endDate\": \"2021-03-25T00:00:00-05:00\",\n \"data\": {\n \"nostrud2\": \"voluptate dolor\",\n \"ex_b\": \"pariatur in ullamco\"\n }\n}", + "raw": "{\n \"accountName\": \"william.smith\",\n \"firstName\": \"William\",\n \"lastName\": \"Smith\",\n \"email\": \"william.smith@example.com\",\n \"phone\": \"5555555555\",\n \"manager\": \"jane.doe\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"startDate\": \"2020-03-24T00:00:00-05:00\",\n \"endDate\": \"2021-03-25T00:00:00-05:00\",\n \"data\": {\n \"pariatur_d\": \"eiusmod commodo cillum non\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -119995,7 +119995,7 @@ "_postman_previewlanguage": "json" }, { - "id": "22a0fab9-2433-4d6b-b44d-18b3180ee20c", + "id": "b7e90ec9-fd27-4151-ae93-d010162a26c3", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -120029,7 +120029,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"accountName\": \"william.smith\",\n \"firstName\": \"William\",\n \"lastName\": \"Smith\",\n \"email\": \"william.smith@example.com\",\n \"phone\": \"5555555555\",\n \"manager\": \"jane.doe\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"startDate\": \"2020-03-24T00:00:00-05:00\",\n \"endDate\": \"2021-03-25T00:00:00-05:00\",\n \"data\": {\n \"nostrud2\": \"voluptate dolor\",\n \"ex_b\": \"pariatur in ullamco\"\n }\n}", + "raw": "{\n \"accountName\": \"william.smith\",\n \"firstName\": \"William\",\n \"lastName\": \"Smith\",\n \"email\": \"william.smith@example.com\",\n \"phone\": \"5555555555\",\n \"manager\": \"jane.doe\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"startDate\": \"2020-03-24T00:00:00-05:00\",\n \"endDate\": \"2021-03-25T00:00:00-05:00\",\n \"data\": {\n \"pariatur_d\": \"eiusmod commodo cillum non\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -120051,7 +120051,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c077be48-94a8-40bc-8a3e-48d9e31c648e", + "id": "ae0a27d8-2a26-4ed1-837c-a4405c72bd10", "name": "Too Many Requests - Returned in response to too many requests in 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 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"accountName\": \"william.smith\",\n \"firstName\": \"William\",\n \"lastName\": \"Smith\",\n \"email\": \"william.smith@example.com\",\n \"phone\": \"5555555555\",\n \"manager\": \"jane.doe\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"startDate\": \"2020-03-24T00:00:00-05:00\",\n \"endDate\": \"2021-03-25T00:00:00-05:00\",\n \"data\": {\n \"nostrud2\": \"voluptate dolor\",\n \"ex_b\": \"pariatur in ullamco\"\n }\n}", + "raw": "{\n \"accountName\": \"william.smith\",\n \"firstName\": \"William\",\n \"lastName\": \"Smith\",\n \"email\": \"william.smith@example.com\",\n \"phone\": \"5555555555\",\n \"manager\": \"jane.doe\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"startDate\": \"2020-03-24T00:00:00-05:00\",\n \"endDate\": \"2021-03-25T00:00:00-05:00\",\n \"data\": {\n \"pariatur_d\": \"eiusmod commodo cillum non\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -120107,7 +120107,7 @@ "_postman_previewlanguage": "json" }, { - "id": "50a38fd2-68ef-48b1-88ee-42f89410a1d9", + "id": "24d643df-b6bb-4070-ad09-dfe10d37992f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -120141,7 +120141,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"accountName\": \"william.smith\",\n \"firstName\": \"William\",\n \"lastName\": \"Smith\",\n \"email\": \"william.smith@example.com\",\n \"phone\": \"5555555555\",\n \"manager\": \"jane.doe\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"startDate\": \"2020-03-24T00:00:00-05:00\",\n \"endDate\": \"2021-03-25T00:00:00-05:00\",\n \"data\": {\n \"nostrud2\": \"voluptate dolor\",\n \"ex_b\": \"pariatur in ullamco\"\n }\n}", + "raw": "{\n \"accountName\": \"william.smith\",\n \"firstName\": \"William\",\n \"lastName\": \"Smith\",\n \"email\": \"william.smith@example.com\",\n \"phone\": \"5555555555\",\n \"manager\": \"jane.doe\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"startDate\": \"2020-03-24T00:00:00-05:00\",\n \"endDate\": \"2021-03-25T00:00:00-05:00\",\n \"data\": {\n \"pariatur_d\": \"eiusmod commodo cillum non\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -120169,7 +120169,7 @@ } }, { - "id": "fac8fee6-dee0-46f6-86be-af278542425f", + "id": "0e764f2e-fdad-4f56-9fbe-2ee66464358f", "name": "List Non-Employee Requests", "request": { "name": "List Non-Employee Requests", @@ -120253,7 +120253,7 @@ }, "response": [ { - "id": "6021e3f6-91c8-443d-bfe1-dfa26f107c0b", + "id": "8f670549-6e06-4038-b1d5-25e12960d7d9", "name": "List of non-employee request objects.", "originalRequest": { "url": { @@ -120346,12 +120346,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\": \"5555555555\",\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 \"do51a\": \"officia dolor ipsum minim ea\"\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\": \"CANCELLED\",\n \"approvalOrder\": 1,\n \"comment\": \"ex nisi dolor sint voluptate\",\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\": \"PENDING\",\n \"approvalOrder\": 1,\n \"comment\": \"sunt labore enim\",\n \"modified\": \"2019-08-23T18:52:59.162Z\",\n \"created\": \"2019-08-23T18:40:35.772Z\"\n }\n ],\n \"approvalStatus\": \"PENDING\",\n \"comment\": \"nostrud sed\",\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\": \"5555555555\",\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 \"laborum_a\": \"sunt consequat mollit aliquip reprehende\"\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\": \"NOT_READY\",\n \"approvalOrder\": 1,\n \"comment\": \"do Duis officia mollit\",\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\": \"CANCELLED\",\n \"approvalOrder\": 1,\n \"comment\": \"est nisi\",\n \"modified\": \"2019-08-23T18:52:59.162Z\",\n \"created\": \"2019-08-23T18:40:35.772Z\"\n }\n ],\n \"approvalStatus\": \"REJECTED\",\n \"comment\": \"elit sint aute in\",\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\": \"5555555555\",\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 \"nostrud_c8\": \"velit occaecat id ut\",\n \"ad941\": \"ip\"\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\": \"NOT_READY\",\n \"approvalOrder\": 1,\n \"comment\": \"est esse\",\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\": \"REJECTED\",\n \"approvalOrder\": 1,\n \"comment\": \"mollit Excepteur sit laboris\",\n \"modified\": \"2019-08-23T18:52:59.162Z\",\n \"created\": \"2019-08-23T18:40:35.772Z\"\n }\n ],\n \"approvalStatus\": \"CANCELLED\",\n \"comment\": \"fugiat elit\",\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\": \"5555555555\",\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 \"consecteturf1_\": \"pariatur Lorem elit consectetur\",\n \"dolore__ab\": \"adipisicing officia eu nostrud a\",\n \"est_9\": \"nisi ut sit\",\n \"sed6\": \"tempor laborum\"\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\": \"NOT_READY\",\n \"approvalOrder\": 1,\n \"comment\": \"non fugiat tempor mollit\",\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\": \"CANCELLED\",\n \"approvalOrder\": 1,\n \"comment\": \"Excepteur quis nostrud in ut\",\n \"modified\": \"2019-08-23T18:52:59.162Z\",\n \"created\": \"2019-08-23T18:40:35.772Z\"\n }\n ],\n \"approvalStatus\": \"APPROVED\",\n \"comment\": \"ex\",\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": "22d840bc-3410-442a-bf03-3668df3ab1f4", + "id": "db48f1fa-d56b-4190-813b-38d0a9f83542", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -120449,7 +120449,7 @@ "_postman_previewlanguage": "json" }, { - "id": "811e2a88-dbd6-4204-b455-78989635304f", + "id": "5689bf46-7d5e-46f4-9caf-91d828949a77", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -120547,7 +120547,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ce34736f-c318-4cff-a0f6-a33064000b33", + "id": "c98f66fd-d1d2-4cee-a449-94d25bf19bb0", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -120645,7 +120645,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4d92d971-930d-4ba5-a259-0a8380f3dec6", + "id": "88779ed1-0991-4609-b99d-a0c2c4f75ad1", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -120743,7 +120743,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ad1e651a-7f25-4943-a0e0-7c3e33480456", + "id": "f54c611f-95a4-4fd9-8af7-2d944f8d7981", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -120847,7 +120847,7 @@ } }, { - "id": "e315ceaa-723b-45c2-91f3-7b9fffb28954", + "id": "a54b6d28-2aa0-4bf3-ac56-46f50e017368", "name": "Get a Non-Employee Request", "request": { "name": "Get a Non-Employee Request", @@ -120888,7 +120888,7 @@ }, "response": [ { - "id": "80e436b5-e63f-4a89-8431-965a82eb55fe", + "id": "6a9b6719-6d6c-490b-b98e-db13a3fc2795", "name": "Non-Employee request object.", "originalRequest": { "url": { @@ -120927,12 +120927,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\": \"5555555555\",\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 \"sint309\": \"v\",\n \"reprehenderit_9\": \"id sint mollit\",\n \"ida\": \"laborum mollit anim Lorem\",\n \"quis_b\": \"Excepteur labore do fugiat in\"\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\": \"NOT_READY\",\n \"approvalOrder\": 1,\n \"comment\": \"consectetur\",\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\": \"REJECTED\",\n \"approvalOrder\": 1,\n \"comment\": \"qui exercitation do sed\",\n \"modified\": \"2019-08-23T18:52:59.162Z\",\n \"created\": \"2019-08-23T18:40:35.772Z\"\n }\n ],\n \"approvalStatus\": \"APPROVED\",\n \"comment\": \"labore dolor fugiat veli\",\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\": \"5555555555\",\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 \"sunt_\": \"laborum\",\n \"eiusmod_e7c\": \"tempor eiusmod do sit dolore\"\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\": \"REJECTED\",\n \"approvalOrder\": 1,\n \"comment\": \"officia sunt occaecat ullamco\",\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\": \"CANCELLED\",\n \"approvalOrder\": 1,\n \"comment\": \"dolore sint dolor mollit\",\n \"modified\": \"2019-08-23T18:52:59.162Z\",\n \"created\": \"2019-08-23T18:40:35.772Z\"\n }\n ],\n \"approvalStatus\": \"APPROVED\",\n \"comment\": \"non nulla Duis\",\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": "5e49668e-1aeb-4712-a0e5-86bc5c80b97d", + "id": "f05245b9-7049-4e0a-9cf9-c7492e1b1e75", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -120976,7 +120976,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fdf49596-8574-4f60-a1a3-76c00f85f5c5", + "id": "abd3c16a-1c7b-4579-ae51-8469ada00794", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -121020,7 +121020,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4ed2df29-0f8f-4193-8266-3bcf628b5bd0", + "id": "e6f36e81-3cb4-4eac-b159-9d2d50868e41", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -121064,7 +121064,7 @@ "_postman_previewlanguage": "json" }, { - "id": "27ebd51d-4ee0-4419-96c9-63fc2518c399", + "id": "01ae0926-6fc3-40bf-96ad-3673ae0bd023", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -121108,7 +121108,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ecba34de-4a0d-47c2-89d2-ed5f59ffa0fa", + "id": "aa5d2d5b-62a5-4f3a-be26-4f3367565414", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -121152,7 +121152,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d3c6536f-02b6-4d26-94e5-49e6969e6fbe", + "id": "1f400c9e-a41c-43fe-985a-aae254d9a59b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -121202,7 +121202,7 @@ } }, { - "id": "167905e9-603c-4f4d-992b-37d49ddddbc3", + "id": "a48175ba-8b7c-4dfa-9e87-00e8729871e5", "name": "Delete Non-Employee Request", "request": { "name": "Delete Non-Employee Request", @@ -121243,7 +121243,7 @@ }, "response": [ { - "id": "174e1d5e-d3eb-4a52-8ac0-b72295bafdc4", + "id": "74ff9b73-562d-4221-96b3-04a7a580a6cc", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -121277,7 +121277,7 @@ "_postman_previewlanguage": "text" }, { - "id": "9cead7c7-9256-4710-9964-7cfc00da3683", + "id": "82f25fca-c954-4d1c-a787-cd11b2375aac", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -121321,7 +121321,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7133c452-b1b7-4718-b768-9f722e265625", + "id": "32631772-fd33-4e9a-aaf0-eb3262e0afa0", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -121365,7 +121365,7 @@ "_postman_previewlanguage": "json" }, { - "id": "01618075-64fe-4509-ae4a-289be94c97a1", + "id": "138569b4-8d55-46e1-ab48-1729b956a1a3", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -121409,7 +121409,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0fd847c8-daf3-4139-9d52-7446f6d2c54b", + "id": "94aee8b1-c9c4-4f45-917c-d1c78b85ac26", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -121453,7 +121453,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3b323fd4-5d85-4eca-9c4f-1a723d4e46d5", + "id": "7296e3b1-fd11-4a8f-9538-3fc4ee533b19", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -121497,7 +121497,7 @@ "_postman_previewlanguage": "json" }, { - "id": "764a7ad8-6d9f-4611-9b53-f062aa84c541", + "id": "b02f76cc-fd17-4d17-8239-9268305ca35a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -121547,7 +121547,7 @@ } }, { - "id": "7bb7186c-390e-487f-af6a-88d3002be415", + "id": "aa502211-22d5-4177-b0ed-85eddf8dd36b", "name": "Get Summary of Non-Employee Requests", "request": { "name": "Get Summary of Non-Employee Requests", @@ -121589,7 +121589,7 @@ }, "response": [ { - "id": "356f22e3-187b-41ad-9f14-cb9e796a2fb8", + "id": "c07cc480-3f86-4c5d-8916-34def8dacba5", "name": "Non-Employee request summary object.", "originalRequest": { "url": { @@ -121629,12 +121629,12 @@ "value": "application/json" } ], - "body": "{\n \"approved\": 9353893.561342642,\n \"rejected\": -66168266.598908246,\n \"pending\": 6111228.375439823,\n \"nonEmployeeCount\": -96587441.12332349\n}", + "body": "{\n \"approved\": -88949881.10678738,\n \"rejected\": -20828554.174776718,\n \"pending\": -35422253.63866755,\n \"nonEmployeeCount\": -93411262.9016731\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "516c0ebe-f247-443c-b0c5-61b2eeb7541e", + "id": "ac03c016-aa63-4807-ab6f-fa815f58e389", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -121679,7 +121679,7 @@ "_postman_previewlanguage": "json" }, { - "id": "08700a41-58ea-41f6-aa93-2e0077330733", + "id": "8ea87476-ded0-4bb2-80a7-82fab7aa35a5", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -121724,7 +121724,7 @@ "_postman_previewlanguage": "json" }, { - "id": "84932aec-3231-4879-b02d-acc12200d5e8", + "id": "8feca6d4-0414-4ec5-94b8-20ce8d69d348", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -121769,7 +121769,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9cb0d6af-3a62-4979-b828-9e77c012367c", + "id": "c8a59136-cdcc-4da5-a49b-678f24b5bb87", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -121814,7 +121814,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d0b6f301-6d89-4864-b002-213f3f577b85", + "id": "db4f85aa-61a7-4f9a-b920-fbe7ab30d1f8", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -121865,7 +121865,7 @@ } }, { - "id": "8adb1dd4-4a22-4399-a585-e757200f39af", + "id": "261d17fa-b51d-4f9b-848f-741dcc26bfe9", "name": "Create Non-Employee Source", "request": { "name": "Create Non-Employee Source", @@ -121907,7 +121907,7 @@ }, "response": [ { - "id": "5dd91166-a584-4a57-a874-fa9b747f65ed", + "id": "421f1c35-171b-4645-856d-8cd6021544fc", "name": "Created non-employee source.", "originalRequest": { "url": { @@ -121963,7 +121963,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8b9f664d-c48a-47e3-b9ec-e142998a0971", + "id": "af001555-4cb0-4c03-a4c3-c5c4590195a2", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -122019,7 +122019,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b62e79a4-532a-4980-b89c-282bdff310f7", + "id": "9951951d-86e4-4026-a575-b7de2c98f427", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -122075,7 +122075,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1bd33702-9a59-4e8c-8334-1c8d7edd5476", + "id": "f407416d-d7d3-488f-8ec9-5907dd122150", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -122131,7 +122131,7 @@ "_postman_previewlanguage": "json" }, { - "id": "07580777-640a-41d9-8052-872eeec3061d", + "id": "e045ed0a-76fe-45b5-8cf4-e6134fcb8093", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -122187,7 +122187,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e5e877cc-d42e-48b0-bec2-b4978a5e4cd3", + "id": "d65da1df-f500-4c4f-8db0-abf8798a5d57", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -122249,7 +122249,7 @@ } }, { - "id": "e2913861-06de-4ec3-ad9d-f87a1bf427ff", + "id": "0a734884-109c-40b1-a9f0-0d4e87fa58c3", "name": "List Non-Employee Sources", "request": { "name": "List Non-Employee Sources", @@ -122333,7 +122333,7 @@ }, "response": [ { - "id": "b71db01b-4d95-49a4-ae96-11818c5cb8d8", + "id": "3af3d833-f5c1-44e6-8bb6-a1feb3427fa1", "name": "List of non-employee sources objects.", "originalRequest": { "url": { @@ -122431,7 +122431,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a2aa708b-b15e-4a0b-bcb9-1a959978eec9", + "id": "af6ed101-61dc-43ee-af35-374009198f14", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -122529,7 +122529,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9cf30c56-85d2-46ef-9320-f67801fae5fe", + "id": "8c7e33d0-0108-47ce-a79f-2313c404c862", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -122627,7 +122627,7 @@ "_postman_previewlanguage": "json" }, { - "id": "45457f5b-8682-4f37-a6df-de88d7066277", + "id": "d5979b12-62d5-4322-827f-13922ffe693e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -122725,7 +122725,7 @@ "_postman_previewlanguage": "json" }, { - "id": "969f695b-fa86-4103-9e0c-9245d330913f", + "id": "1d7503dd-b2a5-4c34-9f47-6dd431584243", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -122823,7 +122823,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f46f8870-9f37-430a-bc27-194ad6ee1c78", + "id": "ce197b11-448f-4edb-b34f-db30361e68be", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -122927,7 +122927,7 @@ } }, { - "id": "1ff005ee-e89b-4dba-94ee-38705baaff88", + "id": "8fd0478c-e71c-4f71-b2e7-99cefc005447", "name": "Get a Non-Employee Source", "request": { "name": "Get a Non-Employee Source", @@ -122968,7 +122968,7 @@ }, "response": [ { - "id": "5551f3b7-dc0b-43bc-98ed-6c85138c68d7", + "id": "a0e3ad14-34be-4159-82ed-4818eaedece5", "name": "Non-Employee source object.", "originalRequest": { "url": { @@ -123012,7 +123012,7 @@ "_postman_previewlanguage": "json" }, { - "id": "86939749-868a-4c64-9764-765de82a80a7", + "id": "a6ad0bfd-3fc5-408e-8972-9e4c8ff7d208", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -123056,7 +123056,7 @@ "_postman_previewlanguage": "json" }, { - "id": "432a32a0-788c-4e89-91cc-af02da6732d0", + "id": "07cfc9ac-cd3f-44eb-b862-18cedf49683b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -123100,7 +123100,7 @@ "_postman_previewlanguage": "json" }, { - "id": "581789d3-aeb9-414c-8f1c-86e6f575d26b", + "id": "0ee8642f-962a-42bc-b02d-dd58fe891448", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -123144,7 +123144,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5ea82cea-cdc1-4b51-b095-26c7df665aec", + "id": "88e1ba3e-0336-49b7-a594-ff5fde70d224", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -123188,7 +123188,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a95ded5a-48eb-4074-978f-8474a3acacc5", + "id": "d1fe65e8-4363-49f7-bdaa-bf6798941a7c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -123238,7 +123238,7 @@ } }, { - "id": "4822c3ef-c5dd-4506-9925-cd0aa5df6ca8", + "id": "f51888d2-9888-44c4-97cd-a63dc739e3cb", "name": "Patch a Non-Employee Source", "request": { "name": "Patch a Non-Employee Source", @@ -123292,7 +123292,7 @@ }, "response": [ { - "id": "2976ce5a-7282-4fa0-878f-faca50b2a846", + "id": "8cea32fa-b33f-4d5a-87a8-069f14bd2eb9", "name": "A patched non-employee source object.", "originalRequest": { "url": { @@ -123349,7 +123349,7 @@ "_postman_previewlanguage": "json" }, { - "id": "75c4055f-4066-42cd-bfc1-05d4d11e6050", + "id": "324a5f08-6305-4e01-a6f6-ac7876f1178a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -123406,7 +123406,7 @@ "_postman_previewlanguage": "json" }, { - "id": "efbf9c0c-b115-498e-848d-c3755d855e37", + "id": "621aaff0-7e4d-419b-b99b-a4c2bb308596", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -123463,7 +123463,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d3033f04-a8ae-47bb-82c5-d7f6b7b9f118", + "id": "488a83c7-3135-4d72-98dd-9ce9bf085dc1", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -123520,7 +123520,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1a995c7e-775b-4dc9-9fb9-490685604af5", + "id": "be25fd5b-21fc-4c22-9140-76413f31ba77", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -123577,7 +123577,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bfb3b2d6-2ce5-44da-a0ce-2ce6ea33cd35", + "id": "4b2a0f65-11b9-42da-9ddd-969fb054faf1", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -123640,7 +123640,7 @@ } }, { - "id": "b5d1f437-8752-45eb-b3a9-b2d67baaaa87", + "id": "297c281d-4854-4352-b242-8a9f84aaee2a", "name": "Delete Non-Employee Source", "request": { "name": "Delete Non-Employee Source", @@ -123681,7 +123681,7 @@ }, "response": [ { - "id": "1f8cb12f-692b-48a9-bae5-fcd7ac74db64", + "id": "36709948-5fbf-421f-899f-ebf44aa02314", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -123715,7 +123715,7 @@ "_postman_previewlanguage": "text" }, { - "id": "4fa595c0-cf15-4edf-a6e6-64a4966ebe0c", + "id": "8982fe53-281e-45ca-b4c5-c3b407badf21", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -123759,7 +123759,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8e0ff38b-095d-46aa-ae36-33eb08761b7e", + "id": "bf0f5996-0507-4e81-bd83-84f5b889bd06", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -123803,7 +123803,7 @@ "_postman_previewlanguage": "json" }, { - "id": "44d52348-bbd3-4daa-b4c1-6d05c5aa7987", + "id": "4cda2044-fff1-4529-b5d6-5d4a830179e7", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -123847,7 +123847,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bedaa942-1720-4fca-98ac-546f060d7323", + "id": "b3d2f93c-787e-488e-882d-68e2c4d3f297", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -123891,7 +123891,7 @@ "_postman_previewlanguage": "json" }, { - "id": "47dd19f7-eeed-4641-bf49-a54771575db5", + "id": "61278a8e-9229-48a5-bde8-556527532abd", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -123941,7 +123941,7 @@ } }, { - "id": "15fb7c82-ef13-4498-97e1-1f1bfe759fb7", + "id": "546a9dad-3433-4b18-bcce-d2d306d61f8f", "name": "Exports Non-Employee Records to CSV", "request": { "name": "Exports Non-Employee Records to CSV", @@ -123984,7 +123984,7 @@ }, "response": [ { - "id": "a9a8d412-514b-411a-8ffc-e94012cef084", + "id": "37e03774-7327-494b-9087-1dd7b165f5d8", "name": "Exported CSV", "originalRequest": { "url": { @@ -124030,7 +124030,7 @@ "_postman_previewlanguage": "text" }, { - "id": "3affed51-667b-40f0-b735-0f3319174612", + "id": "23dba27d-bb10-40cb-b057-8b52d1b94db7", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -124076,7 +124076,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d2332456-83a2-4494-ab92-8c91fff4909a", + "id": "151d703b-fc17-41ed-bc43-4309af0532d2", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -124122,7 +124122,7 @@ "_postman_previewlanguage": "json" }, { - "id": "423c0e56-b62a-40bc-aeca-11e1a092b73c", + "id": "aefa84a6-2eba-4c9a-8d2b-08636b939b16", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -124168,7 +124168,7 @@ "_postman_previewlanguage": "json" }, { - "id": "629d59fd-9544-4f27-9db6-b066a9d67caf", + "id": "002ae5fb-448e-4060-8056-1e686c379281", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -124214,7 +124214,7 @@ "_postman_previewlanguage": "json" }, { - "id": "847efbb0-6c27-484b-ba24-3e132ff28373", + "id": "496a551e-eb32-40e2-b803-30bbd6664691", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -124260,7 +124260,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b78f3883-2b42-4251-8995-fa3b6cfc279a", + "id": "53c18846-91a8-4fe9-a699-3be24e8142c9", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -124312,7 +124312,7 @@ } }, { - "id": "18479fca-0686-424b-8bf4-c8743fca2b94", + "id": "4db21871-c110-484d-8be7-887ced1c4865", "name": "Imports, or Updates, Non-Employee Records", "request": { "name": "Imports, or Updates, Non-Employee Records", @@ -124363,7 +124363,7 @@ "type": "text/plain" }, "key": "data", - "value": "pariatur qui ullamco Duis", + "value": "des", "type": "text" } ] @@ -124371,7 +124371,7 @@ }, "response": [ { - "id": "d7eab251-0a5a-444b-a4f4-644650213a0e", + "id": "d8f8e5db-17e5-4aa8-b7ab-e1960a6fb48c", "name": "The CSV was accepted to be bulk inserted now or at a later time.", "originalRequest": { "url": { @@ -124414,7 +124414,7 @@ "type": "text/plain" }, "key": "data", - "value": "pariatur qui ullamco Duis", + "value": "des", "type": "text" } ] @@ -124433,7 +124433,7 @@ "_postman_previewlanguage": "json" }, { - "id": "77fb05be-13e5-43a3-a5ea-30759f275631", + "id": "99df09f8-419c-44c5-82ec-8dde105df516", "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": { @@ -124476,7 +124476,7 @@ "type": "text/plain" }, "key": "data", - "value": "pariatur qui ullamco Duis", + "value": "des", "type": "text" } ] @@ -124495,7 +124495,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e49b249a-d536-430a-97fc-24274cbb8658", + "id": "8a3ad419-81a1-43ce-a87b-5ccd99ecffbb", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -124538,7 +124538,7 @@ "type": "text/plain" }, "key": "data", - "value": "pariatur qui ullamco Duis", + "value": "des", "type": "text" } ] @@ -124557,7 +124557,7 @@ "_postman_previewlanguage": "json" }, { - "id": "43287521-dc25-453b-836c-6b8594d8533f", + "id": "3f18de0c-3a9a-4f6e-9294-6662e6572d8f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -124600,7 +124600,7 @@ "type": "text/plain" }, "key": "data", - "value": "pariatur qui ullamco Duis", + "value": "des", "type": "text" } ] @@ -124619,7 +124619,7 @@ "_postman_previewlanguage": "json" }, { - "id": "91a7a088-de20-4992-92cd-92268bffbb00", + "id": "0fb2b0ee-eea9-451d-bbd9-ff3361998e0b", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -124662,7 +124662,7 @@ "type": "text/plain" }, "key": "data", - "value": "pariatur qui ullamco Duis", + "value": "des", "type": "text" } ] @@ -124681,7 +124681,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8d79fbbc-444e-44d3-84cd-4ed6fc32cf43", + "id": "1eeb5d3f-e26f-48b6-b782-8a6566258bfc", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -124724,7 +124724,7 @@ "type": "text/plain" }, "key": "data", - "value": "pariatur qui ullamco Duis", + "value": "des", "type": "text" } ] @@ -124743,7 +124743,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e0cdc075-4d6e-4724-afc9-1314e36ad8c8", + "id": "508ec0e9-5c1a-4f1f-8d54-ae31e72c975d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -124786,7 +124786,7 @@ "type": "text/plain" }, "key": "data", - "value": "pariatur qui ullamco Duis", + "value": "des", "type": "text" } ] @@ -124811,7 +124811,7 @@ } }, { - "id": "eee71e8c-f1b5-4448-92fa-e2f4ada9a9d8", + "id": "5a9b2ba1-b902-40e2-8247-535251c7bf01", "name": "Bulk upload status on source", "request": { "name": "Bulk upload status on source", @@ -124854,7 +124854,7 @@ }, "response": [ { - "id": "fca538b7-465a-42dd-9700-055c7b241162", + "id": "5f4364de-5bd9-4e63-866e-f5562f00a775", "name": "Status of the newest bulk-upload job, if any.", "originalRequest": { "url": { @@ -124900,7 +124900,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f09e916e-3d32-4e95-9884-b35ded32282a", + "id": "bfc821fb-d0ee-4157-8915-68ce075ecb94", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -124946,7 +124946,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bcee744f-a033-45e4-a7b9-97e7e496a67b", + "id": "823da3a3-dc7d-4cd9-8867-4cc1c9d68a3a", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -124992,7 +124992,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0186e6e1-2cd6-4717-8f27-c2d8b9d351d6", + "id": "272b6db0-c639-4c19-a808-2d41d404a29b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -125038,7 +125038,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6e604cee-1359-44d0-b700-a18ea48b6777", + "id": "985994c5-9261-4e5f-a310-603b69345f35", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -125084,7 +125084,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e2a34c38-115a-48f0-b40f-d8d7d6e798a6", + "id": "41b93d65-6142-4221-a2db-dd75a909202c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -125136,7 +125136,7 @@ } }, { - "id": "a46331b1-9f9a-4cef-8fd4-72be96bf4242", + "id": "ddaebf83-f966-43fc-ad3d-af942fc1eae9", "name": "Exports Source Schema Template", "request": { "name": "Exports Source Schema Template", @@ -125179,7 +125179,7 @@ }, "response": [ { - "id": "e8a65dfc-1329-4050-9e2b-b94025b88bdc", + "id": "c24d57d0-013a-486e-999d-179c10fe334a", "name": "Exported Source Schema Template", "originalRequest": { "url": { @@ -125225,7 +125225,7 @@ "_postman_previewlanguage": "text" }, { - "id": "7b0b556f-6d70-4ba3-ab1c-1090debc703b", + "id": "60389549-4775-42df-8dd9-146d564116bd", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -125271,7 +125271,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0b80ff3a-f8d4-4c06-b2f6-26f44c3e7ef3", + "id": "37973223-1e01-4695-917d-2fbd8c023f1b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -125317,7 +125317,7 @@ "_postman_previewlanguage": "json" }, { - "id": "42da92fa-7ea1-4ebf-b6de-25154a084533", + "id": "4d6ce714-6a6e-44cf-8806-46820793e70a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -125363,7 +125363,7 @@ "_postman_previewlanguage": "json" }, { - "id": "276ded8c-d809-45a9-854f-987ebc7e9f20", + "id": "eb91f451-51bd-4777-a266-2450e2681a7a", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -125409,7 +125409,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bb96b4b0-2b9d-4aed-b3dd-9962d92954a2", + "id": "e19bb505-614b-427b-b483-473d02646e69", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -125455,7 +125455,7 @@ "_postman_previewlanguage": "json" }, { - "id": "523444dd-fd71-4ab9-a05c-0d916c9df8ae", + "id": "06404779-f105-43e8-89f5-77f5e5241fdf", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -125507,7 +125507,7 @@ } }, { - "id": "fc42e378-283d-4ff8-82b7-8045824a2465", + "id": "561e002a-edde-4ae5-ab7c-e47e1e182cf0", "name": "Get List of Non-Employee Approval Requests", "request": { "name": "Get List of Non-Employee Approval Requests", @@ -125591,7 +125591,7 @@ }, "response": [ { - "id": "9525ade7-f4d1-4063-a686-7c6c4769c732", + "id": "cc6612a9-7600-4865-b766-856d329ce0eb", "name": "List of approval items.", "originalRequest": { "url": { @@ -125684,12 +125684,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\": \"CANCELLED\",\n \"approvalOrder\": 1,\n \"comment\": \"Lorem\",\n \"modified\": \"2019-08-23T18:52:59.162Z\",\n \"created\": \"2019-08-23T18:40:35.772Z\",\n \"nonEmployeeRequest\": {\n \"id\": \"irure aliquip \",\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\": \"PENDING\",\n \"approvalOrder\": 1,\n \"comment\": \"elit Lorem est\",\n \"modified\": \"2019-08-23T18:52:59.162Z\",\n \"created\": \"2019-08-23T18:40:35.772Z\",\n \"nonEmployeeRequest\": {\n \"id\": \"ullamco\",\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\": \"ea est aute\",\n \"modified\": \"2019-08-23T18:52:59.162Z\",\n \"created\": \"2019-08-23T18:40:35.772Z\",\n \"nonEmployeeRequest\": {\n \"id\": \"anim in ut velit consectetur\",\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\": \"PENDING\",\n \"approvalOrder\": 1,\n \"comment\": \"dolore nostrud dolore\",\n \"modified\": \"2019-08-23T18:52:59.162Z\",\n \"created\": \"2019-08-23T18:40:35.772Z\",\n \"nonEmployeeRequest\": {\n \"id\": \"Lorem occaecat sed dolore\",\n \"requester\": {\n \"type\": \"IDENTITY\",\n \"name\": \"William Smith\"\n }\n }\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b80617fe-8fb7-4b8d-bd91-b6b4d23ab93a", + "id": "8e48ee25-68b4-4d19-b3ba-ebc58ac28362", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -125787,7 +125787,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e710549f-7515-4995-bdb0-63891c6860d7", + "id": "7b5a27e4-29e1-4eaa-9110-c5f22f1c9f8f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -125885,7 +125885,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c404609b-7ce3-4ef1-94d2-0b7676420278", + "id": "1764a3ba-f18a-4ca9-ab05-d70bba47de3a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -125983,7 +125983,7 @@ "_postman_previewlanguage": "json" }, { - "id": "91733188-bec1-448d-a7eb-ec6c47f0bca9", + "id": "a7e68299-14cf-457e-9d3b-968544b18bd6", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -126081,7 +126081,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4912a310-c11f-43d7-aac3-42c4bc5d9a0f", + "id": "f758c497-a6ab-4345-9437-87982797a80b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -126185,7 +126185,7 @@ } }, { - "id": "dc73c946-a20c-46bf-b379-18fb23c89f4b", + "id": "3d16875c-4e4f-47b9-b05f-1ff27d78bc8f", "name": "Get a non-employee approval item detail", "request": { "name": "Get a non-employee approval item detail", @@ -126236,7 +126236,7 @@ }, "response": [ { - "id": "9e8e31f2-bf7c-4e95-b1cc-8b08d5956b04", + "id": "f498d9da-9484-40df-b0bb-f625976478dd", "name": "Non-Employee approval item object.", "originalRequest": { "url": { @@ -126285,12 +126285,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\": \"PENDING\",\n \"approvalOrder\": 1,\n \"comment\": \"aute commodo consectetur irure\",\n \"modified\": \"2019-08-23T18:52:59.162Z\",\n \"created\": \"2019-08-23T18:40:35.772Z\",\n \"nonEmployeeRequest\": {\n \"id\": \"dolor veniam occaecat\",\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\": \"5555555555\",\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\": \"DATE\",\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\": \"IDENTITY\",\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 \"consecteturb1\": \"qui in reprehenderit\"\n },\n \"approvalStatus\": \"PENDING\",\n \"comment\": \"sunt\",\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\": \"CANCELLED\",\n \"approvalOrder\": 1,\n \"comment\": \"id nulla consectetur aliquip\",\n \"modified\": \"2019-08-23T18:52:59.162Z\",\n \"created\": \"2019-08-23T18:40:35.772Z\",\n \"nonEmployeeRequest\": {\n \"id\": \"nulla cupidatat dolore L\",\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\": \"5555555555\",\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\": \"IDENTITY\",\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 \"utf9\": \"con\",\n \"minim_5\": \"labore non ad irure do\",\n \"Lorem_d_1\": \"quis ex nostrud ad\"\n },\n \"approvalStatus\": \"REJECTED\",\n \"comment\": \"dolore in incididunt officia\",\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": "f02660aa-1d3a-46a6-99e7-f5e5bd9581cb", + "id": "1bdb0012-994f-41bf-947c-5dcf4e70e3af", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -126344,7 +126344,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f2867ef2-0fde-4166-9b09-8597bd7c183b", + "id": "94c456ad-ad93-4609-b0d8-e6d01e7732cf", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -126398,7 +126398,7 @@ "_postman_previewlanguage": "json" }, { - "id": "efb10b38-2754-4cc1-a08a-23b52b01904d", + "id": "b8ceb651-d539-4c26-b552-20304cdbc586", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -126452,7 +126452,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ab00c2d0-d67a-48e7-981a-b34c7f9a0550", + "id": "50cc76a5-8b20-494c-bfd5-599f249866d8", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -126506,7 +126506,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e5419f09-1d1d-4d90-9c31-baa01329dd07", + "id": "d6c477d0-06a4-4691-8cb6-b572aca841a9", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -126566,7 +126566,7 @@ } }, { - "id": "836526db-0b84-454f-a147-74ec5d450490", + "id": "41d4b592-5bbf-4ace-bf03-1b463867f4c5", "name": "Approve a Non-Employee Request", "request": { "name": "Approve a Non-Employee Request", @@ -126587,7 +126587,7 @@ "variable": [ { "type": "any", - "value": "labore", + "value": "laborum qui aliquip irure", "key": "id", "disabled": true, "description": { @@ -126610,7 +126610,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"comment\": \"voluptate laboris pariatur elit\"\n}", + "raw": "{\n \"comment\": \"officia\"\n}", "options": { "raw": { "headerFamily": "json", @@ -126621,7 +126621,7 @@ }, "response": [ { - "id": "5379dd66-2dde-449d-a7ea-a33c8058aca8", + "id": "daa57e48-8e4b-4324-bb55-674310bf6714", "name": "Non-Employee approval item object.", "originalRequest": { "url": { @@ -126657,7 +126657,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"comment\": \"voluptate laboris pariatur elit\"\n}", + "raw": "{\n \"comment\": \"officia\"\n}", "options": { "raw": { "headerFamily": "json", @@ -126674,12 +126674,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\": \"PENDING\",\n \"approvalOrder\": 1,\n \"comment\": \"Lorem nisi\",\n \"modified\": \"2019-08-23T18:52:59.162Z\",\n \"created\": \"2019-08-23T18:40:35.772Z\",\n \"nonEmployeeRequest\": {\n \"id\": \"occaecat cupidatat minim laborum Duis\",\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\": \"PENDING\",\n \"approvalOrder\": 1,\n \"comment\": \"est sed nulla in\",\n \"modified\": \"2019-08-23T18:52:59.162Z\",\n \"created\": \"2019-08-23T18:40:35.772Z\",\n \"nonEmployeeRequest\": {\n \"id\": \"laborum pariatur nisi\",\n \"requester\": {\n \"type\": \"IDENTITY\",\n \"name\": \"William Smith\"\n }\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e5783fed-149e-4f76-9c96-406bf393418d", + "id": "b0682043-83c0-4956-a737-7f841848537b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -126715,7 +126715,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"comment\": \"voluptate laboris pariatur elit\"\n}", + "raw": "{\n \"comment\": \"officia\"\n}", "options": { "raw": { "headerFamily": "json", @@ -126737,7 +126737,7 @@ "_postman_previewlanguage": "json" }, { - "id": "187360b6-4d5c-4ea0-9b79-a6e2334a9f02", + "id": "c3e0fab9-558c-47e1-aecb-cb702030f1c4", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -126773,7 +126773,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"comment\": \"voluptate laboris pariatur elit\"\n}", + "raw": "{\n \"comment\": \"officia\"\n}", "options": { "raw": { "headerFamily": "json", @@ -126795,7 +126795,7 @@ "_postman_previewlanguage": "json" }, { - "id": "19a38656-f55d-4c29-8cb5-f4998c18c8b0", + "id": "5b641405-dcf8-42cb-8c31-1527d41f4359", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -126831,7 +126831,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"comment\": \"voluptate laboris pariatur elit\"\n}", + "raw": "{\n \"comment\": \"officia\"\n}", "options": { "raw": { "headerFamily": "json", @@ -126853,7 +126853,7 @@ "_postman_previewlanguage": "json" }, { - "id": "295be46f-b94d-40a7-90bd-7b0f232a77a5", + "id": "6fa5a737-1e05-4c6a-99d1-b0db08c48556", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -126889,7 +126889,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"comment\": \"voluptate laboris pariatur elit\"\n}", + "raw": "{\n \"comment\": \"officia\"\n}", "options": { "raw": { "headerFamily": "json", @@ -126911,7 +126911,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7c784caa-6f68-4fc6-9a71-56621d09cddf", + "id": "d1fac4a9-ad46-4e49-8558-11437bfb482f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -126947,7 +126947,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"comment\": \"voluptate laboris pariatur elit\"\n}", + "raw": "{\n \"comment\": \"officia\"\n}", "options": { "raw": { "headerFamily": "json", @@ -126975,7 +126975,7 @@ } }, { - "id": "3c6d6548-e953-46e8-a03f-a649e06f7632", + "id": "339a7dae-5dbc-4ea9-b18c-5a063c8043fa", "name": "Reject a Non-Employee Request", "request": { "name": "Reject a Non-Employee Request", @@ -126996,7 +126996,7 @@ "variable": [ { "type": "any", - "value": "labore", + "value": "laborum qui aliquip irure", "key": "id", "disabled": true, "description": { @@ -127019,7 +127019,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"comment\": \"sint occaecat\"\n}", + "raw": "{\n \"comment\": \"esse enim\"\n}", "options": { "raw": { "headerFamily": "json", @@ -127030,7 +127030,7 @@ }, "response": [ { - "id": "dcedf58f-0d0a-498d-92bc-765bfa3731c1", + "id": "19edefc3-dbc2-47d1-8ecc-f21f29719751", "name": "Non-Employee approval item object.", "originalRequest": { "url": { @@ -127066,7 +127066,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"comment\": \"sint occaecat\"\n}", + "raw": "{\n \"comment\": \"esse enim\"\n}", "options": { "raw": { "headerFamily": "json", @@ -127083,12 +127083,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\": \"PENDING\",\n \"approvalOrder\": 1,\n \"comment\": \"Lorem nisi\",\n \"modified\": \"2019-08-23T18:52:59.162Z\",\n \"created\": \"2019-08-23T18:40:35.772Z\",\n \"nonEmployeeRequest\": {\n \"id\": \"occaecat cupidatat minim laborum Duis\",\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\": \"PENDING\",\n \"approvalOrder\": 1,\n \"comment\": \"est sed nulla in\",\n \"modified\": \"2019-08-23T18:52:59.162Z\",\n \"created\": \"2019-08-23T18:40:35.772Z\",\n \"nonEmployeeRequest\": {\n \"id\": \"laborum pariatur nisi\",\n \"requester\": {\n \"type\": \"IDENTITY\",\n \"name\": \"William Smith\"\n }\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "201a6b33-10a7-428b-a6c4-15e42b8d82cb", + "id": "b13f194e-0a9a-4afc-8ff2-bcc26778e946", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -127124,7 +127124,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"comment\": \"sint occaecat\"\n}", + "raw": "{\n \"comment\": \"esse enim\"\n}", "options": { "raw": { "headerFamily": "json", @@ -127146,7 +127146,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b73da37f-7677-4806-97ea-53ae59c2f6c0", + "id": "70af33d1-5fb1-4cc5-92e9-e6bf2bffbac9", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -127182,7 +127182,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"comment\": \"sint occaecat\"\n}", + "raw": "{\n \"comment\": \"esse enim\"\n}", "options": { "raw": { "headerFamily": "json", @@ -127204,7 +127204,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2fb9a7b1-1622-4071-9c01-9a422feaee24", + "id": "2ee16499-745c-45d5-acf9-085b14a230d9", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -127240,7 +127240,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"comment\": \"sint occaecat\"\n}", + "raw": "{\n \"comment\": \"esse enim\"\n}", "options": { "raw": { "headerFamily": "json", @@ -127262,7 +127262,7 @@ "_postman_previewlanguage": "json" }, { - "id": "152bbdc7-2e6a-4cf8-85de-14e2ae761d84", + "id": "5396cb99-c850-4bef-a4ce-75e70da314cc", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -127298,7 +127298,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"comment\": \"sint occaecat\"\n}", + "raw": "{\n \"comment\": \"esse enim\"\n}", "options": { "raw": { "headerFamily": "json", @@ -127320,7 +127320,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c0ee37fb-68a4-49b8-98a6-305b238cdff7", + "id": "3727fb91-1e4d-4a7b-ad91-4d25debb3a7a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -127356,7 +127356,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"comment\": \"sint occaecat\"\n}", + "raw": "{\n \"comment\": \"esse enim\"\n}", "options": { "raw": { "headerFamily": "json", @@ -127384,7 +127384,7 @@ } }, { - "id": "82759a23-18c9-4da4-958a-6857dd5e161c", + "id": "3be6e3c0-c748-49cb-9333-bce2a47fce9c", "name": "Get Summary of Non-Employee Approval Requests", "request": { "name": "Get Summary of Non-Employee Approval Requests", @@ -127426,7 +127426,7 @@ }, "response": [ { - "id": "a73bbb5f-16fd-44e6-80bb-d69f764dc302", + "id": "58fa8470-59b0-4402-92c3-3ef4a5bfb9c7", "name": "summary of non-employee approval requests", "originalRequest": { "url": { @@ -127466,12 +127466,12 @@ "value": "application/json" } ], - "body": "{\n \"approved\": -9420056.730546072,\n \"pending\": 8993644.144542038,\n \"rejected\": -26812086.25609708\n}", + "body": "{\n \"approved\": -55242704.74879551,\n \"pending\": -90290940.54282308,\n \"rejected\": 52452378.628793985\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "2301c696-8c38-4a99-ae31-78bf1edecf0f", + "id": "93eb1a32-108d-4874-977b-26291734cade", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -127516,7 +127516,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6d802e88-7a06-419f-8d8f-b84baa540057", + "id": "86126e72-2f0a-41a5-8e4a-1633169c67a5", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -127561,7 +127561,7 @@ "_postman_previewlanguage": "json" }, { - "id": "94453f41-4858-464a-a323-8508fbb9808a", + "id": "d0f9fff5-b680-4497-910d-f50ae808ceac", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -127606,7 +127606,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f33c1c97-1b97-46f5-9614-7acfa539ff05", + "id": "c2807103-86fd-48ad-a5d6-126ada39fc89", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -127651,7 +127651,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3dcdc685-ca49-4d64-80d4-091b7fb7eafa", + "id": "6de25796-3bb0-4ed5-9cce-e9261d5780cb", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -127702,7 +127702,7 @@ } }, { - "id": "502df2be-65b6-4120-b4a8-eb3cce144502", + "id": "8c1ed3e3-033c-4045-9b25-5727553c6356", "name": "List Schema Attributes Non-Employee Source", "request": { "name": "List Schema Attributes Non-Employee Source", @@ -127744,7 +127744,7 @@ }, "response": [ { - "id": "cb422035-ee61-4304-9e13-476b1f39ea45", + "id": "ab7837c0-5d9e-4d08-8205-dc70008713c0", "name": "A list of Schema Attributes", "originalRequest": { "url": { @@ -127789,7 +127789,7 @@ "_postman_previewlanguage": "json" }, { - "id": "edde051e-1d13-4251-95ae-e5abe4b4b93b", + "id": "7512b5e2-e29e-4d24-a7cd-cc9aadc29bab", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -127834,7 +127834,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bfefb598-6519-487a-82fa-8662301bbdc9", + "id": "f76c17c3-dae9-47ed-8119-0ced1e6adec4", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -127879,7 +127879,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0e6924fd-f410-4f1e-8819-10ba94aee039", + "id": "437cb524-b6c7-4009-9053-92ae356dfc07", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -127924,7 +127924,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0b4a7699-a474-4c8d-afee-ee959335b31d", + "id": "444711a2-7c62-4031-8fc5-0735952d8d34", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -127969,7 +127969,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e3d5f618-1c5e-43d3-95aa-ac2a99fa9bc4", + "id": "06068515-c5e8-4145-940f-7b0e65f99602", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -128014,7 +128014,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b6bb047f-61a7-4dec-ae5a-5300e49547a9", + "id": "77399e8e-a3fb-4c4d-b266-f55c00807350", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -128065,7 +128065,7 @@ } }, { - "id": "f43023be-2ea6-4fec-be21-a4ca07c96b90", + "id": "342af58e-6337-4097-9f1c-6d480ec18772", "name": "Create Non-Employee Source Schema Attribute", "request": { "name": "Create Non-Employee Source Schema Attribute", @@ -128120,7 +128120,7 @@ }, "response": [ { - "id": "b3b61f24-014c-4c82-9ac6-12a9eddacf7d", + "id": "f5403349-7fce-455f-8602-a64cc2d881c0", "name": "Schema Attribute created.", "originalRequest": { "url": { @@ -128173,12 +128173,12 @@ "value": "application/json" } ], - "body": "{\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}", + "body": "{\n \"type\": \"IDENTITY\",\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}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "561082da-7e0f-41a4-b6a5-7e8af7fe4a7a", + "id": "7ac27b7f-eeb4-4e29-88ef-451e8b858c2a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -128236,7 +128236,7 @@ "_postman_previewlanguage": "json" }, { - "id": "42a0f0e6-e209-4380-9c42-70000d9fbf32", + "id": "e35cbade-5cdf-401e-a2a7-2a7d2c861b91", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -128294,7 +128294,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ee000c2f-415f-4f9d-88cf-8c7bd9808b2c", + "id": "328b579b-4ffe-48c8-87ba-125875af2ef6", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -128352,7 +128352,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a7636cd5-cb8d-4b03-8f11-0b7d0aeded55", + "id": "28543b56-c239-4923-ae2a-8fbbdbbc5070", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -128410,7 +128410,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9d12a4bd-ae87-42be-8432-e959b9892992", + "id": "059c0412-fe83-4213-aeba-31683b2fe2e4", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -128474,7 +128474,7 @@ } }, { - "id": "ae1a1614-b87f-43b2-8bb5-9760c1998602", + "id": "fbb4298d-c908-4e5e-87e0-48fbd495e2a2", "name": "Delete all custom schema attributes", "request": { "name": "Delete all custom schema attributes", @@ -128516,7 +128516,7 @@ }, "response": [ { - "id": "675c7dfd-3fda-4c72-a934-ccc2f1b189db", + "id": "c700264e-e51a-44e6-9f92-0949891c51f0", "name": "All custon Schema Attributes were successfully deleted.", "originalRequest": { "url": { @@ -128551,7 +128551,7 @@ "_postman_previewlanguage": "text" }, { - "id": "b813367e-57c2-4629-b9e8-8d66bb02cdd5", + "id": "534e0a26-40df-46c0-b622-198996086422", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -128596,7 +128596,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3d618692-cb16-419e-93ef-491ed5d3c740", + "id": "bf294fd3-e6f8-4de1-8e55-fb822b8a1410", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -128641,7 +128641,7 @@ "_postman_previewlanguage": "json" }, { - "id": "885a6a1b-1f2f-4480-9429-e60af7d59558", + "id": "026945a0-7507-4f96-ae9c-41abc2771c7b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -128686,7 +128686,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1a66c11f-c15f-4145-8df7-33bd0fe7ccbb", + "id": "a9ddc38d-805d-494f-9fed-a341604caf7e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -128731,7 +128731,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6fd5f9b8-5a22-49e3-ba0f-2074f025f42a", + "id": "1fad3e02-5b8e-4ad0-9242-e664d1554921", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -128782,7 +128782,7 @@ } }, { - "id": "f534f84a-db7a-4786-a1b4-9d35547bcaf8", + "id": "870f0be9-f5f8-4cc3-bcc4-41174657bcd7", "name": "Get Schema Attribute Non-Employee Source", "request": { "name": "Get Schema Attribute Non-Employee Source", @@ -128835,7 +128835,7 @@ }, "response": [ { - "id": "558fd200-07ab-4d33-8385-ac250abd97bc", + "id": "2cc92d68-83e4-4e18-adac-52b12effb174", "name": "The Schema Attribute", "originalRequest": { "url": { @@ -128881,7 +128881,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2514f23b-8c44-4ff5-8ba4-47ebe71c729b", + "id": "5d4b6b69-b405-443f-8de8-9416997b4293", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -128927,7 +128927,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a541fc4b-15d1-4d7e-a8d9-10fdf18410a1", + "id": "ca0afa81-dfc2-4318-9a6c-cc9721e9a4fb", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -128973,7 +128973,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4ab213e1-a735-4500-8b05-f84c7b6770cf", + "id": "0f3745ae-2c34-4bbc-9d97-df0c41c163fb", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -129019,7 +129019,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d08a6815-59d3-4bcc-9d34-ad3af412cdb0", + "id": "892b2e51-caf0-4c87-9365-f408fb618e4d", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -129065,7 +129065,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0f789d55-164a-4a55-b43f-66361c08d033", + "id": "3b837186-1911-4c07-97dc-316614ff76e5", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -129117,7 +129117,7 @@ } }, { - "id": "be7bdffc-3ac0-4895-bf4a-80e1da24f9fd", + "id": "cfbd9358-6a23-414d-8086-fe55ebd41982", "name": "Patch Non-Employee Source's Schema Attribute", "request": { "name": "Patch Non-Employee Source's Schema Attribute", @@ -129183,7 +129183,7 @@ }, "response": [ { - "id": "9c1d3699-531f-46da-9981-8bfbfd55584b", + "id": "b28b27c0-47bd-4545-bb81-892c673b4778", "name": "The Schema Attribute was successfully patched.", "originalRequest": { "url": { @@ -129237,12 +129237,12 @@ "value": "application/json" } ], - "body": "{\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}", + "body": "{\n \"type\": \"IDENTITY\",\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}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "27ebb426-5b0a-4543-921a-71040d80509e", + "id": "605e1846-2933-4e4f-a368-e50dcefeeee7", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -129301,7 +129301,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f746ba86-f00f-4582-bec8-d5da25c7a08a", + "id": "cae4608e-9fa3-49df-ac9c-3462c32f4935", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -129360,7 +129360,7 @@ "_postman_previewlanguage": "json" }, { - "id": "78817d8c-2870-4a62-8847-7fd9eb276c15", + "id": "86688556-fe25-4404-9c2b-9f7bf092fe94", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -129419,7 +129419,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2c84cd99-f441-4553-9155-58123b56ff88", + "id": "e02d584f-44ca-4b96-bb8b-3804cbadd871", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -129478,7 +129478,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d3e02373-8bca-4b31-894a-c7d2a4b34d66", + "id": "dc5967bb-289d-42a2-8171-5a188850d475", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -129537,7 +129537,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e04b3ebe-3bcc-486f-a582-0e6424483185", + "id": "0b8a0628-c996-4338-a2aa-eeb10cfa1540", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -129602,7 +129602,7 @@ } }, { - "id": "f9b99928-3287-4147-aae8-26dac6bac85a", + "id": "3ec002ee-f544-4534-bf44-856a5345f72f", "name": "Delete Non-Employee Source's Schema Attribute", "request": { "name": "Delete Non-Employee Source's Schema Attribute", @@ -129655,7 +129655,7 @@ }, "response": [ { - "id": "a366739b-4c31-4f32-8b7f-359253cbf486", + "id": "68925259-6f2f-45de-937c-97929410c1d1", "name": "The Schema Attribute was successfully deleted.", "originalRequest": { "url": { @@ -129691,7 +129691,7 @@ "_postman_previewlanguage": "text" }, { - "id": "f6655c84-10e4-4329-8457-afbf918a853f", + "id": "268023ae-3364-4484-a082-817adc40fc64", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -129737,7 +129737,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7688b0d4-55e0-4f17-80fb-cba193d26015", + "id": "80b8ee0c-07d5-40e3-83a6-1e4254ab5f52", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -129783,7 +129783,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8ba5173e-ef60-4241-a273-76bc6d20421d", + "id": "8a4a71c3-6f2c-402d-a3f7-c882265bf46e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -129829,7 +129829,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5b297a71-7c99-4606-ba0c-433b7ac65de9", + "id": "46760a26-8423-42f6-9b2f-57c0de8fd62b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -129875,7 +129875,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5e49bee7-2bb1-42c3-8b9e-cdc35ef70388", + "id": "bef9533e-64e2-4432-8436-66f9c5c1689d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -129933,7 +129933,7 @@ "description": "", "item": [ { - "id": "e35a80bf-b70e-4f82-a837-d617bc7a319f", + "id": "8d9df74a-cb43-4cf1-b012-21a06845ce43", "name": "Change MAIL FROM domain", "request": { "name": "Change MAIL FROM domain", @@ -129975,7 +129975,7 @@ }, "response": [ { - "id": "d3481941-ace0-4344-b1b0-16c89b8e8c53", + "id": "84a6a37f-064c-4f5b-bdea-a12d370ac22d", "name": "MAIL FROM Attributes required to verify the change", "originalRequest": { "url": { @@ -130031,7 +130031,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ff062f19-38dc-4691-9ade-4c456e448694", + "id": "ad943257-dc74-48f3-92ae-7edd40372499", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -130087,7 +130087,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cc446667-841e-44bd-bed6-840125a09ab0", + "id": "4296addf-33a5-4efb-9092-c2891d493c96", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -130143,7 +130143,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cfbd7378-b2c3-46f0-ba63-9d8c908066bf", + "id": "1614bfb7-ae7d-4335-b911-19ad425d37a6", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -130199,7 +130199,7 @@ "_postman_previewlanguage": "json" }, { - "id": "46b4d11d-0a1f-4564-ad4b-d7a2f39ac8df", + "id": "a4bb5b14-53d0-4eb7-8757-8d0ea79d43f8", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -130255,7 +130255,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4927ff74-80ee-41cc-bb83-86f9aeb15da1", + "id": "4acc33ae-f1b1-48f3-b88d-f13dc3c5c486", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -130317,7 +130317,7 @@ } }, { - "id": "873879cf-28e7-4f69-9718-edf114d3e18c", + "id": "e76c8933-d692-44b3-b3c3-438e022c9570", "name": "Get MAIL FROM Attributes", "request": { "name": "Get MAIL FROM Attributes", @@ -130362,7 +130362,7 @@ }, "response": [ { - "id": "bf27f691-c760-403c-bc0a-5671e25144a6", + "id": "3bdd89fc-1a69-4d7b-a0f8-7d0f1fba54fa", "name": "MAIL FROM Attributes object", "originalRequest": { "url": { @@ -130416,7 +130416,7 @@ "_postman_previewlanguage": "json" }, { - "id": "551230b7-5056-4a7a-88e4-9d9f960f18ff", + "id": "92bec9c2-1dd1-4c77-a9b7-29320a672f19", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -130470,7 +130470,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3a7d1133-b79d-43e7-80c6-32dfe972390f", + "id": "db4f2cb4-0d0b-477b-bf24-f0330c49d5e0", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -130524,7 +130524,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6fd88106-560f-4254-992a-cf99c802db5a", + "id": "c0d988ad-02fb-40d3-8a18-386608829047", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -130578,7 +130578,7 @@ "_postman_previewlanguage": "json" }, { - "id": "763b6173-f8ec-4d7c-974c-fae70a755629", + "id": "29902704-634e-41b0-aa91-68cdfff94dcd", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -130632,7 +130632,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b496a9c5-60f0-4414-bd35-0dc7793dd0b9", + "id": "12729266-8df5-4a87-b803-cc13e3de9e11", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -130692,7 +130692,7 @@ } }, { - "id": "7949ad97-d69f-400a-bc96-ccad415b4183", + "id": "a2052b8a-6665-4486-8322-d88b156cde39", "name": "List Notification Template Defaults", "request": { "name": "List Notification Template Defaults", @@ -130749,7 +130749,7 @@ }, "response": [ { - "id": "b6f8bd99-bc46-42ea-84a6-143905ff0baf", + "id": "83441eeb-b710-4667-915d-804b085ddf29", "name": "A list of the default template objects", "originalRequest": { "url": { @@ -130815,12 +130815,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\": \"in tempor magna\",\n \"text\": \"adipisicing tempor dolor est\",\n \"blocks\": \"officia est ullamco fugiat\",\n \"attachments\": \"ad minim\",\n \"notificationType\": \"consectetur\",\n \"approvalId\": \"ipsum consectetur dolor exercitation\",\n \"requestId\": \"sed incididunt occaecat cu\",\n \"requestedById\": \"do\",\n \"isSubscription\": true,\n \"autoApprovalData\": {\n \"isAutoApproved\": \"pariatur \",\n \"itemId\": \"veniam reprehenderit non anim u\",\n \"itemType\": \"deserunt veniam\",\n \"autoApprovalMessageJSON\": \"aute in qui\",\n \"autoApprovalTitle\": \"pariatur Ut non aliqua\"\n },\n \"customFields\": {\n \"requestType\": \"laboris\",\n \"containsDeny\": \"dese\",\n \"campaignId\": \"cillum eu\",\n \"campaignStatus\": \"aliquip dolor deserunt Duis\"\n }\n },\n \"teamsTemplate\": {\n \"key\": \"consequat Lorem\",\n \"title\": \"elit sunt ipsum commodo\",\n \"text\": \"cillum\",\n \"messageJSON\": \"cillum\",\n \"isSubscription\": true,\n \"approvalId\": \"et Lorem irure\",\n \"requestId\": \"esse\",\n \"requestedById\": \"incididunt dolor\",\n \"notificationType\": \"pariatur Lorem sint\",\n \"autoApprovalData\": {\n \"isAutoApproved\": \"nulla in ut est\",\n \"itemId\": \"nisi ullamco\",\n \"itemType\": \"ex amet proident velit\",\n \"autoApprovalMessageJSON\": \"reprehenderit qui\",\n \"autoApprovalTitle\": \"et\"\n },\n \"customFields\": {\n \"requestType\": \"cillum veniam\",\n \"containsDeny\": \"amet laborum\",\n \"campaignId\": \"qui cillum nisi ex\",\n \"campaignStatus\": \"occaecat\"\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 commodo\",\n \"text\": \"sed\",\n \"blocks\": \"sed velit ullamco mollit exercitation\",\n \"attachments\": \"aliqua aute aliquip\",\n \"notificationType\": \"enim in\",\n \"approvalId\": \"proident eiusmod\",\n \"requestId\": \"culpa dolore nisi Lorem labore\",\n \"requestedById\": \"amet\",\n \"isSubscription\": true,\n \"autoApprovalData\": {\n \"isAutoApproved\": \"proident labore velit\",\n \"itemId\": \"mollit consequat\",\n \"itemType\": \"exercitation labore officia do\",\n \"autoApprovalMessageJSON\": \"tempor L\",\n \"autoApprovalTitle\": \"esse voluptate anim enim\"\n },\n \"customFields\": {\n \"requestType\": \"in aliquip magna amet consectetur\",\n \"containsDeny\": \"ut exercitation\",\n \"campaignId\": \"nulla laboris\",\n \"campaignStatus\": \"amet aute\"\n }\n },\n \"teamsTemplate\": {\n \"key\": \"esse dolor Excepteur in\",\n \"title\": \"ullamco voluptate laboris nostrud laborum\",\n \"text\": \"ex incididunt\",\n \"messageJSON\": \"sint\",\n \"isSubscription\": true,\n \"approvalId\": \"nisi f\",\n \"requestId\": \"voluptate\",\n \"requestedById\": \"anim dolore in dolore\",\n \"notificationType\": \"Ut commodo ipsum adipisicing\",\n \"autoApprovalData\": {\n \"isAutoApproved\": \"voluptate aliquip dolore consectetur\",\n \"itemId\": \"voluptate proident\",\n \"itemType\": \"occaecat irure\",\n \"autoApprovalMessageJSON\": \"anim occaecat mollit\",\n \"autoApprovalTitle\": \"consectetur consequat\"\n },\n \"customFields\": {\n \"requestType\": \"ut sit eiusmod\",\n \"containsDeny\": \"tempor occaecat id\",\n \"campaignId\": \"esse in quis\",\n \"campaignStatus\": \"veniam et\"\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\": \"occaecat ut dolore elit\",\n \"text\": \"et\",\n \"blocks\": \"irure in\",\n \"attachments\": \"sed quis minim deserunt\",\n \"notificationType\": \"amet sint nisi enim\",\n \"approvalId\": \"voluptate dolor consequat amet labore\",\n \"requestId\": \"officia qui veniam voluptate do\",\n \"requestedById\": \"ipsum amet\",\n \"isSubscription\": false,\n \"autoApprovalData\": {\n \"isAutoApproved\": \"elit qui do\",\n \"itemId\": \"deserunt in veniam laboris dolore\",\n \"itemType\": \"irure cupidatat\",\n \"autoApprovalMessageJSON\": \"enim deseru\",\n \"autoApprovalTitle\": \"adipisicing velit\"\n },\n \"customFields\": {\n \"requestType\": \"do qui ullamco et\",\n \"containsDeny\": \"sed in ad mol\",\n \"campaignId\": \"mollit\",\n \"campaignStatus\": \"commodo irure consectetur veniam\"\n }\n },\n \"teamsTemplate\": {\n \"key\": \"ex fugiat in ipsum\",\n \"title\": \"dolore\",\n \"text\": \"officia adipisicing in aliquip\",\n \"messageJSON\": \"quis irure laborum\",\n \"isSubscription\": false,\n \"approvalId\": \"exercitation aliquip consequat nisi\",\n \"requestId\": \"Ut anim sed\",\n \"requestedById\": \"mollit non officia sed consectetur\",\n \"notificationType\": \"sed ut consectetur laborum\",\n \"autoApprovalData\": {\n \"isAutoApproved\": \"officia anim adipisicing sit\",\n \"itemId\": \"Lorem amet\",\n \"itemType\": \"officia\",\n \"autoApprovalMessageJSON\": \"ad dolore anim officia ut\",\n \"autoApprovalTitle\": \"pariatur officia voluptate ut ad\"\n },\n \"customFields\": {\n \"requestType\": \"veniam qui esse enim\",\n \"containsDeny\": \"incididunt ipsum\",\n \"campaignId\": \"Excepteur\",\n \"campaignStatus\": \"dolore magna\"\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\": \"et adipisicing consectetur cupidatat nisi\",\n \"text\": \"est eu\",\n \"blocks\": \"sit sunt\",\n \"attachments\": \"tempor reprehenderit\",\n \"notificationType\": \"aliqua consectetur\",\n \"approvalId\": \"nisi eu aute\",\n \"requestId\": \"exercitation dolore quis ut\",\n \"requestedById\": \"sint dolore mollit fugiat\",\n \"isSubscription\": true,\n \"autoApprovalData\": {\n \"isAutoApproved\": \"incididunt quis Lorem\",\n \"itemId\": \"exercitation\",\n \"itemType\": \"eiusmod dolor quis fugiat dolor\",\n \"autoApprovalMessageJSON\": \"ullamco commodo\",\n \"autoApprovalTitle\": \"U\"\n },\n \"customFields\": {\n \"requestType\": \"proident ullamco eiusmod laborum\",\n \"containsDeny\": \"in et minim\",\n \"campaignId\": \"exercitation consectetur nostrud velit\",\n \"campaignStatus\": \"mollit\"\n }\n },\n \"teamsTemplate\": {\n \"key\": \"cupidatat\",\n \"title\": \"aute\",\n \"text\": \"commodo\",\n \"messageJSON\": \"Ut non\",\n \"isSubscription\": false,\n \"approvalId\": \"irure ea ullamco\",\n \"requestId\": \"ut culpa cillum\",\n \"requestedById\": \"culpa nostrud nulla\",\n \"notificationType\": \"qui elit\",\n \"autoApprovalData\": {\n \"isAutoApproved\": \"aliqua Duis do\",\n \"itemId\": \"in aliquip non\",\n \"itemType\": \"in nulla\",\n \"autoApprovalMessageJSON\": \"do nisi\",\n \"autoApprovalTitle\": \"in ut eiusmod\"\n },\n \"customFields\": {\n \"requestType\": \"sed irure am\",\n \"containsDeny\": \"mollit\",\n \"campaignId\": \"aute reprehenderit nostrud\",\n \"campaignStatus\": \"eu cupidatat labore sit amet\"\n }\n }\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "36b855c3-1335-4da1-a2d0-cd2a13173281", + "id": "909022ca-15f3-4b37-af76-50813522b7bf", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -130891,7 +130891,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c0ee93cb-4dfa-4f08-8f16-ff903d361996", + "id": "8a311104-4ff1-4c8d-91d4-0ed39ce60e3b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -130962,7 +130962,7 @@ "_postman_previewlanguage": "json" }, { - "id": "969118fe-46d1-47ef-a71e-adadbcfbbe21", + "id": "69fdefae-f4f1-44ce-8c59-992a647075b2", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -131033,7 +131033,7 @@ "_postman_previewlanguage": "json" }, { - "id": "da3c067d-fa27-450c-9e63-13e027a40a12", + "id": "91e8e7a3-367e-4846-bd1c-aa3009946fd5", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -131104,7 +131104,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eda6b795-8e86-4c85-ae56-5aea3c952810", + "id": "d6eb8bdf-6b7a-4c9a-a23f-e16940e39118", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -131181,7 +131181,7 @@ } }, { - "id": "2013180b-ea92-4523-8bfb-dd2ec341d9b2", + "id": "39e1615d-100f-475c-b65a-c693abd199b5", "name": "List Notification Templates", "request": { "name": "List Notification Templates", @@ -131238,7 +131238,7 @@ }, "response": [ { - "id": "105cfab3-6572-42d3-90a5-7d3a295e81cd", + "id": "3cef440e-df69-4f53-b911-64ccddeab814", "name": "A list of template objects for your site", "originalRequest": { "url": { @@ -131304,12 +131304,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\": \"in deserunt ut nostrud enim\",\n \"teamsTemplate\": \"veniam dolore dolor incididunt\"\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\": \"mollit \",\n \"teamsTemplate\": \"dolore proident\"\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\": \"ipsum ut Lorem nisi\",\n \"teamsTemplate\": \"voluptate veniam quis\"\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\": \"pariatur irure ea\",\n \"teamsTemplate\": \"esse Ut sunt\"\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "2ee98200-5a37-484d-babc-c8006513c8f7", + "id": "a05d0452-1d64-4f85-806f-74e07f71fd9a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -131380,7 +131380,7 @@ "_postman_previewlanguage": "json" }, { - "id": "49aa7fdb-176b-469c-82ea-803b0f8fda85", + "id": "ac9bdf1a-695d-42d9-ab7e-dba4a4caf5a8", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -131451,7 +131451,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ad6fb98a-7c4b-4e16-a4da-a55d007ba429", + "id": "5d1f84e9-522a-4719-a9a3-3eaa5fa3cb09", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -131522,7 +131522,7 @@ "_postman_previewlanguage": "json" }, { - "id": "67a277d4-70e8-4570-91a5-674cb19643b5", + "id": "1607ae99-3aba-4bef-a773-1babdcf8c282", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -131593,7 +131593,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0e2dd719-59ec-427b-b0f9-fd7fc0c6a179", + "id": "f7fe2900-be1f-4607-b737-25a557282fa0", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -131670,7 +131670,7 @@ } }, { - "id": "c866da9d-ecd1-4865-ade9-8231e41d3e22", + "id": "735e191b-8a70-4f37-8351-b1d02ca4fe2c", "name": "Create Notification Template", "request": { "name": "Create Notification Template", @@ -131701,7 +131701,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\": \"ut ex velit eiusmod sint\",\n \"teamsTemplate\": \"proident anim\"\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\": \"culpa Duis elit occaecat\",\n \"teamsTemplate\": \"labore\"\n}", "options": { "raw": { "headerFamily": "json", @@ -131712,7 +131712,7 @@ }, "response": [ { - "id": "c71d1e34-3825-4524-a534-21284723d76e", + "id": "578acff6-62de-419a-b7e2-cabc37afb28c", "name": "A template object for your site", "originalRequest": { "url": { @@ -131746,7 +131746,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\": \"ut ex velit eiusmod sint\",\n \"teamsTemplate\": \"proident anim\"\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\": \"culpa Duis elit occaecat\",\n \"teamsTemplate\": \"labore\"\n}", "options": { "raw": { "headerFamily": "json", @@ -131763,12 +131763,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\": \"ut ex velit eiusmod sint\",\n \"teamsTemplate\": \"proident anim\"\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\": \"culpa Duis elit occaecat\",\n \"teamsTemplate\": \"labore\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "89be4cef-f8f0-4fb0-824b-aab04a71e48b", + "id": "f348fef0-b159-4d40-87d1-9dded3935baa", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -131802,7 +131802,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\": \"ut ex velit eiusmod sint\",\n \"teamsTemplate\": \"proident anim\"\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\": \"culpa Duis elit occaecat\",\n \"teamsTemplate\": \"labore\"\n}", "options": { "raw": { "headerFamily": "json", @@ -131824,7 +131824,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3dd96030-b0b4-44ae-a391-4b8d79680ef6", + "id": "dcc57e71-bad1-459f-b9b9-44dffc0432df", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -131858,7 +131858,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\": \"ut ex velit eiusmod sint\",\n \"teamsTemplate\": \"proident anim\"\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\": \"culpa Duis elit occaecat\",\n \"teamsTemplate\": \"labore\"\n}", "options": { "raw": { "headerFamily": "json", @@ -131880,7 +131880,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4c2ecb36-e3d1-4a01-b907-4f6c62518128", + "id": "e04eabaa-059a-4da7-88a3-518fd56f0b48", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -131914,7 +131914,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\": \"ut ex velit eiusmod sint\",\n \"teamsTemplate\": \"proident anim\"\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\": \"culpa Duis elit occaecat\",\n \"teamsTemplate\": \"labore\"\n}", "options": { "raw": { "headerFamily": "json", @@ -131936,7 +131936,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3230b1b0-9385-4ec7-8161-5136ec7f920e", + "id": "5a9c4c29-e392-4b90-81b5-50cac196ba92", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -131970,7 +131970,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\": \"ut ex velit eiusmod sint\",\n \"teamsTemplate\": \"proident anim\"\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\": \"culpa Duis elit occaecat\",\n \"teamsTemplate\": \"labore\"\n}", "options": { "raw": { "headerFamily": "json", @@ -131992,7 +131992,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fcc50865-fc77-4c85-b325-29244e5324c9", + "id": "9a7f172a-2458-4bcd-841e-ea7ad05f5877", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -132026,7 +132026,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\": \"ut ex velit eiusmod sint\",\n \"teamsTemplate\": \"proident anim\"\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\": \"culpa Duis elit occaecat\",\n \"teamsTemplate\": \"labore\"\n}", "options": { "raw": { "headerFamily": "json", @@ -132054,7 +132054,7 @@ } }, { - "id": "afa7f223-098b-452a-ad44-703a9c25648b", + "id": "4384bb14-4e04-4d99-9b96-f57fce77138c", "name": "Get Notification Template By Id", "request": { "name": "Get Notification Template By Id", @@ -132095,7 +132095,7 @@ }, "response": [ { - "id": "44e4299f-5387-4d44-bd77-8bb7dff905ed", + "id": "0504a097-a338-4f20-a17b-bb0486917fb7", "name": "A template object for your site", "originalRequest": { "url": { @@ -132134,12 +132134,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\": \"in deserunt ut nostrud enim\",\n \"teamsTemplate\": \"veniam dolore dolor incididunt\"\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\": \"mollit \",\n \"teamsTemplate\": \"dolore proident\"\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\": \"ipsum ut Lorem nisi\",\n \"teamsTemplate\": \"voluptate veniam quis\"\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\": \"pariatur irure ea\",\n \"teamsTemplate\": \"esse Ut sunt\"\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "3ca4b5cb-3428-4d91-afb6-34dfebcb3dba", + "id": "eba29a75-1dcd-4007-87bb-a791bf866d03", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -132183,7 +132183,7 @@ "_postman_previewlanguage": "json" }, { - "id": "28278ffd-93aa-4a0d-b118-cff0bf912f0d", + "id": "7e240e0c-0988-4281-91d5-ba6564fe5741", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -132227,7 +132227,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d8f4d73d-fa66-4b14-b986-894a939f0848", + "id": "23da12dd-b4c5-4f3a-9d67-448f43a030ed", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -132271,7 +132271,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ee703e11-e994-4b77-ba24-c683f038c02f", + "id": "d4f13942-0ff7-4151-a3f4-2389fe248768", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -132315,7 +132315,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2b2aba04-8a11-4892-ba1c-6dfaf36e746a", + "id": "d44aef15-58ab-4794-ae79-defc6c41bd4f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -132365,7 +132365,7 @@ } }, { - "id": "b7679a55-3c7c-45d2-9901-cc6891a83035", + "id": "8a764c1f-fc19-4047-ad13-88c47333f62d", "name": "Bulk Delete Notification Templates", "request": { "name": "Bulk Delete Notification Templates", @@ -132408,7 +132408,7 @@ }, "response": [ { - "id": "7a0f30dd-8196-4789-8ade-025efde6aaf5", + "id": "c72c7472-d4a9-4b2c-8b2f-e27702b61f8c", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -132455,7 +132455,7 @@ "_postman_previewlanguage": "text" }, { - "id": "c0442b0d-f663-42a8-8eea-fd3f0dd349de", + "id": "080db95b-e51e-4573-8b99-9b8907191291", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -132512,7 +132512,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5905fb2e-acd9-4ae4-a416-6153bdd261ae", + "id": "87211e1a-5154-42ce-a5e4-302a150a8fb3", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -132569,7 +132569,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0375ddde-cfbc-476f-bb80-139ffa960bd0", + "id": "d3b70225-9a7b-4685-9cba-9b95bb886fa8", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -132626,7 +132626,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fabba9eb-0b7b-4c5b-98a8-d0437dbf7c79", + "id": "16fec637-3ee7-4837-8a31-e71d3e35ac39", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -132683,7 +132683,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4440daac-a8c2-4046-9013-ab13822c328a", + "id": "610c89a4-736a-40ec-a70b-862d25994994", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -132746,7 +132746,7 @@ } }, { - "id": "a95f8e24-f521-4dd7-8a0b-a4fe2a73d234", + "id": "01f5e026-c70e-4397-845a-21d6c0879669", "name": "Get Notification Template Context", "request": { "name": "Get Notification Template Context", @@ -132775,7 +132775,7 @@ }, "response": [ { - "id": "42e907a2-f610-4a0d-966e-e1a737714d25", + "id": "d55a53c3-9d51-42ff-b664-1ff28e361b94", "name": "Notification template context attributes for a specific tenant.", "originalRequest": { "url": { @@ -132818,7 +132818,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7c10020c-c071-468a-8d8f-eb1053d0a2f4", + "id": "e3109e17-eab1-42d9-9d68-d30e5dc247e0", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -132861,7 +132861,7 @@ "_postman_previewlanguage": "json" }, { - "id": "889ce9d6-c2fe-4d95-b1c6-4108da793536", + "id": "5a05fb2d-4fcf-4e7d-85cd-be7e00c054f4", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -132904,7 +132904,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fbfb5347-6ab6-44f3-9889-e1db0c5ce711", + "id": "8fdd76de-589e-403c-a94b-96af097e1920", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -132947,7 +132947,7 @@ "_postman_previewlanguage": "json" }, { - "id": "663ea680-4da9-4ea0-9a52-0100794d0bd0", + "id": "05408bbf-4b8b-49a2-8b44-9de8fc62227b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -132990,7 +132990,7 @@ "_postman_previewlanguage": "json" }, { - "id": "232f0034-a19d-4adc-8325-c17244821f7d", + "id": "b97c7952-6318-4834-9b09-fa853d575d50", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -133039,7 +133039,7 @@ } }, { - "id": "93e9c652-ffd9-4bcf-9d6d-947f2e7de1f6", + "id": "bbdb9853-dcc4-466e-b2d4-fc8ecdfd4369", "name": "List Notification Preferences for tenant.", "request": { "name": "List Notification Preferences for tenant.", @@ -133074,7 +133074,7 @@ }, "response": [ { - "id": "d7274a54-534d-4a4e-866f-3afd777a7acb", + "id": "57daae44-198b-4d2d-bd34-eb0569031277", "name": "Return preference for the given notification key.", "originalRequest": { "url": { @@ -133118,7 +133118,7 @@ "_postman_previewlanguage": "json" }, { - "id": "774bc546-cccf-4731-9644-c0f85b8ffae3", + "id": "fac58942-1717-462f-a89f-b46dcd6d142c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -133162,7 +133162,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ed836e31-2556-4078-a8e4-d046e74ae022", + "id": "e0fc6e5b-8e0a-4f7a-a145-505acb0d7124", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -133206,7 +133206,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e34f97ba-d9a6-428e-b9ae-5948a010b7d9", + "id": "e39ca887-31ca-4b73-820a-f27817d394fd", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -133250,7 +133250,7 @@ "_postman_previewlanguage": "json" }, { - "id": "04c37518-60ba-4dcb-9f31-1e65d5c2b2bc", + "id": "eeb63648-4e82-49c0-b0e9-6d1940bfadfa", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -133294,7 +133294,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b3c1a947-0732-4ada-a811-959039e46d0d", + "id": "f15ed06f-4b39-409b-b0f9-52a81c8737d8", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -133338,7 +133338,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0a6f42ae-1315-452c-8279-a47bc6e89836", + "id": "aa1e7822-41d0-4a81-9bb5-03fec31d6575", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -133388,7 +133388,7 @@ } }, { - "id": "7b108b1e-139d-491a-922b-2a50dee6ac2f", + "id": "341a5a30-8030-4d6a-aa28-c5f82b729c31", "name": "Send Test Notification", "request": { "name": "Send Test Notification", @@ -133430,7 +133430,7 @@ }, "response": [ { - "id": "2000dc43-8579-4606-8d4d-bc399b70af78", + "id": "c5846564-4e26-43b3-b67d-edf151c2ac9f", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -133476,7 +133476,7 @@ "_postman_previewlanguage": "text" }, { - "id": "87488d32-b79a-4e6f-b4a1-a917039c3abc", + "id": "944f3331-7f84-404e-9c67-5a999b2406e0", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -133532,7 +133532,7 @@ "_postman_previewlanguage": "json" }, { - "id": "df395ada-2e02-4cd6-9f86-49fc64128302", + "id": "638366f1-c02b-47db-9db9-c51b16e02725", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -133588,7 +133588,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1c68a6e3-fd29-4696-914a-3d6a95e303c5", + "id": "55fc58a0-9a4a-41f1-9adf-6ebb68abec0f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -133644,7 +133644,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1879652b-f27a-49a1-bd15-848ac3adc298", + "id": "3570d5a7-b2df-45d9-8c1a-a01e00b09496", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -133700,7 +133700,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fbdb06aa-428d-4976-bca8-594f555aa98d", + "id": "7dc080c7-28c2-4bfd-bd58-9faf43f19cbf", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -133756,7 +133756,7 @@ "_postman_previewlanguage": "json" }, { - "id": "068ffc2c-0dd2-4018-85fe-c44214f3f488", + "id": "39785029-1659-4954-b2a5-ae11eb498e92", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -133818,7 +133818,7 @@ } }, { - "id": "d44a1013-1f37-4cc7-81fc-8029ef10a8b5", + "id": "188f4209-5657-41dc-ac49-7e40a941cbd2", "name": "List From Addresses", "request": { "name": "List From Addresses", @@ -133893,7 +133893,7 @@ }, "response": [ { - "id": "8aaaaa28-e6b3-43e6-9d7a-0dd91e482fd1", + "id": "00b5998d-a090-43b8-af59-c95fb26ebc76", "name": "List of Email Status", "originalRequest": { "url": { @@ -133977,12 +133977,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"laborum sed aute\",\n \"email\": \"sender@example.com\",\n \"isVerifiedByDomain\": false,\n \"verificationStatus\": \"FAILED\"\n },\n {\n \"id\": \"laboris\",\n \"email\": \"sender@example.com\",\n \"isVerifiedByDomain\": false,\n \"verificationStatus\": \"PENDING\"\n }\n]", + "body": "[\n {\n \"id\": \"veniam exercitation in dolor ut\",\n \"email\": \"sender@example.com\",\n \"isVerifiedByDomain\": false,\n \"verificationStatus\": \"FAILED\"\n },\n {\n \"id\": \"et minim in reprehenderit\",\n \"email\": \"sender@example.com\",\n \"isVerifiedByDomain\": false,\n \"verificationStatus\": \"FAILED\"\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "9571ff48-0db1-4425-b88e-def6ed3f6481", + "id": "14c2e5cd-6746-4d96-b85f-59564c021fe9", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -134071,7 +134071,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fd72bdbb-4cb0-4478-87f0-da7d89c283dd", + "id": "a9799eef-9d45-4f43-a959-8ca2f70f0174", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -134160,7 +134160,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8d0b207c-5ba4-4f32-9d75-ee99c9532cdc", + "id": "ab75170a-085b-4c67-b21e-a260041956e8", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -134249,7 +134249,7 @@ "_postman_previewlanguage": "json" }, { - "id": "09f7764a-6770-4cb5-8a3e-ae72259d02c8", + "id": "2462a7ee-04d3-42a0-9bce-b3c61da09411", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -134344,7 +134344,7 @@ } }, { - "id": "86581489-8f9b-46a7-b4ae-44b2f9882f9e", + "id": "fab5d4fb-aefd-4fc3-864a-648772c78d6a", "name": "Create Verified From Address", "request": { "name": "Create Verified From Address", @@ -134386,7 +134386,7 @@ }, "response": [ { - "id": "ce967bb7-f8ac-4bf2-a8fe-8df67532cca6", + "id": "594112b0-7bf8-4258-af1b-15b238f78ac3", "name": "New Verified Email Status", "originalRequest": { "url": { @@ -134437,12 +134437,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"anim\",\n \"email\": \"sender@example.com\",\n \"isVerifiedByDomain\": false,\n \"verificationStatus\": \"SUCCESS\"\n}", + "body": "{\n \"id\": \"ex in anim\",\n \"email\": \"sender@example.com\",\n \"isVerifiedByDomain\": false,\n \"verificationStatus\": \"FAILED\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "67b4f531-99fe-4107-b8a8-9fb9a65464fd", + "id": "15328310-0cde-4ff3-be80-36084f9a1ae3", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -134498,7 +134498,7 @@ "_postman_previewlanguage": "json" }, { - "id": "47c7972b-f645-41ef-9db1-7f94d094ccc8", + "id": "96079e01-6e8a-45a8-a665-bed22e1f0a7e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -134554,7 +134554,7 @@ "_postman_previewlanguage": "json" }, { - "id": "59dce739-f1e0-4fa2-9b12-265fe536a60b", + "id": "5d1887e8-5e22-44f2-a083-31727bdef6e4", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -134610,7 +134610,7 @@ "_postman_previewlanguage": "json" }, { - "id": "88680766-1ab9-469a-9669-310af6405cd9", + "id": "ff49f147-a6a4-4057-8b68-4c2d216f4674", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -134666,7 +134666,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8a345451-ccf7-4430-80f5-cd95ac6325c0", + "id": "57b7878b-fad9-45d2-88aa-cdb5cf204efa", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -134728,7 +134728,7 @@ } }, { - "id": "08ab0acf-cc88-473b-ac27-7cb0ff6ad643", + "id": "910d5bc6-1421-4b02-a0df-2ca98407b032", "name": "Delete Verified From Address", "request": { "name": "Delete Verified From Address", @@ -134748,7 +134748,7 @@ "variable": [ { "type": "any", - "value": "labore", + "value": "laborum qui aliquip irure", "key": "id", "disabled": true, "description": { @@ -134769,7 +134769,7 @@ }, "response": [ { - "id": "2b9d2aa3-ddd2-4403-90bb-d37f6395bda3", + "id": "6d98a4a8-3d81-4641-9a22-cc0a2b04e946", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -134803,7 +134803,7 @@ "_postman_previewlanguage": "text" }, { - "id": "e0aa8e0f-5af8-445a-ad98-17fb11576171", + "id": "a68a0026-2124-4763-80e1-5bacb0a0b0d7", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -134847,7 +134847,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b2698307-8785-4fa7-a71a-e0b0d575cc07", + "id": "bed136bb-e408-4cca-96e1-3bb8c9cdf4d5", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -134891,7 +134891,7 @@ "_postman_previewlanguage": "json" }, { - "id": "151ee5da-38a2-4d38-a509-9bc4772f75a4", + "id": "195e7d21-0fc4-479c-8443-9fdd671754be", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -134935,7 +134935,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e3f3f4f8-6fd5-4ee1-97d9-c248ba32e888", + "id": "a8704fba-b43d-44e7-b6d8-e75a234baecc", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -134979,7 +134979,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4cd97180-aa86-4237-a1d2-55ed86f97eb0", + "id": "55146724-6710-4264-9d88-efae830645b4", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -135023,7 +135023,7 @@ "_postman_previewlanguage": "json" }, { - "id": "132744a7-a88e-437a-8450-4ecfda07c976", + "id": "c21debb6-ed35-45ec-8adc-725ed316ef13", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -135073,7 +135073,7 @@ } }, { - "id": "f7b4b760-edc7-475d-8562-634da95235b1", + "id": "afbcea7e-8a58-43da-99e8-b69e11b403be", "name": "Get DKIM Attributes", "request": { "name": "Get DKIM Attributes", @@ -135102,7 +135102,7 @@ }, "response": [ { - "id": "84a18bb5-b44b-48aa-beb4-f425c5c27ceb", + "id": "0135f8cc-92a4-4cf0-96df-7aac161bd364", "name": "List of DKIM Attributes", "originalRequest": { "url": { @@ -135145,7 +135145,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7bc56f1f-fd7b-49aa-bb1d-1470456fa750", + "id": "6c5edabe-5ff2-4fd5-9bdf-55d3b7d070b7", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -135188,7 +135188,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0e299379-8de6-4f79-8603-e61881979dac", + "id": "438ddc6c-8f81-4d1c-b613-d619bf21210f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -135231,7 +135231,7 @@ "_postman_previewlanguage": "json" }, { - "id": "96966b55-b055-4325-a32d-9b2b72dc8115", + "id": "8a884448-257a-416d-989a-bae0efb0a556", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -135274,7 +135274,7 @@ "_postman_previewlanguage": "json" }, { - "id": "21a14be5-3d5d-49ed-b676-fb28b2b3959b", + "id": "cbbdd0e6-c2cb-4e8b-92ff-0dc331ee4c02", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -135317,7 +135317,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4e620f24-7ac2-4ec2-a403-1aee0542f840", + "id": "661e4748-eea8-4a76-96b2-630a39e1f27c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -135366,7 +135366,7 @@ } }, { - "id": "f73c1b0d-c50c-479f-9864-db91c651df2b", + "id": "52b259ea-0137-4b75-a971-c83ffc455645", "name": "Verify domain address via DKIM", "request": { "name": "Verify domain address via DKIM", @@ -135408,7 +135408,7 @@ }, "response": [ { - "id": "61e2c423-8f8f-499c-9d80-c8a68e3cee21", + "id": "98226846-9e54-46e2-a7f9-47bcd1c8ee57", "name": "List of DKIM tokens required for the verification process.", "originalRequest": { "url": { @@ -135464,7 +135464,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b63cf8fc-f7b2-40eb-9b79-ae53415fd48a", + "id": "b06430fe-67e3-475b-9616-d0f2af544c5c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -135520,7 +135520,7 @@ "_postman_previewlanguage": "json" }, { - "id": "23f3325b-b537-427d-940f-60585dfa802c", + "id": "3b7fe978-f717-43ce-907e-822e48824543", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -135576,7 +135576,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d8e2ac0b-9eda-4334-97e4-f69c98777c63", + "id": "384e49c9-1495-4a4a-b9f3-ccdbbebb911b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -135632,7 +135632,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4f4c9346-632a-40f6-b532-b930b601042a", + "id": "7c885763-aae0-4295-9d92-998b18ef4d88", "name": "Method Not Allowed - indicates that the server knows the request method, but the target resource doesn't support this method.", "originalRequest": { "url": { @@ -135688,7 +135688,7 @@ "_postman_previewlanguage": "json" }, { - "id": "200068f0-3463-4022-bc34-1bf84163d295", + "id": "7dc1eeda-8feb-4c93-8ace-117597d5b653", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -135744,7 +135744,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cbfab753-2b84-4423-8ea7-37219ff88b5c", + "id": "2bbde1b8-c80a-443f-989f-225f052f27db", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -135812,7 +135812,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": "6c9958b1-9968-4230-83e0-78b3e7b63591", + "id": "ac58a058-4aa4-49ec-91c7-1e501c6e3931", "name": "List OAuth Clients", "request": { "name": "List OAuth Clients", @@ -135851,7 +135851,7 @@ }, "response": [ { - "id": "7a8bebc6-73ca-4323-958b-feeedd8b3d27", + "id": "254d19bb-d30f-4016-819b-53c9b67b25dd", "name": "List of OAuth clients.", "originalRequest": { "url": { @@ -135899,12 +135899,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\": \"labore eiu\",\n \"metadata\": \"commodo labore dolore\",\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\": \"incididunt sunt nostrud\",\n \"metadata\": \"exercitation\",\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\": \"proident laborum\",\n \"metadata\": \"nisi consequat dolor dolor dolore\",\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\": \"officia Excepteur elit\",\n \"metadata\": \"cupidatat magna do enim\",\n \"lastUsed\": \"2017-07-11T18:45:37.098Z\"\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "0797b166-8785-4a98-8d03-7286543f3988", + "id": "925c30f2-d734-4763-a8f1-b751d84dcbba", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -135957,7 +135957,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fb9345e3-b72b-4d51-a208-ed0d8f89cfbd", + "id": "3a2e4e9a-3033-48e5-bf35-a11313e76567", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -136010,7 +136010,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5480ce04-3473-4931-9b36-59d8078011f1", + "id": "897a0766-95c1-460d-b844-0b2ff463acca", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -136063,7 +136063,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7a81667b-555b-4428-a32a-8466d510d041", + "id": "d25b17b6-614e-47e8-901c-4102a3afd2f3", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -136116,7 +136116,7 @@ "_postman_previewlanguage": "json" }, { - "id": "aeb51b5e-985a-43cd-807b-4404736144ee", + "id": "b07f1dfb-3006-4586-a792-0afe9c0a4c0f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -136175,7 +136175,7 @@ } }, { - "id": "ae865aa2-0e64-4918-9884-9236dc008450", + "id": "6e0fad45-d13e-431c-bf75-287ae638c077", "name": "Create OAuth Client", "request": { "name": "Create OAuth Client", @@ -136217,7 +136217,7 @@ }, "response": [ { - "id": "45f45255-a4f7-455d-8cc6-1145a246fb2f", + "id": "4617c52e-811e-40a8-8508-0b76efc9c7fe", "name": "Request succeeded.", "originalRequest": { "url": { @@ -136273,7 +136273,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2a47b422-5f1e-400f-a45b-c0a09fcd4dad", + "id": "8725420d-2242-40d8-93e0-8cd49053594f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -136329,7 +136329,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6b6510a5-ca46-4036-abb1-92ddbf1daaeb", + "id": "3ef3d1e6-088c-4fd3-85b9-d5c18b9b1594", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -136385,7 +136385,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e040b62a-a23d-4aa0-8e14-86e546d4f14a", + "id": "76e678a1-8e74-42b3-a83d-81703fd87ba2", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -136441,7 +136441,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5a5d05f4-0a9e-4b1c-95e8-d0221d5206dd", + "id": "31ac6f54-203e-4da5-88cf-d98cdbf00f39", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -136497,7 +136497,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3369c605-4632-4e9a-83ec-3c4bd19ada2f", + "id": "69fdd359-0f68-4260-b396-34098b94f3fd", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -136559,7 +136559,7 @@ } }, { - "id": "5d1b51cd-b3a1-4eb2-a1f9-83dcfb09d4b7", + "id": "aecd146a-11bc-4a09-b8ef-d048b146e6f1", "name": "Get OAuth Client", "request": { "name": "Get OAuth Client", @@ -136600,7 +136600,7 @@ }, "response": [ { - "id": "55a77be1-21e3-490f-9028-9e60212c5387", + "id": "68f7f0bc-ae37-4e9b-920c-0ea7de1e12e8", "name": "Request succeeded.", "originalRequest": { "url": { @@ -136639,12 +136639,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\": \"eiusmod dolore tempor\",\n \"metadata\": \"laboris Ut\",\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\": \"nostrud in pariatur inc\",\n \"metadata\": \"Excepteur aliqua Duis\",\n \"lastUsed\": \"2017-07-11T18:45:37.098Z\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "36c90caf-c098-4bb9-862c-092ef3b2f132", + "id": "a1ea8594-9441-48e6-aaa2-4d540c4db6cd", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -136688,7 +136688,7 @@ "_postman_previewlanguage": "json" }, { - "id": "56ec7b1b-cabb-4020-a28b-a83973c98d4b", + "id": "30e7f657-06ef-47cf-ba52-6737aa7bbaae", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -136732,7 +136732,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fa969ee5-a238-425f-85c3-6510100b53d1", + "id": "26ee93f0-4ca8-45dd-b256-14d1dbb356d9", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -136776,7 +136776,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fd0c15f0-12cd-41bf-bf39-13b8135ae566", + "id": "e24d12e3-4d95-4c5a-8864-999282c12cf6", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -136820,7 +136820,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d55232b3-c26b-47a7-a65f-906951dc0524", + "id": "7f4f98ea-011d-4235-9f0c-ce377b25712a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -136864,7 +136864,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d132efff-546b-4119-9a0e-5e78068fe87b", + "id": "2c469cfb-f8f1-4d03-a36d-9cf6d0abc1ad", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -136914,7 +136914,7 @@ } }, { - "id": "46af5984-bc23-4dc6-a323-800ae8f89f71", + "id": "2b8deb7e-a353-4044-aedd-8393ee5710f9", "name": "Delete OAuth Client", "request": { "name": "Delete OAuth Client", @@ -136955,7 +136955,7 @@ }, "response": [ { - "id": "5af56dcb-3551-469f-ba5d-11b9672c3b0e", + "id": "fa641e85-0620-4b27-aec7-4eda58d6ea66", "name": "No content.", "originalRequest": { "url": { @@ -136989,7 +136989,7 @@ "_postman_previewlanguage": "text" }, { - "id": "4813743b-b637-447b-a323-efc99e900557", + "id": "1e159056-1845-4a3f-83ed-6d1ba117c2de", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -137033,7 +137033,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1182cdc2-7dc0-49e0-8f3f-ea3f74f4fdee", + "id": "ca5cfe61-181e-44fc-820d-ea395729bf3f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -137077,7 +137077,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7a30b42e-5a60-4a94-9127-eb87fd89ee45", + "id": "2ed28154-f280-405a-9f6f-d99f480d209f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -137121,7 +137121,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cbe7d535-3c27-4b8f-af84-8c88a85adbff", + "id": "d317759a-9dca-4eb0-9c7c-94dd0576e845", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -137165,7 +137165,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ca5c2e50-245c-4dda-932b-8c19f017624b", + "id": "2880757b-c9cc-4cb6-8743-b9a78de2fe60", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -137209,7 +137209,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ed0dc268-a9ab-4ac7-b002-6a211dca1ec3", + "id": "95a2663a-aec1-4816-83db-8c88a0568c36", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -137259,7 +137259,7 @@ } }, { - "id": "657253fc-df0b-4de8-bc90-798976369028", + "id": "25efd397-84b4-4e61-9ba7-ae0c266d79b1", "name": "Patch OAuth Client", "request": { "name": "Patch OAuth Client", @@ -137313,7 +137313,7 @@ }, "response": [ { - "id": "c321d8a8-a0ec-4912-bfbb-e38cb4830290", + "id": "c010448c-96e5-4650-81ed-bd1915399a14", "name": "Indicates the PATCH operation succeeded, and returns the OAuth client's new representation.", "originalRequest": { "url": { @@ -137365,12 +137365,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\": \"eiusmod dolore tempor\",\n \"metadata\": \"laboris Ut\",\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\": \"nostrud in pariatur inc\",\n \"metadata\": \"Excepteur aliqua Duis\",\n \"lastUsed\": \"2017-07-11T18:45:37.098Z\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b5bd241e-c71c-4e1e-8367-2b4a5739c84a", + "id": "13304622-f3b6-424d-baad-737df4f5b5df", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -137427,7 +137427,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c66966b2-0386-4374-b4f5-0e289e83356c", + "id": "27461c26-fc41-49af-b09f-5a5fa6870bd0", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -137484,7 +137484,7 @@ "_postman_previewlanguage": "json" }, { - "id": "58a16b11-9c32-4174-a14b-3e88ee9a985c", + "id": "808427a0-5fbb-484d-bbd0-3e7cade75c4a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -137541,7 +137541,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6917b907-9d26-44ad-928b-65600d020d36", + "id": "8dd53901-93c8-410d-92cf-37f6e11a25a1", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -137598,7 +137598,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5b40af72-a640-47ae-9362-f9e090999f12", + "id": "05793952-9a9a-4eff-9f2b-b1ebfe9ec93b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -137655,7 +137655,7 @@ "_postman_previewlanguage": "json" }, { - "id": "620cce84-b652-4047-b6c5-cd4dd97d6b94", + "id": "d811cc7d-656a-480e-a70e-7bde5c4a07fa", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -137724,7 +137724,7 @@ "description": "Operations for managing org configuration settings (eg. time zone)", "item": [ { - "id": "d67e97f7-4943-4f5c-b4ba-6722d3ef0e21", + "id": "12533b16-5a8a-409e-b72e-1149e5b2fb33", "name": "Get Org configuration settings", "request": { "name": "Get Org configuration settings", @@ -137753,7 +137753,7 @@ }, "response": [ { - "id": "551379d7-a595-421e-be74-2bfe35319d05", + "id": "307455d2-db15-40d0-aeb3-d57efb57f2b5", "name": "Request succeeded.", "originalRequest": { "url": { @@ -137791,12 +137791,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\": \"cupidatat ullamco qui laboris amet\",\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\": \"ut\",\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": "504f219d-42f4-4232-9c20-f61f30355804", + "id": "95ab8a4c-fd29-4d53-8de6-516e2f178e5f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -137839,7 +137839,7 @@ "_postman_previewlanguage": "json" }, { - "id": "15bba1f3-6bb8-433f-9c00-4bc3f565ca64", + "id": "31e79aa3-f530-4e0d-83f8-38f2dc66890f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -137882,7 +137882,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d13953fc-16db-437d-9f88-4003919358ee", + "id": "e9a0f04f-920d-4edb-985f-26b3f6851268", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -137925,7 +137925,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ef1a7562-a695-4f14-9746-ad2c3deef5a0", + "id": "798f066d-4465-42eb-a1b5-a4fe4e60614d", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -137968,7 +137968,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ce2b83fd-d72c-4ff3-9e1b-fd9ebdbb8c51", + "id": "8c122f6b-61bc-488d-8e17-c9355d670a3b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -138011,7 +138011,7 @@ "_postman_previewlanguage": "json" }, { - "id": "723bdef7-8521-43c6-818a-17053c38839f", + "id": "91e29ef4-8c21-4456-9882-cf044bff6218", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -138060,7 +138060,7 @@ } }, { - "id": "a61c8dea-3de3-4fc5-8620-4b0139737777", + "id": "1e1b94c9-8713-4ae9-8aca-31f210697204", "name": "Patch an Org configuration property", "request": { "name": "Patch an Org configuration property", @@ -138102,7 +138102,7 @@ }, "response": [ { - "id": "0e3dfb7b-3321-4fbe-987e-2c85041a0e0c", + "id": "09177ad5-bba8-4dfa-96fc-21f3a69cd6b0", "name": "The Org was successfully patched.", "originalRequest": { "url": { @@ -138153,12 +138153,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\": \"cupidatat ullamco qui laboris amet\",\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\": \"ut\",\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": "7fc9a716-a605-4a19-9f4e-1b3c13c89244", + "id": "2d5db31e-8aee-4b54-bd46-358706592073", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -138214,7 +138214,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8fb3955a-eced-4ae2-bf6f-38c68f24e96d", + "id": "43c5031f-ad21-434c-acc4-998de9d47950", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -138270,7 +138270,7 @@ "_postman_previewlanguage": "json" }, { - "id": "633fdddf-4e87-4100-afc9-cf44b348dab8", + "id": "78937d3c-262a-4e4e-af80-25191d4ee8e3", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -138326,7 +138326,7 @@ "_postman_previewlanguage": "json" }, { - "id": "84d6b319-8f2d-45f0-8097-952c624bce7a", + "id": "11203671-bae7-4c26-bc25-8c8488b23cfe", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -138382,7 +138382,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f31a24a2-6e46-488d-b2db-e6ddf98f9f2f", + "id": "2489ca85-8668-4ad9-ac7c-d119ba2e7673", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -138438,7 +138438,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eb4cd184-aa14-4f4b-b54e-7614e2146daa", + "id": "b547fea9-2067-4bb6-b31b-92b19740b1c4", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -138500,7 +138500,7 @@ } }, { - "id": "d6fef8e7-47e9-411a-854f-c4a2bdbf9dc5", + "id": "5a59f79a-1ebd-435c-84a4-4c7075a9a760", "name": "Get list of time zones", "request": { "name": "Get list of time zones", @@ -138530,7 +138530,7 @@ }, "response": [ { - "id": "b86b968c-6244-4e96-8460-b857be741000", + "id": "d59143e4-8d85-4021-bc98-9de9585ef891", "name": "Request successful", "originalRequest": { "url": { @@ -138574,7 +138574,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d436fd05-77fa-44a0-a709-7f05034a1e70", + "id": "4983c92d-6636-4043-9e44-f15138c5730c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -138618,7 +138618,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9d82de46-b7d6-4855-953a-ef5fb24fda9f", + "id": "e2ddf8fc-18e3-4743-a096-e0dd8e42ed9b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -138662,7 +138662,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8bb14c1b-a77e-49f6-a5d8-6c8617df8b88", + "id": "13d94781-70b1-451e-b70b-587efbc9139a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -138706,7 +138706,7 @@ "_postman_previewlanguage": "json" }, { - "id": "875bc06b-7313-4fe0-a9e4-80dd62f4756b", + "id": "c54a456d-2c7e-4173-ade8-8a1c8a5b75be", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -138750,7 +138750,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4f5709be-ae3e-4b08-b8f6-2742ebdf7120", + "id": "98f01055-6181-4ed6-b6ef-cb203589f529", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -138806,7 +138806,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": "30c8f546-b79b-4df5-b5e3-fd707fd6acce", + "id": "d4e26923-980c-43c7-9f69-b75d4d73da3e", "name": "Get Password Org Config", "request": { "name": "Get Password Org Config", @@ -138835,7 +138835,7 @@ }, "response": [ { - "id": "56c05f7e-edd1-4993-9608-776fff30e18b", + "id": "5eb1fc33-f922-4125-8f6f-f488e9cab51d", "name": "Reference to the password org config.", "originalRequest": { "url": { @@ -138878,7 +138878,7 @@ "_postman_previewlanguage": "json" }, { - "id": "db359d93-50ac-4dea-9438-6431184d5f2a", + "id": "b5af2b73-3c03-40d4-8647-d40f6eb5391b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -138921,7 +138921,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5891afe9-0732-43da-8455-f18910e85683", + "id": "05bb1e09-1c31-4821-a33f-71b5d06c8384", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -138964,7 +138964,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a9cb685b-5fbe-4618-a006-745a19351fff", + "id": "5a354404-b5ff-4c51-bbce-388abb8c48b8", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -139007,7 +139007,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c0af3bfe-49d8-4bef-b1d1-950fa71462f7", + "id": "623d0623-0520-47bc-8545-c453fe6b9e3c", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -139050,7 +139050,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ef79641e-7c31-44e5-8d79-21ad5be03338", + "id": "7df4d6ad-2e7c-46f2-ba38-0ad2c820fc78", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -139099,7 +139099,7 @@ } }, { - "id": "e2ea30de-1f4f-4d9e-a9f6-ab3174b9158e", + "id": "77382cae-ef91-4e7f-aeff-72e10fbc8b0b", "name": "Update Password Org Config", "request": { "name": "Update Password Org Config", @@ -139141,7 +139141,7 @@ }, "response": [ { - "id": "ebee810b-f592-418b-b707-baf6d51d3c76", + "id": "86a385d5-6a96-46f1-97d7-f482ba76126b", "name": "Reference to the password org config.", "originalRequest": { "url": { @@ -139197,7 +139197,7 @@ "_postman_previewlanguage": "json" }, { - "id": "82af4d63-1638-4e00-937c-10290adced51", + "id": "c85ebd0b-b349-4212-ae98-be1b106f481a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -139253,7 +139253,7 @@ "_postman_previewlanguage": "json" }, { - "id": "04fb1ab5-aaf9-43c2-b7d1-52446bd53f2e", + "id": "cbe80923-6d73-491f-ad4e-ce7c68946e67", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -139309,7 +139309,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f9a45412-3de8-4798-ad87-0857f036a267", + "id": "32db32b1-f882-45ec-a370-00286d8cc2cc", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -139365,7 +139365,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c8d98b6d-8c82-4dfc-9377-15aeb475f0e1", + "id": "5d1101d3-b770-4960-86ee-5babde8fc338", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -139421,7 +139421,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7ee6aec9-0910-4536-a2f0-bdb219e929f2", + "id": "20881baa-460b-4728-b9bc-7d4c4c8adbbb", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -139483,7 +139483,7 @@ } }, { - "id": "fb490c99-5f1e-4aa8-a36f-8a41cb7c30ca", + "id": "7304c7a1-1f4c-4c59-8b28-4d5610b6d7e7", "name": "Create Password Org Config", "request": { "name": "Create Password Org Config", @@ -139525,7 +139525,7 @@ }, "response": [ { - "id": "90c65361-a90d-40c5-b487-2d8317669473", + "id": "105398cd-e64a-47ba-8308-10b0bd0b7161", "name": "Reference to the password org config.", "originalRequest": { "url": { @@ -139581,7 +139581,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2a986f39-86e1-4a0d-acb3-9b2763bc6e2c", + "id": "25b5575b-b2d1-42a6-b19e-98fd8db4270b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -139637,7 +139637,7 @@ "_postman_previewlanguage": "json" }, { - "id": "17446228-4935-4693-b4c9-9ddd95eac6e6", + "id": "52645ef9-1dd5-4954-b78b-76062e41e506", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -139693,7 +139693,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bc3ce1b0-7238-41fa-9559-0b02dd3273e4", + "id": "37175447-9df8-48f9-8d9b-bff43930841c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -139749,7 +139749,7 @@ "_postman_previewlanguage": "json" }, { - "id": "856d273d-0123-4134-89fc-75e469fca57d", + "id": "e6642cbb-51a4-4ee5-a7e4-4ac29f7cf930", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -139805,7 +139805,7 @@ "_postman_previewlanguage": "json" }, { - "id": "68ef6c27-401a-4fbb-9a2d-27b7cd212e8e", + "id": "88554641-a401-4d09-ab47-70f7188751c6", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -139873,7 +139873,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": "e1fde874-541f-439f-991e-54c12ac00709", + "id": "a2822b0f-1733-46da-918c-516239b57d66", "name": "Get Password Dictionary", "request": { "name": "Get Password Dictionary", @@ -139902,7 +139902,7 @@ }, "response": [ { - "id": "b2b2c4cb-7be6-44c9-bf9e-7a0aafe2bea3", + "id": "afcd03f0-a09c-4d25-8fb8-bd6826a78db7", "name": "A password dictionary response", "originalRequest": { "url": { @@ -139940,12 +139940,12 @@ "value": "text/plain" } ], - "body": "labore", + "body": "laborum qui aliquip irure", "cookie": [], "_postman_previewlanguage": "text" }, { - "id": "195cec61-9b9e-4de6-9899-4bd27666369a", + "id": "07fa25aa-d2e5-461f-bae0-71988bc9c0ba", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -139988,7 +139988,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1f1e99fb-d108-47bc-a688-ecd1b67be775", + "id": "c0560785-8f6d-4d4d-b5f3-e57ae10c1c00", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -140031,7 +140031,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0a0a680a-f941-4e69-af91-dc9048a603d4", + "id": "8c1803a3-6cc6-4d3d-81f4-fe2906bfd4c4", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -140074,7 +140074,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0531f72d-93d7-4275-b348-c225184923a3", + "id": "a0cc801d-3392-4c91-9a8c-8ea187d9f929", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -140117,7 +140117,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6e0d1248-8850-47f7-ad83-33d0a6bbdaa0", + "id": "8b50185e-3db1-44a0-808e-5f71f74a0a26", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -140160,7 +140160,7 @@ "_postman_previewlanguage": "json" }, { - "id": "00728998-48c5-451d-a787-2c6a966f0990", + "id": "4f433d40-36b6-403c-bcea-64d00f285b3f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -140209,7 +140209,7 @@ } }, { - "id": "e25e004a-8878-4979-8605-315177bda93c", + "id": "6ff6c4fc-c916-4463-af61-9b5c8bd01ee2", "name": "Update Password Dictionary", "request": { "name": "Update Password Dictionary", @@ -140247,7 +140247,7 @@ "type": "text/plain" }, "key": "file", - "value": "do sed minim", + "value": "anim esse in sunt", "type": "text" } ] @@ -140255,7 +140255,7 @@ }, "response": [ { - "id": "a9e7c925-c28a-4a5d-8e4a-14872fae600b", + "id": "5c587c9d-55fb-4423-a23e-52c79805ff15", "name": "Successfully updated.", "originalRequest": { "url": { @@ -140292,7 +140292,7 @@ "type": "text/plain" }, "key": "file", - "value": "do sed minim", + "value": "anim esse in sunt", "type": "text" } ] @@ -140305,7 +140305,7 @@ "_postman_previewlanguage": "text" }, { - "id": "63c42e6e-df9e-41ef-86e4-89cd9fc29659", + "id": "aac6e744-2098-46a2-bcc6-f0fe3c70a156", "name": "Created.", "originalRequest": { "url": { @@ -140342,7 +140342,7 @@ "type": "text/plain" }, "key": "file", - "value": "do sed minim", + "value": "anim esse in sunt", "type": "text" } ] @@ -140355,7 +140355,7 @@ "_postman_previewlanguage": "text" }, { - "id": "7f22d74a-5ade-440c-b201-2688ab94278d", + "id": "965347af-634f-40f4-8833-fc39d37c8d61", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -140396,7 +140396,7 @@ "type": "text/plain" }, "key": "file", - "value": "do sed minim", + "value": "anim esse in sunt", "type": "text" } ] @@ -140415,7 +140415,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9a252aab-be53-486d-a7b0-9ecea7ef2ea4", + "id": "0b46a998-0321-4fc9-b973-37a855678d02", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -140456,7 +140456,7 @@ "type": "text/plain" }, "key": "file", - "value": "do sed minim", + "value": "anim esse in sunt", "type": "text" } ] @@ -140475,7 +140475,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6559b70d-432f-488a-b8d8-b6096a66d2d6", + "id": "28782233-521c-45d3-8236-d2937ed86a33", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -140516,7 +140516,7 @@ "type": "text/plain" }, "key": "file", - "value": "do sed minim", + "value": "anim esse in sunt", "type": "text" } ] @@ -140535,7 +140535,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0ca3d1bf-d6b3-4588-8cd9-6bbf0979673e", + "id": "71cf3b02-24eb-471e-813c-1217508b12d1", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -140576,7 +140576,7 @@ "type": "text/plain" }, "key": "file", - "value": "do sed minim", + "value": "anim esse in sunt", "type": "text" } ] @@ -140595,7 +140595,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6faa8992-40b3-49b2-ba2b-64695935fc45", + "id": "e0b332f7-031a-44ff-aada-996f1e5bfc9b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -140636,7 +140636,7 @@ "type": "text/plain" }, "key": "file", - "value": "do sed minim", + "value": "anim esse in sunt", "type": "text" } ] @@ -140655,7 +140655,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8e205bfe-dfbf-477a-a267-d4c05c576f5b", + "id": "7d1c8fd8-d94b-487e-977b-436947ef874f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -140696,7 +140696,7 @@ "type": "text/plain" }, "key": "file", - "value": "do sed minim", + "value": "anim esse in sunt", "type": "text" } ] @@ -140727,7 +140727,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": "c0eeef20-144a-4d05-8a95-cb8c4467ea9c", + "id": "f3a1c660-d6de-46a5-936d-ae59e95f8b17", "name": "Generate a digit token", "request": { "name": "Generate a digit token", @@ -140770,7 +140770,7 @@ }, "response": [ { - "id": "a47a9ded-f978-4de6-98b8-2b439b45e317", + "id": "d44f9f04-fa50-4a16-b76a-9b9214b92a6a", "name": "The digit token for password management.", "originalRequest": { "url": { @@ -140827,7 +140827,7 @@ "_postman_previewlanguage": "json" }, { - "id": "40d046ee-c11b-4a09-81ea-12ae81e98c8b", + "id": "db5d7cac-3073-45b6-b94f-a4d59e624d97", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -140884,7 +140884,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ba8bbc68-7c5a-4749-b9c8-ca44364f37cc", + "id": "c10de43d-d35b-40b5-89aa-020414a87281", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -140941,7 +140941,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d36cf837-9d73-4385-8385-1e9f0ff0a807", + "id": "72489a99-80b2-4044-8d18-f172b1496e6e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -141004,7 +141004,7 @@ } }, { - "id": "91c2bd83-fbad-4e73-b9b0-b80911b27613", + "id": "1b92dd2b-c7ab-4db2-8283-fa3c0731db00", "name": "Query Password Info", "request": { "name": "Query Password Info", @@ -141046,7 +141046,7 @@ }, "response": [ { - "id": "ffb5aacf-961f-4ee6-852a-dc56d402dcc7", + "id": "918c3316-a444-418d-b33b-9d61db2a96e5", "name": "Reference to the password info.", "originalRequest": { "url": { @@ -141102,7 +141102,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e5ac8541-d4db-48fe-aba3-3f7df7a24771", + "id": "b647550c-3c42-4329-8b5a-8125f6bcc521", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -141158,7 +141158,7 @@ "_postman_previewlanguage": "json" }, { - "id": "76fbd8c6-8f1c-4a8f-a81a-c781f9bcff7e", + "id": "637552ce-a6e7-4176-97d6-1f71c31b5bd6", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -141214,7 +141214,7 @@ "_postman_previewlanguage": "json" }, { - "id": "17ac42a3-2133-47e0-8ffa-4b039c8b324f", + "id": "2d4a2708-084d-47f8-a611-f36edea21318", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -141270,7 +141270,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f7508118-e79d-4333-8563-fbce2a9b1719", + "id": "35f5d524-c851-4be2-a334-696ac78f38be", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -141326,7 +141326,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c07c5625-ba60-4a67-af11-135d4c80254d", + "id": "f3e40904-c313-47b4-9677-ede3c13e35cf", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -141388,7 +141388,7 @@ } }, { - "id": "3b3a09df-4ce2-4612-908d-f568d032a1c7", + "id": "2a67ebfb-ba36-4fc0-8716-a6dd57b5654c", "name": "Set Identity's Password", "request": { "name": "Set Identity's Password", @@ -141430,7 +141430,7 @@ }, "response": [ { - "id": "a226c56c-ca02-4ab7-a542-21447afd80da", + "id": "5a94ebbe-5f06-47c3-9979-1eae803b5139", "name": "Reference to the password change.", "originalRequest": { "url": { @@ -141486,7 +141486,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6bc8d5f2-6ab9-48f5-8974-fa840fd5b6c4", + "id": "908f0057-b45a-45b3-9b1e-d58c002608d8", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -141542,7 +141542,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b592fd54-347d-4903-a22e-41b348cad671", + "id": "f90ed9e5-bb43-465f-9bea-9471be8fa2b2", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -141598,7 +141598,7 @@ "_postman_previewlanguage": "json" }, { - "id": "690bdc78-db6b-43e9-b91f-37137137e58a", + "id": "d7a85f82-5dd3-4127-8219-3d1bbd35e685", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -141654,7 +141654,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1fbb087e-1bf9-4fc4-9233-ef778ed2efa8", + "id": "a72eeaf7-cd3a-41b8-a708-2993d1067881", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -141710,7 +141710,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e035f422-dad8-4f3b-9ee5-c94aeddeb18d", + "id": "e6b2a7bb-ac64-4339-82e5-d5a876084252", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -141772,7 +141772,7 @@ } }, { - "id": "24d994e0-3cfb-404d-aa03-01018f7f9bb6", + "id": "6c1fa78f-e53f-4969-b782-75bca47c4895", "name": "Get Password Change Request Status", "request": { "name": "Get Password Change Request Status", @@ -141792,7 +141792,7 @@ "variable": [ { "type": "any", - "value": "labore", + "value": "laborum qui aliquip irure", "key": "id", "disabled": true, "description": { @@ -141813,7 +141813,7 @@ }, "response": [ { - "id": "80459277-0dd2-4f05-9eaf-4b593ce53c6f", + "id": "77721128-f597-4d2a-8ab2-3595e2de4e92", "name": "Status of the password change request", "originalRequest": { "url": { @@ -141857,7 +141857,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c43a489f-c3f7-40a7-8aae-f3d254f23453", + "id": "897b2a7d-52eb-4a37-a5b4-fe6b4c9b2978", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -141901,7 +141901,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7fe17665-eef4-4c40-b511-a8ee9ce5764e", + "id": "1c4b7b8c-5978-4219-ae73-1732fbf02a84", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -141945,7 +141945,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bf065875-bed3-41eb-a3d8-b58f0d04a332", + "id": "85363e82-93af-415d-9f7e-d2aa19815f27", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -141989,7 +141989,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b09ee368-44c8-4d43-8b3b-7bcb5762675e", + "id": "8475c2ba-c038-4bb7-bbc6-f8ce7aa6461f", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -142033,7 +142033,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f7977753-4795-41c3-a1e6-c5d770cad783", + "id": "dbaeef8d-f765-40c6-9b17-18a6c6a069dc", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -142089,7 +142089,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": "01a429b5-7941-4087-9954-7df6aa20d755", + "id": "0c972d2e-1434-4dc0-8a98-390c50a9f0c1", "name": "Get Password Policy by ID", "request": { "name": "Get Password Policy by ID", @@ -142130,7 +142130,7 @@ }, "response": [ { - "id": "77a6fe2d-9c9c-4a77-bd11-d04586ba011b", + "id": "0d970062-5ca7-4857-a844-75fcab63af7e", "name": "Reference to the password policy.", "originalRequest": { "url": { @@ -142174,7 +142174,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ce36731a-65ac-4ef2-a218-cf6fd7de468b", + "id": "bda09700-adda-437d-b89a-40918d186848", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -142218,7 +142218,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c9d243f6-31d0-411d-830d-0cb573d58272", + "id": "18e2e729-33c0-4e4e-a036-3e815674ae40", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -142262,7 +142262,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bfb6434d-e0e6-4ae2-9c20-e85db56c6659", + "id": "f21b3e41-7343-4ea1-858c-606464ba25f2", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -142306,7 +142306,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9c850290-6710-498a-9595-5d615adefa21", + "id": "3d4e9c9a-6404-4072-bf67-4ca2635ac06d", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -142350,7 +142350,7 @@ "_postman_previewlanguage": "json" }, { - "id": "139ae4d7-8c8d-4b4e-8c9d-a00a8b97c2cd", + "id": "b51d5430-93e4-44b5-9435-2265ee84258e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -142394,7 +142394,7 @@ "_postman_previewlanguage": "json" }, { - "id": "edd73d2a-b945-4281-941a-838874023b06", + "id": "1d9f7c67-9afe-4cf8-a3ce-9eaa6980dfa3", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -142444,7 +142444,7 @@ } }, { - "id": "a400e5af-15b3-4afa-b7af-8c4803b27579", + "id": "1720186c-2098-4435-9c2b-ebec5c79cf9e", "name": "Update Password Policy by ID", "request": { "name": "Update Password Policy by ID", @@ -142498,7 +142498,7 @@ }, "response": [ { - "id": "3fcc3fe0-0c23-4846-97e9-d7026f13339d", + "id": "9dec44ba-bc9c-4bec-abfb-7571624dabc4", "name": "Reference to the password policy.", "originalRequest": { "url": { @@ -142555,7 +142555,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2f747420-2975-4896-97f6-b0fedd99a689", + "id": "34829520-9587-4e0e-b2c0-3a7fcee93966", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -142612,7 +142612,7 @@ "_postman_previewlanguage": "json" }, { - "id": "023de6f1-d17c-44b4-b5b8-9db9d0aa869e", + "id": "2be58ff8-bad2-42c8-b8d7-13090cd28199", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -142669,7 +142669,7 @@ "_postman_previewlanguage": "json" }, { - "id": "83eedd38-a967-4656-88b5-75cfe2c25690", + "id": "87a78ddb-b80a-47c4-a80a-c3f93b1814f1", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -142726,7 +142726,7 @@ "_postman_previewlanguage": "json" }, { - "id": "19e15cc5-62c1-4e27-b191-693fd75225ed", + "id": "6c4c24bf-a418-4f09-95d3-941292e43b91", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -142783,7 +142783,7 @@ "_postman_previewlanguage": "json" }, { - "id": "56ebd76e-a0ae-4c8e-9788-2827ac393156", + "id": "25c5187c-b367-4d07-85a1-ad06b067d92a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -142840,7 +142840,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4d5cd4d0-951d-4377-a3df-0bebc156dbf4", + "id": "8dcdfcd2-4ba0-4148-8126-30e3cfcad196", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -142903,7 +142903,7 @@ } }, { - "id": "c00a2e77-0e13-4a52-8fae-93579ce27ce6", + "id": "bd608c23-e6a8-4ba1-aa0c-aee2894d694f", "name": "Delete Password Policy by ID", "request": { "name": "Delete Password Policy by ID", @@ -142944,7 +142944,7 @@ }, "response": [ { - "id": "897e9c5d-9722-488f-90e1-abf990e4d5d7", + "id": "d891aeaa-e4a4-4249-a2cb-3faea77b373b", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -142978,7 +142978,7 @@ "_postman_previewlanguage": "text" }, { - "id": "f4759bb5-11d9-4707-9b40-021a269721b6", + "id": "015a3f47-dd9b-4a6a-bdb3-3dc5eb58f833", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -143022,7 +143022,7 @@ "_postman_previewlanguage": "json" }, { - "id": "58821aba-f7b1-496e-bff9-37826a04d931", + "id": "755ee515-20e5-4131-8b7e-7980a4c8fc97", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -143066,7 +143066,7 @@ "_postman_previewlanguage": "json" }, { - "id": "54d22571-775c-48b5-878e-470f6847ec80", + "id": "69aa0fc3-47f6-4f95-8ab9-125213834ace", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -143110,7 +143110,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6cef6503-a39e-41c4-b228-d9f9621d1034", + "id": "1278c6ab-8bd5-451e-909f-7b470ce0b04d", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -143154,7 +143154,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3274d15e-4bf8-490f-b6e7-524b65e575f3", + "id": "37c184ad-f787-4163-bf29-2e430b4fefcf", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -143198,7 +143198,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bdad9f69-4392-4c54-8c61-d960eddfd924", + "id": "c359ab16-29c9-4b8b-aa69-05ea0b37e14d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -143248,7 +143248,7 @@ } }, { - "id": "bc415683-2087-43c0-a8cc-287de63af09f", + "id": "693ade1e-e5f4-4103-bc92-ab22d1244f5c", "name": "Create Password Policy", "request": { "name": "Create Password Policy", @@ -143290,7 +143290,7 @@ }, "response": [ { - "id": "cc58389e-6a61-429d-9ee1-0a4fbf6d1eae", + "id": "ffef5d8b-6176-404c-b0b7-13f19cc0dc3e", "name": "Reference to the password policy.", "originalRequest": { "url": { @@ -143341,12 +143341,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"2c91808e7d976f3b017d9f5ceae440c8\",\n \"description\": \"Information about the Password Policy\",\n \"name\": \"PasswordPolicy Example\",\n \"dateCreated\": \"1973-10-25T14:27:33.625Z\",\n \"lastUpdated\": \"2017-12-11T10:36:18.039Z\",\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\": \"dolore exercitat\",\n \"modified\": \"esse elit ut labore\",\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\": \"1980-12-23T07:32:28.531Z\",\n \"lastUpdated\": \"1975-01-17T22:12:42.571Z\",\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\": \"aliqua id\",\n \"modified\": \"eiusmod adipisicing\",\n \"sourceIds\": [\n \"2c91808382ffee0b01830de154f14034\",\n \"2f98808382ffee0b01830de154f12134\"\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "249716b6-e208-4f1b-93da-0fce7ffb2577", + "id": "2297c30e-6a46-4e84-ba29-f31fa02c9a4e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -143402,7 +143402,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b3f79a68-0ed3-48c8-888e-e53f77845368", + "id": "010d8dcd-6be6-45a2-b99f-a29f9ce91441", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -143458,7 +143458,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f57ab9bf-29a7-4c17-8c93-afe6238c8e5a", + "id": "ff095da5-035f-4bc4-9033-0c46f61cc5f3", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -143514,7 +143514,7 @@ "_postman_previewlanguage": "json" }, { - "id": "877696ea-4840-45df-ab4d-d94a862b0f48", + "id": "2e2b6666-5d32-4eae-b659-ac190f617cc1", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -143570,7 +143570,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d3bd805f-64ff-47de-b90e-371b595b58a6", + "id": "f5fd5915-74c7-4d32-b6e4-2054492a8d2c", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -143626,7 +143626,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c86ffbcd-47a5-4d2e-a2b6-e319444c0d23", + "id": "4b722dae-7441-4f84-b966-1d3ef6b6c9d4", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -143688,7 +143688,7 @@ } }, { - "id": "cfc1fa0a-5bfc-4e6f-ab9f-82997ee7afdf", + "id": "aa3ebb38-3e8e-44f8-a28b-f53c9f0843ec", "name": "List Password Policies", "request": { "name": "List Password Policies", @@ -143745,7 +143745,7 @@ }, "response": [ { - "id": "0ec07d28-4e52-4060-b1ac-99240c6ce55d", + "id": "2a51db19-000a-484b-b5b9-cd92962317e2", "name": "List of all Password Policies.", "originalRequest": { "url": { @@ -143816,7 +143816,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3ae7ddd4-cb4a-41a0-b273-1b9607576196", + "id": "978d6d4e-d21e-4dff-9673-ade70ba2f4b6", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -143887,7 +143887,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8ba93af4-89b3-4858-973f-0d988e4607a2", + "id": "26e0780c-680b-491b-869b-38493797c3b8", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -143958,7 +143958,7 @@ "_postman_previewlanguage": "json" }, { - "id": "81b0637d-300c-4407-bcfa-0b390f0e7e89", + "id": "5621789b-6495-4275-9216-16bfe572cdc2", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -144029,7 +144029,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a0d9721b-6838-4c4b-b513-b3e371bcc906", + "id": "c9075ef1-1dc6-4d2a-8da6-01e04ff5fdf4", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -144100,7 +144100,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8d6a9283-ea68-4787-b48e-d3fe2f66ec5d", + "id": "e6a20083-95ca-4971-80a6-14ed88f863c6", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -144183,7 +144183,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": "ec31527a-be5b-4c38-b418-e75a4c75cfe2", + "id": "f77154df-9f80-4bf8-a729-287d8ba47bb8", "name": "Get Password Sync Group List", "request": { "name": "Get Password Sync Group List", @@ -144240,7 +144240,7 @@ }, "response": [ { - "id": "5dd53d45-e7df-467e-a026-599aa29c29c2", + "id": "b430fd07-076c-4788-89f0-28cec29fa65a", "name": "A list of password sync groups.", "originalRequest": { "url": { @@ -144311,7 +144311,7 @@ "_postman_previewlanguage": "json" }, { - "id": "db9ddc5e-dd4e-4fb9-b047-e8afe686fa13", + "id": "712ce0cb-0fb5-4623-9809-ef297b4b77af", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -144382,7 +144382,7 @@ "_postman_previewlanguage": "json" }, { - "id": "45a46380-bfc1-42ac-87ec-ae776b1c2e15", + "id": "e48a3a0e-c6c4-46ef-9857-6a7fd8342c29", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -144453,7 +144453,7 @@ "_postman_previewlanguage": "json" }, { - "id": "36a294ba-7197-42f4-b01d-d0a55ebbd501", + "id": "c00783b2-fd87-4b2f-bf3b-f9ac9894520a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -144524,7 +144524,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ef56f232-c8c2-4b42-ab91-5c82c63e0c57", + "id": "c507a992-a852-4440-95ea-772f2513c6de", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -144595,7 +144595,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bf38b91e-45af-46fe-bd7a-20556d28bb1a", + "id": "8415ab6c-27b5-4126-a379-7979c48f8b7d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -144672,7 +144672,7 @@ } }, { - "id": "9479c08f-adc7-4011-9acf-1f73d1a66e42", + "id": "4b03d58f-abbe-4a5c-9ce1-0606ea378862", "name": "Create Password Sync Group", "request": { "name": "Create Password Sync Group", @@ -144714,7 +144714,7 @@ }, "response": [ { - "id": "ca555f97-5e1a-4a96-b68a-41e5c21e4a29", + "id": "be154c8a-7101-4a68-9949-b91b583791de", "name": "Reference to the password sync group.", "originalRequest": { "url": { @@ -144770,7 +144770,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eb4a7f42-42c0-4848-a22c-dcf1e09da63f", + "id": "ad59fb37-c658-4611-9443-fa519a713748", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -144826,7 +144826,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b4db2e52-fd34-42d8-9227-476ba5512d5b", + "id": "d235ebea-a53d-49d8-a717-f8940f9adc20", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -144882,7 +144882,7 @@ "_postman_previewlanguage": "json" }, { - "id": "87e75e77-c2e7-45da-b64f-d43df8c9a5c1", + "id": "53929af4-7ca1-4df9-bdd8-46020d4e4e25", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -144938,7 +144938,7 @@ "_postman_previewlanguage": "json" }, { - "id": "acd1a8bc-c0be-4813-af68-1a72f72a9ed1", + "id": "ba8abe24-e7a5-4d11-906d-84b6617019e0", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -144994,7 +144994,7 @@ "_postman_previewlanguage": "json" }, { - "id": "63d77f72-c0f1-430e-a23a-1f86b5266184", + "id": "fa5923c4-8ba8-4b77-a58c-014d72d54d49", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -145056,7 +145056,7 @@ } }, { - "id": "d11b4249-3b3a-4373-b70f-4e107fae1478", + "id": "ce0f76c2-cd8d-4909-98f1-6f9de6efdd81", "name": "Get Password Sync Group by ID", "request": { "name": "Get Password Sync Group by ID", @@ -145097,7 +145097,7 @@ }, "response": [ { - "id": "f0420ed1-4850-4114-8b44-9064dee98a6b", + "id": "d71cb583-5e24-414b-bd90-ae1908863e0b", "name": "Reference to the password sync group.", "originalRequest": { "url": { @@ -145141,7 +145141,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5cb4a0b8-6840-4f35-b51b-87772c313dfd", + "id": "19de7c57-e2b1-4be5-8542-eba9c076075d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -145185,7 +145185,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0e302981-0a91-4a38-b2bc-5a218d5cdd03", + "id": "68f13fb8-6a9a-4b73-a5ea-3f3995d2286a", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -145229,7 +145229,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a59e68f0-d8d1-4f74-bf6d-c16ded386b9c", + "id": "fc3d72cd-d604-4e41-8936-70bacce3a301", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -145273,7 +145273,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b0b8d812-32ea-40d9-8953-a7c70760c683", + "id": "d0e6655d-743c-4c70-8e12-9a6cbb2ac1d2", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -145317,7 +145317,7 @@ "_postman_previewlanguage": "json" }, { - "id": "949c7825-6ffa-4a29-9ab0-5fb72e085d18", + "id": "ab592c3e-c995-4506-a1d1-930917bdca33", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -145361,7 +145361,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7c020c14-cbc3-4550-a041-d2dde31c954c", + "id": "01aabaf9-289e-40de-9c6c-765303097e5f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -145411,7 +145411,7 @@ } }, { - "id": "d4fc4450-44f9-4213-a38b-5f7cbde86d9a", + "id": "ab1cb1c1-e996-4116-a89e-14b95545d38a", "name": "Update Password Sync Group by ID", "request": { "name": "Update Password Sync Group by ID", @@ -145465,7 +145465,7 @@ }, "response": [ { - "id": "70852f15-c5b3-4ae7-954d-edd76ca0382d", + "id": "ea8393cd-d5aa-4cd7-8758-8ad0731bd3ea", "name": "Reference to the password sync group.", "originalRequest": { "url": { @@ -145522,7 +145522,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bd0fdbb6-e465-49f0-9125-1096a07be5db", + "id": "1fd20aab-c79c-4e76-aabb-ce7bfc457afe", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -145579,7 +145579,7 @@ "_postman_previewlanguage": "json" }, { - "id": "000ec55c-6097-46f6-9d12-fdef0ad22af5", + "id": "911eb4db-8260-49d5-8da4-a2be40df8d6e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -145636,7 +145636,7 @@ "_postman_previewlanguage": "json" }, { - "id": "917c15f2-7cfd-4f76-a202-e813bbc85727", + "id": "a70e174e-18d1-44af-8ea3-87c6a8f9ba05", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -145693,7 +145693,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cc506dee-ef1c-4bb2-836c-d701a388d6b5", + "id": "2945efa7-ab4d-4c7e-a4b4-72353148ff1b", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -145750,7 +145750,7 @@ "_postman_previewlanguage": "json" }, { - "id": "95ca02e2-3e5d-4b6d-ac96-cc3587aab4b2", + "id": "da6029db-a5bd-4d7e-9a2d-0e455648936b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -145807,7 +145807,7 @@ "_postman_previewlanguage": "json" }, { - "id": "625808a8-3851-49bb-a3c5-8006e8efac48", + "id": "bde973cb-8ed4-4dde-ab31-1c7dcb2f6427", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -145870,7 +145870,7 @@ } }, { - "id": "54c710b6-33fd-4da8-a33e-dcfadaad5977", + "id": "32b0df04-8d7b-4a8c-9ca1-9922bdda2f36", "name": "Delete Password Sync Group by ID", "request": { "name": "Delete Password Sync Group by ID", @@ -145911,7 +145911,7 @@ }, "response": [ { - "id": "21da3e75-96f7-4d86-a82f-df200dae0640", + "id": "73de9c41-fc80-43ff-a35d-b506f2875a53", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -145945,7 +145945,7 @@ "_postman_previewlanguage": "text" }, { - "id": "895a38a1-1efd-4dd2-bbed-d53ce68ed7f6", + "id": "6cbe5534-d20e-4965-9450-460e5678e6b2", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -145989,7 +145989,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4abb29af-0920-47b5-a591-41d15937ef53", + "id": "9420c363-868f-448d-a6fe-9f00afbe1863", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -146033,7 +146033,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6a7dc9bc-d1d1-4229-a2c8-1ee56249df4f", + "id": "52fb9732-d95d-40f8-b452-7b91be525c24", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -146077,7 +146077,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5ca118cf-87cd-47da-addf-53e83c4b630c", + "id": "18423bcd-fdcb-4f65-a776-350ef579c6d5", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -146121,7 +146121,7 @@ "_postman_previewlanguage": "json" }, { - "id": "02d5cbb7-c676-4d89-aaaa-7e7828a81423", + "id": "5dc650c4-cb3b-4081-86c8-871c5aed6212", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -146177,7 +146177,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": "c998b74a-4e51-4074-a9ef-af0cbe791bb6", + "id": "bb72af0b-9d3b-4580-a508-1f8a48d109ed", "name": "List Personal Access Tokens", "request": { "name": "List Personal Access Tokens", @@ -146225,7 +146225,7 @@ }, "response": [ { - "id": "da612ffd-8765-4f10-8193-ad0211a0de97", + "id": "fda66e12-2a94-40b5-ad10-8652587e1f20", "name": "List of personal access tokens.", "originalRequest": { "url": { @@ -146287,7 +146287,7 @@ "_postman_previewlanguage": "json" }, { - "id": "94d63b1e-40b2-4935-a15d-dcbfbd7fc084", + "id": "ed81a2ab-8704-4f5d-9d31-2a66d68a5262", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -146349,7 +146349,7 @@ "_postman_previewlanguage": "json" }, { - "id": "00fca14c-683d-49c1-964d-cf760c5ae469", + "id": "741c98bd-fbc0-45d2-b7a1-da3e2f216fbb", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -146411,7 +146411,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6abc959d-6c92-4641-9591-706e3fe64586", + "id": "982633b9-2710-4db9-8e23-9f95904150e6", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -146473,7 +146473,7 @@ "_postman_previewlanguage": "json" }, { - "id": "430ecea2-2cab-4444-82d5-086b4d1fdd00", + "id": "557720fe-7550-4a23-9678-8d26cc1e3acc", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -146535,7 +146535,7 @@ "_postman_previewlanguage": "json" }, { - "id": "29e7959b-198d-47f7-9e88-a16db2daf16e", + "id": "23c018af-1980-4efa-a3d6-b1870824d89d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -146603,7 +146603,7 @@ } }, { - "id": "d811b51e-ea08-41e4-9b15-e08a5f22d040", + "id": "6db81365-0a7b-4a0c-9cc9-30195034831f", "name": "Create Personal Access Token", "request": { "name": "Create Personal Access Token", @@ -146645,7 +146645,7 @@ }, "response": [ { - "id": "0bf13dcd-3182-44cd-89a6-c1bb2793ba87", + "id": "d5a085aa-b5e1-48f7-a32c-9ec7124a54b0", "name": "Created. Note - this is the only time Personal Access Tokens' secret attribute will be displayed.", "originalRequest": { "url": { @@ -146701,7 +146701,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ec356621-eb73-4da6-9c06-cf7387962fca", + "id": "20ef4723-901c-46bb-b907-646ad028654e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -146757,7 +146757,7 @@ "_postman_previewlanguage": "json" }, { - "id": "31449a32-0b5d-4796-a87b-738ba505a0b0", + "id": "b9f1a88b-66fc-4889-9401-ffb08d3c4143", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -146813,7 +146813,7 @@ "_postman_previewlanguage": "json" }, { - "id": "469be312-a954-456d-ad20-04662e6d06b6", + "id": "0f08edcd-8567-4b6b-b041-ca926084b0fe", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -146869,7 +146869,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f6b3407e-f1b3-416a-b13a-c9c53636a5c7", + "id": "c8c54ecb-4302-4342-b346-827891990101", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -146925,7 +146925,7 @@ "_postman_previewlanguage": "json" }, { - "id": "514e97ef-30b2-4f13-90e2-c18a65faeb6e", + "id": "16ae4f07-32a8-4c11-a5da-367ef6745340", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -146987,7 +146987,7 @@ } }, { - "id": "807ccb61-f9c2-4808-8489-240b1fffba12", + "id": "ade5637f-a8da-4651-8bc0-6e3fd1601126", "name": "Patch Personal Access Token", "request": { "name": "Patch Personal Access Token", @@ -147041,7 +147041,7 @@ }, "response": [ { - "id": "ca6519e3-bff7-40ac-9ab5-b896c2ee7aa0", + "id": "d6a9bdc8-579b-4306-8198-81c6d6cbd13c", "name": "Indicates the PATCH operation succeeded, and returns the PAT's new representation.", "originalRequest": { "url": { @@ -147098,7 +147098,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d0e1e2e0-f0d4-4c7b-9b73-5088f7ea8a95", + "id": "97aa110a-611b-4622-94e9-657b22f50d54", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -147155,7 +147155,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ba31d318-c2d0-41f4-9df0-f9875a3a5ee4", + "id": "e3e290ea-b6ab-4f92-99d3-594c5dc22bfc", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -147212,7 +147212,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f94aa476-7e57-4289-ba97-993f535b0b29", + "id": "3b9c494f-4eb2-4643-a786-8996707875fb", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -147269,7 +147269,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b3675703-0625-4bdc-b3aa-efe6a2a8d2bf", + "id": "b13f7856-f08e-4947-b99a-2ce130365b09", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -147326,7 +147326,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5cfbecc8-1f01-4ea9-8a86-b9e6636af7c7", + "id": "d695e39f-64ec-4eb5-a7b9-16943d353235", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -147383,7 +147383,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d1788ece-4c61-47fe-88b9-c1fc0af2365b", + "id": "2b2118c2-3670-4824-8fd0-e0e30a12767c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -147446,7 +147446,7 @@ } }, { - "id": "48eab059-b513-445b-8bbb-6954e79d6366", + "id": "490f0fb2-a1d4-4a18-ab01-4f9a634eb6d1", "name": "Delete Personal Access Token", "request": { "name": "Delete Personal Access Token", @@ -147487,7 +147487,7 @@ }, "response": [ { - "id": "895e8f17-e5a7-4434-83bf-af826e23bdf7", + "id": "f805c82f-478f-45b0-bb13-350e880f503d", "name": "No content.", "originalRequest": { "url": { @@ -147521,7 +147521,7 @@ "_postman_previewlanguage": "text" }, { - "id": "f500a2e8-f9d5-4111-915a-46be2f57993c", + "id": "5cd4ab7c-f767-4484-9777-7a2d6b13c95f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -147565,7 +147565,7 @@ "_postman_previewlanguage": "json" }, { - "id": "12dd84de-e9da-4f81-a4ca-f767ac39c5e0", + "id": "e1d7bfa9-67b5-4343-9425-f1374bdc27eb", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -147609,7 +147609,7 @@ "_postman_previewlanguage": "json" }, { - "id": "720b8f11-2316-4b42-8c97-290dacb2ff02", + "id": "ddc1be43-20fd-4611-9b12-8c859f38aa0c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -147653,7 +147653,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0805c531-3a22-4de3-9ab8-19654663c8a4", + "id": "f23d1655-1178-4106-82fc-da06e4cfb7d7", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -147697,7 +147697,7 @@ "_postman_previewlanguage": "json" }, { - "id": "12512953-e281-429e-910b-cd9b58b64efc", + "id": "b5e0e30a-6e9a-4ea6-9f98-aaba3ffc1f55", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -147741,7 +147741,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cc14cd7b-2cb1-4e31-a642-8351e570be55", + "id": "520ad903-9922-41bc-ae37-d00e928bb3a7", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -147797,7 +147797,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": "b917862b-e433-4230-8a57-4527b729a8a2", + "id": "d66b62bf-57b4-4062-8970-3a7691ca063a", "name": "Get Public Identity Config", "request": { "name": "Get Public Identity Config", @@ -147826,7 +147826,7 @@ }, "response": [ { - "id": "6005e876-995c-4459-8fc1-290208286b98", + "id": "6370122d-6f09-4dd6-b08b-2f80d1d74825", "name": "Request succeeded.", "originalRequest": { "url": { @@ -147869,7 +147869,7 @@ "_postman_previewlanguage": "json" }, { - "id": "da58cdf3-be0d-468a-952b-c0fb3a6e2e41", + "id": "b3219ce6-2800-4d2f-ab05-d6f35da5105d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -147912,7 +147912,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2747bb53-d176-4272-b43a-ace18e57e91f", + "id": "e4e3d4d1-f2c5-4fa6-8e2f-1a4ee5312276", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -147955,7 +147955,7 @@ "_postman_previewlanguage": "json" }, { - "id": "84c5d841-7ef9-4cb7-aef9-ed0a3974e002", + "id": "03653e10-a8aa-499b-aeed-47d612d23406", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -147998,7 +147998,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7a82d3b0-50c1-416a-9873-3c4bab6585ae", + "id": "2bf792ab-9366-42d5-9137-04f9d9e0d713", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -148041,7 +148041,7 @@ "_postman_previewlanguage": "json" }, { - "id": "38d24dea-8daa-484c-a874-41c5cc5fdd47", + "id": "9246959b-f898-4493-b9aa-4a6321160fa3", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -148090,7 +148090,7 @@ } }, { - "id": "6f67b4a9-5835-423c-adb1-4ca43da9c97d", + "id": "2ca1d257-e3e2-4e13-a42b-efb7a9b5cfe1", "name": "Update Public Identity Config", "request": { "name": "Update Public Identity Config", @@ -148132,7 +148132,7 @@ }, "response": [ { - "id": "b5f897c1-41b8-45ff-865e-10c4a8a224c8", + "id": "ea642312-538e-4ac8-8691-b0bfb0c561d4", "name": "Request succeeded.", "originalRequest": { "url": { @@ -148188,7 +148188,7 @@ "_postman_previewlanguage": "json" }, { - "id": "60546ce1-a87b-4bea-83f5-4a634c20024c", + "id": "067fac67-cb60-4d0c-a14f-0ea1b884f302", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -148244,7 +148244,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7c4560cd-da74-4b55-a630-fdb2ca522d81", + "id": "1e3cde18-49a8-4fda-b0bf-a4e0d10533dc", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -148300,7 +148300,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ef1d095b-6ebf-4d58-88b7-469f136c87b8", + "id": "db66229b-a8e7-4e21-9b37-4ddce82352b9", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -148356,7 +148356,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d2ccee9c-9a0d-4493-9732-acb42b315fc1", + "id": "e5a4138b-8b9f-4fc3-acfe-3d15ceaf9b16", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -148412,7 +148412,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4de46477-0b62-4f9e-9482-daee6eed1cc1", + "id": "571c80c1-3ab5-46d8-88c3-74d8b1ad044b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -148480,7 +148480,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": "2b7e8173-d3cf-4b33-ac88-fe2cf44c270b", + "id": "82119f5f-c7bc-4fce-a0a7-9fe87fad5b80", "name": "Requestable Objects List", "request": { "name": "Requestable Objects List", @@ -148591,7 +148591,7 @@ }, "response": [ { - "id": "608b4b82-54cb-47da-8a59-5067529bb993", + "id": "71510f21-406a-4f86-af87-7b9a94b72e40", "name": "List of requestable objects", "originalRequest": { "url": { @@ -148716,7 +148716,7 @@ "_postman_previewlanguage": "json" }, { - "id": "509ddf24-3dc0-4d3f-8bdf-a88cdf0aeafd", + "id": "b31a5912-3b88-41d6-8b62-2708382618e1", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -148841,7 +148841,7 @@ "_postman_previewlanguage": "json" }, { - "id": "339b51f5-9b37-4c1a-bace-d3f8fb6a9183", + "id": "4ec1dd0b-3649-4614-bae0-88110f83524e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -148966,7 +148966,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b75f6ace-260a-4ce3-9091-2497690a0670", + "id": "17e6aa89-cf00-4829-aa48-1d53f22c2b5a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -149091,7 +149091,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6c59fd1a-7d79-48ee-b58c-10b3f5d83ab9", + "id": "db04512d-7a9f-46ee-b3bc-38560a5d3f82", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -149216,7 +149216,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4d8518aa-cc68-48c1-a77a-b9991fb907cc", + "id": "afcb55ea-ea69-49a5-a3f4-9f6f18ed80e6", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -149353,7 +149353,7 @@ "description": "", "item": [ { - "id": "7faa38ff-f170-4620-a959-6f6b92880147", + "id": "9e2e4617-129e-4b0c-b29b-953013fac00f", "name": "Generate insights for roles", "request": { "name": "Generate insights for roles", @@ -149383,7 +149383,7 @@ }, "response": [ { - "id": "572f20e3-3872-4967-879b-e591f1ad18af", + "id": "8a29fc5f-4b9d-45f0-989c-baf6f508459f", "name": "Submitted a role insights generation request", "originalRequest": { "url": { @@ -149427,7 +149427,7 @@ "_postman_previewlanguage": "json" }, { - "id": "06484c1e-9730-4f7f-8d40-fa5d105088ab", + "id": "2d9a26e7-d44d-45eb-b893-cc413b51a253", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -149471,7 +149471,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f3e2d3b4-d8b2-4f4e-b3a2-36d1efc93cdc", + "id": "94b548ce-8f9c-4b08-9d8f-09a74c51e892", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -149515,7 +149515,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0611160f-c479-43ff-91e7-d7b7f2276ccd", + "id": "7be1018c-de96-4251-90ff-01997c93fb09", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -149559,7 +149559,7 @@ "_postman_previewlanguage": "json" }, { - "id": "92d9a202-7187-4eb2-8822-4418c3de228f", + "id": "e25dddae-c25c-4bff-9994-607d50fad4c1", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -149603,7 +149603,7 @@ "_postman_previewlanguage": "json" }, { - "id": "659d12e7-1093-4206-88bc-3df833a8a517", + "id": "f598298c-cb71-4802-b22c-1ae813234783", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -149653,7 +149653,7 @@ } }, { - "id": "1d05a6cf-7e9d-4ff1-9677-c047e48395d3", + "id": "37b54b54-9146-40d1-a5e3-9523cdf6dc75", "name": "Returns metadata from prior request.", "request": { "name": "Returns metadata from prior request.", @@ -149695,7 +149695,7 @@ }, "response": [ { - "id": "d25ad600-0bba-4f36-82f0-f85630673913", + "id": "2ecadae2-37fc-4893-9247-1f75c295bbb3", "name": "Succeeded. Returns details of an earlier role insights request.", "originalRequest": { "url": { @@ -149740,7 +149740,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3f8e5768-4009-49f9-8d30-93829a50f7c4", + "id": "9414d728-5800-42e4-b1ef-3620b20572ef", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -149785,7 +149785,7 @@ "_postman_previewlanguage": "json" }, { - "id": "46b56fd0-3cf8-4fc2-9725-58c2a9b1c165", + "id": "70bf39c2-d3b1-4d98-9302-63854f72696c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -149830,7 +149830,7 @@ "_postman_previewlanguage": "json" }, { - "id": "94426f38-fa7e-4c6a-ba1b-83f4a7427b66", + "id": "7efa4a5b-2911-4cf0-ab13-3a785768bf0b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -149875,7 +149875,7 @@ "_postman_previewlanguage": "json" }, { - "id": "06eef6f6-5f17-42c3-82e2-424a3e2aebce", + "id": "effd4478-a83f-4552-be13-765e97474cad", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -149920,7 +149920,7 @@ "_postman_previewlanguage": "json" }, { - "id": "872fe846-85d4-48d0-a049-03c17d4c7e35", + "id": "758079fe-818a-4e2e-891e-04acf2d22018", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -149971,7 +149971,7 @@ } }, { - "id": "f2c96a50-d688-4db4-a079-27d207368377", + "id": "8efb9f8a-c466-46a8-b0d4-df00652e5d4d", "name": "Get role insights summary information", "request": { "name": "Get role insights summary information", @@ -150001,7 +150001,7 @@ }, "response": [ { - "id": "b199fcc4-1447-4e45-96df-8e289f41dfb6", + "id": "2c6da0c2-2494-4943-a555-8d5952976875", "name": "Succeeded. Returns high level counts.", "originalRequest": { "url": { @@ -150040,12 +150040,12 @@ "value": "application/json" } ], - "body": "{\n \"numberOfUpdates\": 2382792,\n \"lastGenerated\": \"2020-05-19T13:49:37.385Z\",\n \"entitlementsIncludedInRoles\": 45,\n \"totalNumberOfEntitlements\": 250,\n \"identitiesWithAccessViaRoles\": 550,\n \"totalNumberOfIdentities\": 980\n}", + "body": "{\n \"numberOfUpdates\": -55423944,\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": "85f5ecea-cbf5-4ef7-b06d-7657afcf4db0", + "id": "bc0ed08e-8650-463e-89a5-8e4c27ab0ed0", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -150089,7 +150089,7 @@ "_postman_previewlanguage": "json" }, { - "id": "34167920-86c1-4612-929c-5bd045ddfa30", + "id": "6fde1b1a-1e25-4269-903c-9c9ee5474595", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -150133,7 +150133,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b45b0049-55f3-4eaa-9a75-a3dc62db1e19", + "id": "025f1f8d-80fc-44b3-8eeb-d5b7f827865b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -150177,7 +150177,7 @@ "_postman_previewlanguage": "json" }, { - "id": "36a88391-49df-43c7-9b49-3eaa59b44672", + "id": "93b5d183-a0b6-42ca-8439-bea1e9853f4b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -150227,7 +150227,7 @@ } }, { - "id": "8c87e4e9-26af-4684-8053-1fd9567eddab", + "id": "91dd297d-a7f8-472f-a351-6f9a0471a391", "name": "Get role insights", "request": { "name": "Get role insights", @@ -150302,7 +150302,7 @@ }, "response": [ { - "id": "4b084734-746f-4d47-a172-cc7b26cef6ea", + "id": "d6471dd5-df18-4121-b9a4-f937dfba109e", "name": "Succeeded. Returns a list of roles with information about insights for each role.", "originalRequest": { "url": { @@ -150386,12 +150386,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"1467e61e-f284-439c-ba2d-c6cc11cf0941\",\n \"numberOfUpdates\": 5,\n \"createdDate\": \"1946-11-15T05:59:07.118Z\",\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\": \"Excepteur aliqua aute cupidatat sint\"\n }\n },\n {\n \"id\": \"1467e61e-f284-439c-ba2d-c6cc11cf0941\",\n \"numberOfUpdates\": 5,\n \"createdDate\": \"1970-07-06T13:26:43.108Z\",\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 commodo qui cillum\"\n }\n }\n]", + "body": "[\n {\n \"id\": \"1467e61e-f284-439c-ba2d-c6cc11cf0941\",\n \"numberOfUpdates\": 5,\n \"createdDate\": \"1971-10-06T12:51:17.773Z\",\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\": \"tempor culpa\"\n }\n },\n {\n \"id\": \"1467e61e-f284-439c-ba2d-c6cc11cf0941\",\n \"numberOfUpdates\": 5,\n \"createdDate\": \"1992-08-22T00:20:12.842Z\",\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\": \"fugiat ut qui nostrud\"\n }\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "98aa7f26-17cb-49fd-8569-a82fe39d650d", + "id": "568ea1e0-7573-4a1e-b914-44c04d4641e7", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -150480,7 +150480,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2f5bcfde-75bd-47b5-bc86-8c00c2b94a27", + "id": "a652bbe1-4ec4-43f2-8435-f0856060700f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -150569,7 +150569,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4a059a97-a209-4652-bd8b-3ba1bfe9f5be", + "id": "e75f7f67-300d-403c-b4aa-3b67c9374e75", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -150658,7 +150658,7 @@ "_postman_previewlanguage": "json" }, { - "id": "76255e26-6969-4482-82fc-dbc1927f8739", + "id": "9715e6f1-3f75-4f5f-a683-b3c9c3c9a9c6", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -150753,7 +150753,7 @@ } }, { - "id": "0b99c1ec-1af3-4e37-a179-fa2127821f02", + "id": "8d378453-e571-4b4b-ab6e-b1355586bfb6", "name": "Get a single role insight", "request": { "name": "Get a single role insight", @@ -150794,7 +150794,7 @@ }, "response": [ { - "id": "1e17bc1d-3cb7-4d54-b4b8-10ed060dacce", + "id": "0e4b5803-b357-4f63-bc41-f543feb9e3c1", "name": "Succeeded. Returns information about insights for a single role.", "originalRequest": { "url": { @@ -150833,12 +150833,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"1467e61e-f284-439c-ba2d-c6cc11cf0941\",\n \"numberOfUpdates\": 5,\n \"createdDate\": \"1945-05-12T09:32:36.618Z\",\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\": \"e\"\n }\n}", + "body": "{\n \"id\": \"1467e61e-f284-439c-ba2d-c6cc11cf0941\",\n \"numberOfUpdates\": 5,\n \"createdDate\": \"1952-10-30T06:07:15.404Z\",\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\": \"esse in\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "2ba6b3b8-5111-4774-ae43-c4095feef842", + "id": "207257f8-789c-4117-9c2f-6e63d6abc597", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -150882,7 +150882,7 @@ "_postman_previewlanguage": "json" }, { - "id": "81749454-1a80-4cdb-ba17-2228b7b58678", + "id": "cc8a80ed-fc36-4135-938c-f985ef6ce09e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -150926,7 +150926,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b9e059fb-0238-49ba-b823-8eaba9b4f321", + "id": "7e7fea4c-d160-462b-a750-1ba36bc2baa7", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -150970,7 +150970,7 @@ "_postman_previewlanguage": "json" }, { - "id": "61d19237-093b-47e4-ab6e-9c250a9d79db", + "id": "a03304ad-5baf-4c64-b4b2-08eb1220d8a6", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -151020,7 +151020,7 @@ } }, { - "id": "d8659eb1-2f8b-4ada-a0c8-d5b85a791187", + "id": "b77f0884-8289-4c76-9f7c-d14dc08ab207", "name": "Get entitlement insights for a role", "request": { "name": "Get entitlement insights for a role", @@ -151045,7 +151045,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "labore" + "value": "laborum qui aliquip irure" }, { "disabled": true, @@ -151081,7 +151081,7 @@ }, "response": [ { - "id": "1ecd602b-2edd-4d28-a283-ef9e5a19f564", + "id": "e67d342d-8d6a-432a-9982-05aa35b82d8b", "name": "Succeeded. Returns a list of entitlements to be added for a role.", "originalRequest": { "url": { @@ -151101,7 +151101,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "labore" + "value": "laborum qui aliquip irure" }, { "disabled": true, @@ -151140,12 +151140,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"name\": \"adipisi\",\n \"id\": \"magna aliqua\",\n \"description\": \"sit dolore proident do\",\n \"attribute\": \"nisi non sed\",\n \"value\": \"tempor Ut\",\n \"source\": \"esse ex ipsum voluptate\",\n \"insight\": {\n \"type\": \"ADD\",\n \"identitiesWithAccess\": 850,\n \"identitiesImpacted\": 150,\n \"totalNumberOfIdentities\": 1000,\n \"impactedIdentityNames\": \"exercitation aliqua officia adipisicing\"\n }\n },\n {\n \"name\": \"proident reprehenderit\",\n \"id\": \"ullamco\",\n \"description\": \"magna cillum ipsum ex\",\n \"attribute\": \"aute eiu\",\n \"value\": \"consequat aliquip\",\n \"source\": \"Lorem laboris proident voluptate\",\n \"insight\": {\n \"type\": \"ADD\",\n \"identitiesWithAccess\": 850,\n \"identitiesImpacted\": 150,\n \"totalNumberOfIdentities\": 1000,\n \"impactedIdentityNames\": \"nulla tempor adipisicing\"\n }\n }\n]", + "body": "[\n {\n \"name\": \"enim velit exercitation anim\",\n \"id\": \"irure magna ad qui\",\n \"description\": \"reprehenderit occaecat Excepteur\",\n \"attribute\": \"ut eu\",\n \"value\": \"deserunt et sit ut\",\n \"source\": \"qui mollit magna est deserunt\",\n \"insight\": {\n \"type\": \"ADD\",\n \"identitiesWithAccess\": 850,\n \"identitiesImpacted\": 150,\n \"totalNumberOfIdentities\": 1000,\n \"impactedIdentityNames\": \"velit Lorem incididunt dol\"\n }\n },\n {\n \"name\": \"in magna\",\n \"id\": \"tempor\",\n \"description\": \"ut laboris repr\",\n \"attribute\": \"ad\",\n \"value\": \"officia\",\n \"source\": \"aute nostrud cupidatat culpa\",\n \"insight\": {\n \"type\": \"ADD\",\n \"identitiesWithAccess\": 850,\n \"identitiesImpacted\": 150,\n \"totalNumberOfIdentities\": 1000,\n \"impactedIdentityNames\": \"esse\"\n }\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "abd0af47-d2d8-41a8-bb98-27ec9495ad91", + "id": "26df5b04-18c2-4814-85fb-9b595cb1ae9b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -151165,7 +151165,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "labore" + "value": "laborum qui aliquip irure" }, { "disabled": true, @@ -151209,7 +151209,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2894f678-3fe0-404b-9db9-952f7a0a36a9", + "id": "c272df5d-e074-4d77-a55b-42b9f9d3720f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -151229,7 +151229,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "labore" + "value": "laborum qui aliquip irure" }, { "disabled": true, @@ -151273,7 +151273,7 @@ "_postman_previewlanguage": "json" }, { - "id": "060d4ce3-adc4-448e-9ec4-d5e87c1ca81a", + "id": "f0fe4442-6288-4c33-ae80-5ff192add2ff", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -151293,7 +151293,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "labore" + "value": "laborum qui aliquip irure" }, { "disabled": true, @@ -151337,7 +151337,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8934c5a8-e70b-4f0b-91fe-52c77f0d5101", + "id": "6c2c1fd8-9cbf-44bc-a8ef-f84d64e075e4", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -151357,7 +151357,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "labore" + "value": "laborum qui aliquip irure" }, { "disabled": true, @@ -151407,7 +151407,7 @@ } }, { - "id": "7cf3d4fa-f4b4-48a9-a693-940d1aa6674e", + "id": "864b3488-b452-4fe8-9fde-12421ae36891", "name": "Download entitlement insights for a role", "request": { "name": "Download entitlement insights for a role", @@ -151469,7 +151469,7 @@ }, "response": [ { - "id": "faa2ac1f-9cdb-4297-bcde-2c45f2c6cf4f", + "id": "600d68eb-1d91-4254-8a6a-ad5650d9225a", "name": "Succeeded. Returns a csv file containing a list of entitlements to be added for a role.", "originalRequest": { "url": { @@ -151529,12 +151529,12 @@ "value": "text/csv" } ], - "body": "labore", + "body": "laborum qui aliquip irure", "cookie": [], "_postman_previewlanguage": "text" }, { - "id": "70dc7575-49b3-4f1c-9bac-cc68c07f5d51", + "id": "10ce3fa3-e468-4c56-bee7-0c731b855509", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -151599,7 +151599,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6644d260-88c9-4b03-a578-f04cb1b1e6da", + "id": "ebc72ee5-74b1-462b-b818-66f486262480", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -151664,7 +151664,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b76851c6-9de3-4732-a276-abe0249db193", + "id": "1de7b7d7-2b9c-474f-a3b6-b0dae6a367f1", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -151729,7 +151729,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e717c0b8-be59-4def-a67e-4dabe2b7d266", + "id": "a0476ec3-997d-4eb6-b9c3-ba2b50ff76fb", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -151800,7 +151800,7 @@ } }, { - "id": "971b3c29-856f-4508-b786-44586b63032e", + "id": "8b1508a3-16e9-4fb3-a851-fc894524a348", "name": "Get current entitlement for a role", "request": { "name": "Get current entitlement for a role", @@ -151852,7 +151852,7 @@ }, "response": [ { - "id": "53ee1ffd-088a-4ebc-9e8a-101b0e3b4614", + "id": "921d9be1-f38f-40ef-9ada-90c67f8e0dca", "name": "Succeeded. Returns a list of current or pre-existing entitlements for a role.", "originalRequest": { "url": { @@ -151907,7 +151907,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5f1b8bf6-ea01-42d4-b34e-cb582192b516", + "id": "254ff2b5-6aee-4d33-9e0d-dd2a8b4c9798", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -151962,7 +151962,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4c2c85d1-2415-4a02-b907-3f022d3b1e78", + "id": "18b9e5c9-0175-4ced-a6d0-9e8ac9942161", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -152017,7 +152017,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0949a1f9-e63c-436c-88d6-b7c788bcd7d6", + "id": "f1e32ba0-81eb-4d4c-adc3-4a2f3ebbc5e5", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -152072,7 +152072,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0ed41cb7-46e8-474b-b66f-efd78d9ab1e1", + "id": "b4fe575d-0897-4367-8b7c-68b9ca6f7c4c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -152133,7 +152133,7 @@ } }, { - "id": "2616c569-9bfb-4bc1-afe1-518a9a88f7b2", + "id": "48781ab3-1767-4b17-a24f-4fba110a9507", "name": "Get identities for a suggested entitlement (for a role)", "request": { "name": "Get identities for a suggested entitlement (for a role)", @@ -152242,7 +152242,7 @@ }, "response": [ { - "id": "9da14f54-3954-45d4-a436-f8055a46a337", + "id": "7e565f3e-97bb-48d3-9f2c-3c874915ef04", "name": "Succeeded. Returns a list of identities with or without the entitlement.", "originalRequest": { "url": { @@ -152344,7 +152344,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b1aab5a8-592d-43ff-b455-1ee9e270e2fd", + "id": "7c28f411-3866-440e-9eec-75a88414da42", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -152446,7 +152446,7 @@ "_postman_previewlanguage": "json" }, { - "id": "065e97ab-f641-4c40-9842-414843d4438b", + "id": "4f3955ff-7cf7-45f5-a3f3-2e840b60a3a0", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -152548,7 +152548,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4c7caaed-8531-4d0c-99bb-164cb2361b3a", + "id": "bbfb80f5-e27e-4e90-8d2f-9ca711373ef0", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -152650,7 +152650,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8f22989c-e18c-47cf-a638-ec2912ac155d", + "id": "92f9db82-b8ca-48ff-ab32-ca5d0759b7c3", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -152764,7 +152764,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": "18de704f-1c72-4e1c-9fc2-5cf7f60835fb", + "id": "631b0aef-6760-459c-98a3-714864843711", "name": "List Roles", "request": { "name": "List Roles", @@ -152866,7 +152866,7 @@ }, "response": [ { - "id": "57095e46-ca03-4910-8f27-bf32b8081b40", + "id": "b570bef4-b446-4f42-a736-37c70d0ee90f", "name": "List of Roles", "originalRequest": { "url": { @@ -152977,12 +152977,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"name\": \"Role 2567\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"support\"\n },\n \"id\": \"2c918086749d78830174a1a40e121518\",\n \"created\": \"2021-03-01T22:32:58.104Z\",\n \"modified\": \"2021-03-02T20:22:28.104Z\",\n \"description\": \"Urna amet cursus pellentesque nisl orci maximus lorem nisl euismod fusce morbi placerat adipiscing maecenas nisi tristique et metus et lacus sed morbi nunc nisl maximus magna arcu varius sollicitudin elementum enim maecenas nisi id ipsum tempus fusce diam ipsum tortor.\",\n \"accessProfiles\": [\n {\n \"id\": \"ff808081751e6e129f1518161919ecca\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"Access Profile 2567\"\n },\n {\n \"id\": \"ff808081751e6e129f1518161919ecca\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"Access Profile 2567\"\n }\n ],\n \"entitlements\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n }\n ],\n \"membership\": {\n \"type\": \"IDENTITY_LIST\",\n \"criteria\": {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n }\n ]\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n }\n ]\n }\n ]\n },\n \"identities\": [\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\",\n \"aliasName\": \"t.edison\"\n },\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\",\n \"aliasName\": \"t.edison\"\n }\n ]\n },\n \"legacyMembershipInfo\": {\n \"type\": \"IDENTITY_LIST\"\n },\n \"enabled\": true,\n \"requestable\": true,\n \"accessRequestConfig\": {\n \"commentsRequired\": true,\n \"denialCommentsRequired\": true,\n \"approvalSchemes\": [\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n },\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n }\n ]\n },\n \"revocationRequestConfig\": null,\n \"segments\": [\n \"f7b1b8a3-5fed-4fd4-ad29-82014e137e19\",\n \"29cb6c06-1da8-43ea-8be4-b3125f248f2a\"\n ],\n \"dimensional\": true,\n \"dimensionRefs\": \"eu pariatur\"\n },\n {\n \"name\": \"Role 2567\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"support\"\n },\n \"id\": \"2c918086749d78830174a1a40e121518\",\n \"created\": \"2021-03-01T22:32:58.104Z\",\n \"modified\": \"2021-03-02T20:22:28.104Z\",\n \"description\": \"Urna amet cursus pellentesque nisl orci maximus lorem nisl euismod fusce morbi placerat adipiscing maecenas nisi tristique et metus et lacus sed morbi nunc nisl maximus magna arcu varius sollicitudin elementum enim maecenas nisi id ipsum tempus fusce diam ipsum tortor.\",\n \"accessProfiles\": [\n {\n \"id\": \"ff808081751e6e129f1518161919ecca\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"Access Profile 2567\"\n },\n {\n \"id\": \"ff808081751e6e129f1518161919ecca\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"Access Profile 2567\"\n }\n ],\n \"entitlements\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n }\n ],\n \"membership\": {\n \"type\": \"IDENTITY_LIST\",\n \"criteria\": {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n }\n ]\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n }\n ]\n }\n ]\n },\n \"identities\": [\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\",\n \"aliasName\": \"t.edison\"\n },\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\",\n \"aliasName\": \"t.edison\"\n }\n ]\n },\n \"legacyMembershipInfo\": {\n \"type\": \"IDENTITY_LIST\"\n },\n \"enabled\": true,\n \"requestable\": true,\n \"accessRequestConfig\": {\n \"commentsRequired\": true,\n \"denialCommentsRequired\": true,\n \"approvalSchemes\": [\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n },\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n }\n ]\n },\n \"revocationRequestConfig\": null,\n \"segments\": [\n \"f7b1b8a3-5fed-4fd4-ad29-82014e137e19\",\n \"29cb6c06-1da8-43ea-8be4-b3125f248f2a\"\n ],\n \"dimensional\": false,\n \"dimensionRefs\": \"nulla non consectetur\"\n }\n]", + "body": "[\n {\n \"name\": \"Role 2567\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"support\"\n },\n \"id\": \"2c918086749d78830174a1a40e121518\",\n \"created\": \"2021-03-01T22:32:58.104Z\",\n \"modified\": \"2021-03-02T20:22:28.104Z\",\n \"description\": \"Urna amet cursus pellentesque nisl orci maximus lorem nisl euismod fusce morbi placerat adipiscing maecenas nisi tristique et metus et lacus sed morbi nunc nisl maximus magna arcu varius sollicitudin elementum enim maecenas nisi id ipsum tempus fusce diam ipsum tortor.\",\n \"accessProfiles\": [\n {\n \"id\": \"ff808081751e6e129f1518161919ecca\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"Access Profile 2567\"\n },\n {\n \"id\": \"ff808081751e6e129f1518161919ecca\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"Access Profile 2567\"\n }\n ],\n \"entitlements\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n }\n ],\n \"membership\": {\n \"type\": \"IDENTITY_LIST\",\n \"criteria\": {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n }\n ]\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n }\n ]\n }\n ]\n },\n \"identities\": [\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\",\n \"aliasName\": \"t.edison\"\n },\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\",\n \"aliasName\": \"t.edison\"\n }\n ]\n },\n \"legacyMembershipInfo\": {\n \"type\": \"IDENTITY_LIST\"\n },\n \"enabled\": true,\n \"requestable\": true,\n \"accessRequestConfig\": {\n \"commentsRequired\": true,\n \"denialCommentsRequired\": true,\n \"approvalSchemes\": [\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n },\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n }\n ]\n },\n \"revocationRequestConfig\": null,\n \"segments\": [\n \"f7b1b8a3-5fed-4fd4-ad29-82014e137e19\",\n \"29cb6c06-1da8-43ea-8be4-b3125f248f2a\"\n ],\n \"dimensional\": false,\n \"dimensionRefs\": \"ea nisi est\"\n },\n {\n \"name\": \"Role 2567\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"support\"\n },\n \"id\": \"2c918086749d78830174a1a40e121518\",\n \"created\": \"2021-03-01T22:32:58.104Z\",\n \"modified\": \"2021-03-02T20:22:28.104Z\",\n \"description\": \"Urna amet cursus pellentesque nisl orci maximus lorem nisl euismod fusce morbi placerat adipiscing maecenas nisi tristique et metus et lacus sed morbi nunc nisl maximus magna arcu varius sollicitudin elementum enim maecenas nisi id ipsum tempus fusce diam ipsum tortor.\",\n \"accessProfiles\": [\n {\n \"id\": \"ff808081751e6e129f1518161919ecca\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"Access Profile 2567\"\n },\n {\n \"id\": \"ff808081751e6e129f1518161919ecca\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"Access Profile 2567\"\n }\n ],\n \"entitlements\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n }\n ],\n \"membership\": {\n \"type\": \"IDENTITY_LIST\",\n \"criteria\": {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n }\n ]\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n }\n ]\n }\n ]\n },\n \"identities\": [\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\",\n \"aliasName\": \"t.edison\"\n },\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\",\n \"aliasName\": \"t.edison\"\n }\n ]\n },\n \"legacyMembershipInfo\": {\n \"type\": \"IDENTITY_LIST\"\n },\n \"enabled\": true,\n \"requestable\": true,\n \"accessRequestConfig\": {\n \"commentsRequired\": true,\n \"denialCommentsRequired\": true,\n \"approvalSchemes\": [\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n },\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n }\n ]\n },\n \"revocationRequestConfig\": null,\n \"segments\": [\n \"f7b1b8a3-5fed-4fd4-ad29-82014e137e19\",\n \"29cb6c06-1da8-43ea-8be4-b3125f248f2a\"\n ],\n \"dimensional\": false,\n \"dimensionRefs\": \"eiusmod deserunt\"\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "32478460-2cd7-4322-9fab-4e2529562bfe", + "id": "e36405f4-0793-4e9b-9af7-31717ccfcf85", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -153098,7 +153098,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8c9e9f5a-59ad-468b-987c-22ac4a5f958d", + "id": "fdfde54b-2206-4b47-9659-725fa6bcb7d4", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -153214,7 +153214,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b67a9144-ec51-44d6-a9ab-15f1d4b6c685", + "id": "e3cd2c7c-8404-4d7f-958a-71dadd6a9601", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -153330,7 +153330,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0b545ef9-da08-4677-a014-578715d50c51", + "id": "f37b0a0f-fe23-445e-8bef-7ec50e85e8da", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -153446,7 +153446,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2d702504-dff6-47e6-8640-3268192b67e8", + "id": "257681b1-af43-4ffb-b88a-25509db01222", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -153568,7 +153568,7 @@ } }, { - "id": "ce41e565-274c-41fa-8156-f8026060186a", + "id": "00c7ea46-315b-4f6e-978f-21e960a91036", "name": "Create a Role", "request": { "name": "Create a Role", @@ -153599,7 +153599,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"Role 2567\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"support\"\n },\n \"id\": \"2c918086749d78830174a1a40e121518\",\n \"created\": \"2021-03-01T22:32:58.104Z\",\n \"modified\": \"2021-03-02T20:22:28.104Z\",\n \"description\": \"Urna amet cursus pellentesque nisl orci maximus lorem nisl euismod fusce morbi placerat adipiscing maecenas nisi tristique et metus et lacus sed morbi nunc nisl maximus magna arcu varius sollicitudin elementum enim maecenas nisi id ipsum tempus fusce diam ipsum tortor.\",\n \"accessProfiles\": [\n {\n \"id\": \"ff808081751e6e129f1518161919ecca\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"Access Profile 2567\"\n },\n {\n \"id\": \"ff808081751e6e129f1518161919ecca\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"Access Profile 2567\"\n }\n ],\n \"entitlements\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n }\n ],\n \"membership\": {\n \"type\": \"IDENTITY_LIST\",\n \"criteria\": {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n }\n ]\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n }\n ]\n }\n ]\n },\n \"identities\": [\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\",\n \"aliasName\": \"t.edison\"\n },\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\",\n \"aliasName\": \"t.edison\"\n }\n ]\n },\n \"legacyMembershipInfo\": {\n \"type\": \"IDENTITY_LIST\"\n },\n \"enabled\": true,\n \"requestable\": true,\n \"accessRequestConfig\": {\n \"commentsRequired\": true,\n \"denialCommentsRequired\": true,\n \"approvalSchemes\": [\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n },\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n }\n ]\n },\n \"revocationRequestConfig\": null,\n \"segments\": [\n \"f7b1b8a3-5fed-4fd4-ad29-82014e137e19\",\n \"29cb6c06-1da8-43ea-8be4-b3125f248f2a\"\n ],\n \"dimensional\": false,\n \"dimensionRefs\": \"dolore minim\"\n}", + "raw": "{\n \"name\": \"Role 2567\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"support\"\n },\n \"id\": \"2c918086749d78830174a1a40e121518\",\n \"created\": \"2021-03-01T22:32:58.104Z\",\n \"modified\": \"2021-03-02T20:22:28.104Z\",\n \"description\": \"Urna amet cursus pellentesque nisl orci maximus lorem nisl euismod fusce morbi placerat adipiscing maecenas nisi tristique et metus et lacus sed morbi nunc nisl maximus magna arcu varius sollicitudin elementum enim maecenas nisi id ipsum tempus fusce diam ipsum tortor.\",\n \"accessProfiles\": [\n {\n \"id\": \"ff808081751e6e129f1518161919ecca\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"Access Profile 2567\"\n },\n {\n \"id\": \"ff808081751e6e129f1518161919ecca\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"Access Profile 2567\"\n }\n ],\n \"entitlements\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n }\n ],\n \"membership\": {\n \"type\": \"IDENTITY_LIST\",\n \"criteria\": {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n }\n ]\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n }\n ]\n }\n ]\n },\n \"identities\": [\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\",\n \"aliasName\": \"t.edison\"\n },\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\",\n \"aliasName\": \"t.edison\"\n }\n ]\n },\n \"legacyMembershipInfo\": {\n \"type\": \"IDENTITY_LIST\"\n },\n \"enabled\": true,\n \"requestable\": true,\n \"accessRequestConfig\": {\n \"commentsRequired\": true,\n \"denialCommentsRequired\": true,\n \"approvalSchemes\": [\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n },\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n }\n ]\n },\n \"revocationRequestConfig\": null,\n \"segments\": [\n \"f7b1b8a3-5fed-4fd4-ad29-82014e137e19\",\n \"29cb6c06-1da8-43ea-8be4-b3125f248f2a\"\n ],\n \"dimensional\": false,\n \"dimensionRefs\": \"deserunt exercitation an\"\n}", "options": { "raw": { "headerFamily": "json", @@ -153610,7 +153610,7 @@ }, "response": [ { - "id": "6df2abd8-c128-4375-b765-e57bbddc543d", + "id": "023ecd81-ff93-40d9-b897-8b63d99be6f8", "name": "Role created", "originalRequest": { "url": { @@ -153644,7 +153644,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"Role 2567\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"support\"\n },\n \"id\": \"2c918086749d78830174a1a40e121518\",\n \"created\": \"2021-03-01T22:32:58.104Z\",\n \"modified\": \"2021-03-02T20:22:28.104Z\",\n \"description\": \"Urna amet cursus pellentesque nisl orci maximus lorem nisl euismod fusce morbi placerat adipiscing maecenas nisi tristique et metus et lacus sed morbi nunc nisl maximus magna arcu varius sollicitudin elementum enim maecenas nisi id ipsum tempus fusce diam ipsum tortor.\",\n \"accessProfiles\": [\n {\n \"id\": \"ff808081751e6e129f1518161919ecca\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"Access Profile 2567\"\n },\n {\n \"id\": \"ff808081751e6e129f1518161919ecca\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"Access Profile 2567\"\n }\n ],\n \"entitlements\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n }\n ],\n \"membership\": {\n \"type\": \"IDENTITY_LIST\",\n \"criteria\": {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n }\n ]\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n }\n ]\n }\n ]\n },\n \"identities\": [\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\",\n \"aliasName\": \"t.edison\"\n },\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\",\n \"aliasName\": \"t.edison\"\n }\n ]\n },\n \"legacyMembershipInfo\": {\n \"type\": \"IDENTITY_LIST\"\n },\n \"enabled\": true,\n \"requestable\": true,\n \"accessRequestConfig\": {\n \"commentsRequired\": true,\n \"denialCommentsRequired\": true,\n \"approvalSchemes\": [\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n },\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n }\n ]\n },\n \"revocationRequestConfig\": null,\n \"segments\": [\n \"f7b1b8a3-5fed-4fd4-ad29-82014e137e19\",\n \"29cb6c06-1da8-43ea-8be4-b3125f248f2a\"\n ],\n \"dimensional\": false,\n \"dimensionRefs\": \"dolore minim\"\n}", + "raw": "{\n \"name\": \"Role 2567\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"support\"\n },\n \"id\": \"2c918086749d78830174a1a40e121518\",\n \"created\": \"2021-03-01T22:32:58.104Z\",\n \"modified\": \"2021-03-02T20:22:28.104Z\",\n \"description\": \"Urna amet cursus pellentesque nisl orci maximus lorem nisl euismod fusce morbi placerat adipiscing maecenas nisi tristique et metus et lacus sed morbi nunc nisl maximus magna arcu varius sollicitudin elementum enim maecenas nisi id ipsum tempus fusce diam ipsum tortor.\",\n \"accessProfiles\": [\n {\n \"id\": \"ff808081751e6e129f1518161919ecca\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"Access Profile 2567\"\n },\n {\n \"id\": \"ff808081751e6e129f1518161919ecca\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"Access Profile 2567\"\n }\n ],\n \"entitlements\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n }\n ],\n \"membership\": {\n \"type\": \"IDENTITY_LIST\",\n \"criteria\": {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n }\n ]\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n }\n ]\n }\n ]\n },\n \"identities\": [\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\",\n \"aliasName\": \"t.edison\"\n },\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\",\n \"aliasName\": \"t.edison\"\n }\n ]\n },\n \"legacyMembershipInfo\": {\n \"type\": \"IDENTITY_LIST\"\n },\n \"enabled\": true,\n \"requestable\": true,\n \"accessRequestConfig\": {\n \"commentsRequired\": true,\n \"denialCommentsRequired\": true,\n \"approvalSchemes\": [\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n },\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n }\n ]\n },\n \"revocationRequestConfig\": null,\n \"segments\": [\n \"f7b1b8a3-5fed-4fd4-ad29-82014e137e19\",\n \"29cb6c06-1da8-43ea-8be4-b3125f248f2a\"\n ],\n \"dimensional\": false,\n \"dimensionRefs\": \"deserunt exercitation an\"\n}", "options": { "raw": { "headerFamily": "json", @@ -153661,12 +153661,12 @@ "value": "application/json" } ], - "body": "{\n \"name\": \"Role 2567\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"support\"\n },\n \"id\": \"2c918086749d78830174a1a40e121518\",\n \"created\": \"2021-03-01T22:32:58.104Z\",\n \"modified\": \"2021-03-02T20:22:28.104Z\",\n \"description\": \"Urna amet cursus pellentesque nisl orci maximus lorem nisl euismod fusce morbi placerat adipiscing maecenas nisi tristique et metus et lacus sed morbi nunc nisl maximus magna arcu varius sollicitudin elementum enim maecenas nisi id ipsum tempus fusce diam ipsum tortor.\",\n \"accessProfiles\": [\n {\n \"id\": \"ff808081751e6e129f1518161919ecca\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"Access Profile 2567\"\n },\n {\n \"id\": \"ff808081751e6e129f1518161919ecca\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"Access Profile 2567\"\n }\n ],\n \"entitlements\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n }\n ],\n \"membership\": {\n \"type\": \"IDENTITY_LIST\",\n \"criteria\": {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n }\n ]\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n }\n ]\n }\n ]\n },\n \"identities\": [\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\",\n \"aliasName\": \"t.edison\"\n },\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\",\n \"aliasName\": \"t.edison\"\n }\n ]\n },\n \"legacyMembershipInfo\": {\n \"type\": \"IDENTITY_LIST\"\n },\n \"enabled\": true,\n \"requestable\": true,\n \"accessRequestConfig\": {\n \"commentsRequired\": true,\n \"denialCommentsRequired\": true,\n \"approvalSchemes\": [\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n },\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n }\n ]\n },\n \"revocationRequestConfig\": null,\n \"segments\": [\n \"f7b1b8a3-5fed-4fd4-ad29-82014e137e19\",\n \"29cb6c06-1da8-43ea-8be4-b3125f248f2a\"\n ],\n \"dimensional\": false,\n \"dimensionRefs\": \"dolore minim\"\n}", + "body": "{\n \"name\": \"Role 2567\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"support\"\n },\n \"id\": \"2c918086749d78830174a1a40e121518\",\n \"created\": \"2021-03-01T22:32:58.104Z\",\n \"modified\": \"2021-03-02T20:22:28.104Z\",\n \"description\": \"Urna amet cursus pellentesque nisl orci maximus lorem nisl euismod fusce morbi placerat adipiscing maecenas nisi tristique et metus et lacus sed morbi nunc nisl maximus magna arcu varius sollicitudin elementum enim maecenas nisi id ipsum tempus fusce diam ipsum tortor.\",\n \"accessProfiles\": [\n {\n \"id\": \"ff808081751e6e129f1518161919ecca\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"Access Profile 2567\"\n },\n {\n \"id\": \"ff808081751e6e129f1518161919ecca\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"Access Profile 2567\"\n }\n ],\n \"entitlements\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n }\n ],\n \"membership\": {\n \"type\": \"IDENTITY_LIST\",\n \"criteria\": {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n }\n ]\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n }\n ]\n }\n ]\n },\n \"identities\": [\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\",\n \"aliasName\": \"t.edison\"\n },\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\",\n \"aliasName\": \"t.edison\"\n }\n ]\n },\n \"legacyMembershipInfo\": {\n \"type\": \"IDENTITY_LIST\"\n },\n \"enabled\": true,\n \"requestable\": true,\n \"accessRequestConfig\": {\n \"commentsRequired\": true,\n \"denialCommentsRequired\": true,\n \"approvalSchemes\": [\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n },\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n }\n ]\n },\n \"revocationRequestConfig\": null,\n \"segments\": [\n \"f7b1b8a3-5fed-4fd4-ad29-82014e137e19\",\n \"29cb6c06-1da8-43ea-8be4-b3125f248f2a\"\n ],\n \"dimensional\": false,\n \"dimensionRefs\": \"deserunt exercitation an\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "8653fc87-ea21-41d3-b514-edd278a926ec", + "id": "d01dd759-d990-4a6d-bbea-50a50a0786e2", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -153700,7 +153700,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"Role 2567\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"support\"\n },\n \"id\": \"2c918086749d78830174a1a40e121518\",\n \"created\": \"2021-03-01T22:32:58.104Z\",\n \"modified\": \"2021-03-02T20:22:28.104Z\",\n \"description\": \"Urna amet cursus pellentesque nisl orci maximus lorem nisl euismod fusce morbi placerat adipiscing maecenas nisi tristique et metus et lacus sed morbi nunc nisl maximus magna arcu varius sollicitudin elementum enim maecenas nisi id ipsum tempus fusce diam ipsum tortor.\",\n \"accessProfiles\": [\n {\n \"id\": \"ff808081751e6e129f1518161919ecca\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"Access Profile 2567\"\n },\n {\n \"id\": \"ff808081751e6e129f1518161919ecca\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"Access Profile 2567\"\n }\n ],\n \"entitlements\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n }\n ],\n \"membership\": {\n \"type\": \"IDENTITY_LIST\",\n \"criteria\": {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n }\n ]\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n }\n ]\n }\n ]\n },\n \"identities\": [\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\",\n \"aliasName\": \"t.edison\"\n },\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\",\n \"aliasName\": \"t.edison\"\n }\n ]\n },\n \"legacyMembershipInfo\": {\n \"type\": \"IDENTITY_LIST\"\n },\n \"enabled\": true,\n \"requestable\": true,\n \"accessRequestConfig\": {\n \"commentsRequired\": true,\n \"denialCommentsRequired\": true,\n \"approvalSchemes\": [\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n },\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n }\n ]\n },\n \"revocationRequestConfig\": null,\n \"segments\": [\n \"f7b1b8a3-5fed-4fd4-ad29-82014e137e19\",\n \"29cb6c06-1da8-43ea-8be4-b3125f248f2a\"\n ],\n \"dimensional\": false,\n \"dimensionRefs\": \"dolore minim\"\n}", + "raw": "{\n \"name\": \"Role 2567\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"support\"\n },\n \"id\": \"2c918086749d78830174a1a40e121518\",\n \"created\": \"2021-03-01T22:32:58.104Z\",\n \"modified\": \"2021-03-02T20:22:28.104Z\",\n \"description\": \"Urna amet cursus pellentesque nisl orci maximus lorem nisl euismod fusce morbi placerat adipiscing maecenas nisi tristique et metus et lacus sed morbi nunc nisl maximus magna arcu varius sollicitudin elementum enim maecenas nisi id ipsum tempus fusce diam ipsum tortor.\",\n \"accessProfiles\": [\n {\n \"id\": \"ff808081751e6e129f1518161919ecca\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"Access Profile 2567\"\n },\n {\n \"id\": \"ff808081751e6e129f1518161919ecca\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"Access Profile 2567\"\n }\n ],\n \"entitlements\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n }\n ],\n \"membership\": {\n \"type\": \"IDENTITY_LIST\",\n \"criteria\": {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n }\n ]\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n }\n ]\n }\n ]\n },\n \"identities\": [\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\",\n \"aliasName\": \"t.edison\"\n },\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\",\n \"aliasName\": \"t.edison\"\n }\n ]\n },\n \"legacyMembershipInfo\": {\n \"type\": \"IDENTITY_LIST\"\n },\n \"enabled\": true,\n \"requestable\": true,\n \"accessRequestConfig\": {\n \"commentsRequired\": true,\n \"denialCommentsRequired\": true,\n \"approvalSchemes\": [\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n },\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n }\n ]\n },\n \"revocationRequestConfig\": null,\n \"segments\": [\n \"f7b1b8a3-5fed-4fd4-ad29-82014e137e19\",\n \"29cb6c06-1da8-43ea-8be4-b3125f248f2a\"\n ],\n \"dimensional\": false,\n \"dimensionRefs\": \"deserunt exercitation an\"\n}", "options": { "raw": { "headerFamily": "json", @@ -153722,7 +153722,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d602a01b-e6d4-42f0-9e14-f8c9ef7d8148", + "id": "8d9be926-a000-45c1-b5e9-3cd745a7b305", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -153756,7 +153756,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"Role 2567\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"support\"\n },\n \"id\": \"2c918086749d78830174a1a40e121518\",\n \"created\": \"2021-03-01T22:32:58.104Z\",\n \"modified\": \"2021-03-02T20:22:28.104Z\",\n \"description\": \"Urna amet cursus pellentesque nisl orci maximus lorem nisl euismod fusce morbi placerat adipiscing maecenas nisi tristique et metus et lacus sed morbi nunc nisl maximus magna arcu varius sollicitudin elementum enim maecenas nisi id ipsum tempus fusce diam ipsum tortor.\",\n \"accessProfiles\": [\n {\n \"id\": \"ff808081751e6e129f1518161919ecca\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"Access Profile 2567\"\n },\n {\n \"id\": \"ff808081751e6e129f1518161919ecca\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"Access Profile 2567\"\n }\n ],\n \"entitlements\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n }\n ],\n \"membership\": {\n \"type\": \"IDENTITY_LIST\",\n \"criteria\": {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n }\n ]\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n }\n ]\n }\n ]\n },\n \"identities\": [\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\",\n \"aliasName\": \"t.edison\"\n },\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\",\n \"aliasName\": \"t.edison\"\n }\n ]\n },\n \"legacyMembershipInfo\": {\n \"type\": \"IDENTITY_LIST\"\n },\n \"enabled\": true,\n \"requestable\": true,\n \"accessRequestConfig\": {\n \"commentsRequired\": true,\n \"denialCommentsRequired\": true,\n \"approvalSchemes\": [\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n },\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n }\n ]\n },\n \"revocationRequestConfig\": null,\n \"segments\": [\n \"f7b1b8a3-5fed-4fd4-ad29-82014e137e19\",\n \"29cb6c06-1da8-43ea-8be4-b3125f248f2a\"\n ],\n \"dimensional\": false,\n \"dimensionRefs\": \"dolore minim\"\n}", + "raw": "{\n \"name\": \"Role 2567\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"support\"\n },\n \"id\": \"2c918086749d78830174a1a40e121518\",\n \"created\": \"2021-03-01T22:32:58.104Z\",\n \"modified\": \"2021-03-02T20:22:28.104Z\",\n \"description\": \"Urna amet cursus pellentesque nisl orci maximus lorem nisl euismod fusce morbi placerat adipiscing maecenas nisi tristique et metus et lacus sed morbi nunc nisl maximus magna arcu varius sollicitudin elementum enim maecenas nisi id ipsum tempus fusce diam ipsum tortor.\",\n \"accessProfiles\": [\n {\n \"id\": \"ff808081751e6e129f1518161919ecca\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"Access Profile 2567\"\n },\n {\n \"id\": \"ff808081751e6e129f1518161919ecca\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"Access Profile 2567\"\n }\n ],\n \"entitlements\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n }\n ],\n \"membership\": {\n \"type\": \"IDENTITY_LIST\",\n \"criteria\": {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n }\n ]\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n }\n ]\n }\n ]\n },\n \"identities\": [\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\",\n \"aliasName\": \"t.edison\"\n },\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\",\n \"aliasName\": \"t.edison\"\n }\n ]\n },\n \"legacyMembershipInfo\": {\n \"type\": \"IDENTITY_LIST\"\n },\n \"enabled\": true,\n \"requestable\": true,\n \"accessRequestConfig\": {\n \"commentsRequired\": true,\n \"denialCommentsRequired\": true,\n \"approvalSchemes\": [\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n },\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n }\n ]\n },\n \"revocationRequestConfig\": null,\n \"segments\": [\n \"f7b1b8a3-5fed-4fd4-ad29-82014e137e19\",\n \"29cb6c06-1da8-43ea-8be4-b3125f248f2a\"\n ],\n \"dimensional\": false,\n \"dimensionRefs\": \"deserunt exercitation an\"\n}", "options": { "raw": { "headerFamily": "json", @@ -153778,7 +153778,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f5f93e79-6990-4b56-b45d-bd57f017bdda", + "id": "83683e3c-527d-42a8-9c9e-c30b0edf3363", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -153812,7 +153812,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"Role 2567\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"support\"\n },\n \"id\": \"2c918086749d78830174a1a40e121518\",\n \"created\": \"2021-03-01T22:32:58.104Z\",\n \"modified\": \"2021-03-02T20:22:28.104Z\",\n \"description\": \"Urna amet cursus pellentesque nisl orci maximus lorem nisl euismod fusce morbi placerat adipiscing maecenas nisi tristique et metus et lacus sed morbi nunc nisl maximus magna arcu varius sollicitudin elementum enim maecenas nisi id ipsum tempus fusce diam ipsum tortor.\",\n \"accessProfiles\": [\n {\n \"id\": \"ff808081751e6e129f1518161919ecca\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"Access Profile 2567\"\n },\n {\n \"id\": \"ff808081751e6e129f1518161919ecca\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"Access Profile 2567\"\n }\n ],\n \"entitlements\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n }\n ],\n \"membership\": {\n \"type\": \"IDENTITY_LIST\",\n \"criteria\": {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n }\n ]\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n }\n ]\n }\n ]\n },\n \"identities\": [\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\",\n \"aliasName\": \"t.edison\"\n },\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\",\n \"aliasName\": \"t.edison\"\n }\n ]\n },\n \"legacyMembershipInfo\": {\n \"type\": \"IDENTITY_LIST\"\n },\n \"enabled\": true,\n \"requestable\": true,\n \"accessRequestConfig\": {\n \"commentsRequired\": true,\n \"denialCommentsRequired\": true,\n \"approvalSchemes\": [\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n },\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n }\n ]\n },\n \"revocationRequestConfig\": null,\n \"segments\": [\n \"f7b1b8a3-5fed-4fd4-ad29-82014e137e19\",\n \"29cb6c06-1da8-43ea-8be4-b3125f248f2a\"\n ],\n \"dimensional\": false,\n \"dimensionRefs\": \"dolore minim\"\n}", + "raw": "{\n \"name\": \"Role 2567\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"support\"\n },\n \"id\": \"2c918086749d78830174a1a40e121518\",\n \"created\": \"2021-03-01T22:32:58.104Z\",\n \"modified\": \"2021-03-02T20:22:28.104Z\",\n \"description\": \"Urna amet cursus pellentesque nisl orci maximus lorem nisl euismod fusce morbi placerat adipiscing maecenas nisi tristique et metus et lacus sed morbi nunc nisl maximus magna arcu varius sollicitudin elementum enim maecenas nisi id ipsum tempus fusce diam ipsum tortor.\",\n \"accessProfiles\": [\n {\n \"id\": \"ff808081751e6e129f1518161919ecca\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"Access Profile 2567\"\n },\n {\n \"id\": \"ff808081751e6e129f1518161919ecca\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"Access Profile 2567\"\n }\n ],\n \"entitlements\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n }\n ],\n \"membership\": {\n \"type\": \"IDENTITY_LIST\",\n \"criteria\": {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n }\n ]\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n }\n ]\n }\n ]\n },\n \"identities\": [\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\",\n \"aliasName\": \"t.edison\"\n },\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\",\n \"aliasName\": \"t.edison\"\n }\n ]\n },\n \"legacyMembershipInfo\": {\n \"type\": \"IDENTITY_LIST\"\n },\n \"enabled\": true,\n \"requestable\": true,\n \"accessRequestConfig\": {\n \"commentsRequired\": true,\n \"denialCommentsRequired\": true,\n \"approvalSchemes\": [\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n },\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n }\n ]\n },\n \"revocationRequestConfig\": null,\n \"segments\": [\n \"f7b1b8a3-5fed-4fd4-ad29-82014e137e19\",\n \"29cb6c06-1da8-43ea-8be4-b3125f248f2a\"\n ],\n \"dimensional\": false,\n \"dimensionRefs\": \"deserunt exercitation an\"\n}", "options": { "raw": { "headerFamily": "json", @@ -153834,7 +153834,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2500c9ee-e100-41b3-adbe-153ec8dc62b5", + "id": "827afe47-580e-481b-849b-4d664d1a37bb", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -153868,7 +153868,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"Role 2567\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"support\"\n },\n \"id\": \"2c918086749d78830174a1a40e121518\",\n \"created\": \"2021-03-01T22:32:58.104Z\",\n \"modified\": \"2021-03-02T20:22:28.104Z\",\n \"description\": \"Urna amet cursus pellentesque nisl orci maximus lorem nisl euismod fusce morbi placerat adipiscing maecenas nisi tristique et metus et lacus sed morbi nunc nisl maximus magna arcu varius sollicitudin elementum enim maecenas nisi id ipsum tempus fusce diam ipsum tortor.\",\n \"accessProfiles\": [\n {\n \"id\": \"ff808081751e6e129f1518161919ecca\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"Access Profile 2567\"\n },\n {\n \"id\": \"ff808081751e6e129f1518161919ecca\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"Access Profile 2567\"\n }\n ],\n \"entitlements\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n }\n ],\n \"membership\": {\n \"type\": \"IDENTITY_LIST\",\n \"criteria\": {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n }\n ]\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n }\n ]\n }\n ]\n },\n \"identities\": [\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\",\n \"aliasName\": \"t.edison\"\n },\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\",\n \"aliasName\": \"t.edison\"\n }\n ]\n },\n \"legacyMembershipInfo\": {\n \"type\": \"IDENTITY_LIST\"\n },\n \"enabled\": true,\n \"requestable\": true,\n \"accessRequestConfig\": {\n \"commentsRequired\": true,\n \"denialCommentsRequired\": true,\n \"approvalSchemes\": [\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n },\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n }\n ]\n },\n \"revocationRequestConfig\": null,\n \"segments\": [\n \"f7b1b8a3-5fed-4fd4-ad29-82014e137e19\",\n \"29cb6c06-1da8-43ea-8be4-b3125f248f2a\"\n ],\n \"dimensional\": false,\n \"dimensionRefs\": \"dolore minim\"\n}", + "raw": "{\n \"name\": \"Role 2567\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"support\"\n },\n \"id\": \"2c918086749d78830174a1a40e121518\",\n \"created\": \"2021-03-01T22:32:58.104Z\",\n \"modified\": \"2021-03-02T20:22:28.104Z\",\n \"description\": \"Urna amet cursus pellentesque nisl orci maximus lorem nisl euismod fusce morbi placerat adipiscing maecenas nisi tristique et metus et lacus sed morbi nunc nisl maximus magna arcu varius sollicitudin elementum enim maecenas nisi id ipsum tempus fusce diam ipsum tortor.\",\n \"accessProfiles\": [\n {\n \"id\": \"ff808081751e6e129f1518161919ecca\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"Access Profile 2567\"\n },\n {\n \"id\": \"ff808081751e6e129f1518161919ecca\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"Access Profile 2567\"\n }\n ],\n \"entitlements\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n }\n ],\n \"membership\": {\n \"type\": \"IDENTITY_LIST\",\n \"criteria\": {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n }\n ]\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n }\n ]\n }\n ]\n },\n \"identities\": [\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\",\n \"aliasName\": \"t.edison\"\n },\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\",\n \"aliasName\": \"t.edison\"\n }\n ]\n },\n \"legacyMembershipInfo\": {\n \"type\": \"IDENTITY_LIST\"\n },\n \"enabled\": true,\n \"requestable\": true,\n \"accessRequestConfig\": {\n \"commentsRequired\": true,\n \"denialCommentsRequired\": true,\n \"approvalSchemes\": [\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n },\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n }\n ]\n },\n \"revocationRequestConfig\": null,\n \"segments\": [\n \"f7b1b8a3-5fed-4fd4-ad29-82014e137e19\",\n \"29cb6c06-1da8-43ea-8be4-b3125f248f2a\"\n ],\n \"dimensional\": false,\n \"dimensionRefs\": \"deserunt exercitation an\"\n}", "options": { "raw": { "headerFamily": "json", @@ -153890,7 +153890,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f922c889-74de-4b01-a29a-23a44ee8ddb2", + "id": "69bb414b-d546-4c64-a837-cd0fe0afd32b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -153924,7 +153924,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"Role 2567\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"support\"\n },\n \"id\": \"2c918086749d78830174a1a40e121518\",\n \"created\": \"2021-03-01T22:32:58.104Z\",\n \"modified\": \"2021-03-02T20:22:28.104Z\",\n \"description\": \"Urna amet cursus pellentesque nisl orci maximus lorem nisl euismod fusce morbi placerat adipiscing maecenas nisi tristique et metus et lacus sed morbi nunc nisl maximus magna arcu varius sollicitudin elementum enim maecenas nisi id ipsum tempus fusce diam ipsum tortor.\",\n \"accessProfiles\": [\n {\n \"id\": \"ff808081751e6e129f1518161919ecca\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"Access Profile 2567\"\n },\n {\n \"id\": \"ff808081751e6e129f1518161919ecca\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"Access Profile 2567\"\n }\n ],\n \"entitlements\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n }\n ],\n \"membership\": {\n \"type\": \"IDENTITY_LIST\",\n \"criteria\": {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n }\n ]\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n }\n ]\n }\n ]\n },\n \"identities\": [\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\",\n \"aliasName\": \"t.edison\"\n },\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\",\n \"aliasName\": \"t.edison\"\n }\n ]\n },\n \"legacyMembershipInfo\": {\n \"type\": \"IDENTITY_LIST\"\n },\n \"enabled\": true,\n \"requestable\": true,\n \"accessRequestConfig\": {\n \"commentsRequired\": true,\n \"denialCommentsRequired\": true,\n \"approvalSchemes\": [\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n },\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n }\n ]\n },\n \"revocationRequestConfig\": null,\n \"segments\": [\n \"f7b1b8a3-5fed-4fd4-ad29-82014e137e19\",\n \"29cb6c06-1da8-43ea-8be4-b3125f248f2a\"\n ],\n \"dimensional\": false,\n \"dimensionRefs\": \"dolore minim\"\n}", + "raw": "{\n \"name\": \"Role 2567\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"support\"\n },\n \"id\": \"2c918086749d78830174a1a40e121518\",\n \"created\": \"2021-03-01T22:32:58.104Z\",\n \"modified\": \"2021-03-02T20:22:28.104Z\",\n \"description\": \"Urna amet cursus pellentesque nisl orci maximus lorem nisl euismod fusce morbi placerat adipiscing maecenas nisi tristique et metus et lacus sed morbi nunc nisl maximus magna arcu varius sollicitudin elementum enim maecenas nisi id ipsum tempus fusce diam ipsum tortor.\",\n \"accessProfiles\": [\n {\n \"id\": \"ff808081751e6e129f1518161919ecca\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"Access Profile 2567\"\n },\n {\n \"id\": \"ff808081751e6e129f1518161919ecca\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"Access Profile 2567\"\n }\n ],\n \"entitlements\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n }\n ],\n \"membership\": {\n \"type\": \"IDENTITY_LIST\",\n \"criteria\": {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n }\n ]\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n }\n ]\n }\n ]\n },\n \"identities\": [\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\",\n \"aliasName\": \"t.edison\"\n },\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\",\n \"aliasName\": \"t.edison\"\n }\n ]\n },\n \"legacyMembershipInfo\": {\n \"type\": \"IDENTITY_LIST\"\n },\n \"enabled\": true,\n \"requestable\": true,\n \"accessRequestConfig\": {\n \"commentsRequired\": true,\n \"denialCommentsRequired\": true,\n \"approvalSchemes\": [\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n },\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n }\n ]\n },\n \"revocationRequestConfig\": null,\n \"segments\": [\n \"f7b1b8a3-5fed-4fd4-ad29-82014e137e19\",\n \"29cb6c06-1da8-43ea-8be4-b3125f248f2a\"\n ],\n \"dimensional\": false,\n \"dimensionRefs\": \"deserunt exercitation an\"\n}", "options": { "raw": { "headerFamily": "json", @@ -153952,7 +153952,7 @@ } }, { - "id": "209b18de-cae9-4e1a-8b02-8f10f39e9d40", + "id": "bbce656d-c41d-48f4-8e51-3bea795d37c3", "name": "Get a Role", "request": { "name": "Get a Role", @@ -153993,7 +153993,7 @@ }, "response": [ { - "id": "62e474cb-76ef-44bb-b0f0-9cb52d54dc29", + "id": "5f229c3a-1292-43d9-b3df-c8ea22a21ff8", "name": "List of all Roles", "originalRequest": { "url": { @@ -154032,12 +154032,12 @@ "value": "application/json" } ], - "body": "{\n \"name\": \"Role 2567\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"support\"\n },\n \"id\": \"2c918086749d78830174a1a40e121518\",\n \"created\": \"2021-03-01T22:32:58.104Z\",\n \"modified\": \"2021-03-02T20:22:28.104Z\",\n \"description\": \"Urna amet cursus pellentesque nisl orci maximus lorem nisl euismod fusce morbi placerat adipiscing maecenas nisi tristique et metus et lacus sed morbi nunc nisl maximus magna arcu varius sollicitudin elementum enim maecenas nisi id ipsum tempus fusce diam ipsum tortor.\",\n \"accessProfiles\": [\n {\n \"id\": \"ff808081751e6e129f1518161919ecca\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"Access Profile 2567\"\n },\n {\n \"id\": \"ff808081751e6e129f1518161919ecca\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"Access Profile 2567\"\n }\n ],\n \"entitlements\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n }\n ],\n \"membership\": {\n \"type\": \"IDENTITY_LIST\",\n \"criteria\": {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n }\n ]\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n }\n ]\n }\n ]\n },\n \"identities\": [\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\",\n \"aliasName\": \"t.edison\"\n },\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\",\n \"aliasName\": \"t.edison\"\n }\n ]\n },\n \"legacyMembershipInfo\": {\n \"type\": \"IDENTITY_LIST\"\n },\n \"enabled\": true,\n \"requestable\": true,\n \"accessRequestConfig\": {\n \"commentsRequired\": true,\n \"denialCommentsRequired\": true,\n \"approvalSchemes\": [\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n },\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n }\n ]\n },\n \"revocationRequestConfig\": null,\n \"segments\": [\n \"f7b1b8a3-5fed-4fd4-ad29-82014e137e19\",\n \"29cb6c06-1da8-43ea-8be4-b3125f248f2a\"\n ],\n \"dimensional\": false,\n \"dimensionRefs\": \"dolore minim\"\n}", + "body": "{\n \"name\": \"Role 2567\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"support\"\n },\n \"id\": \"2c918086749d78830174a1a40e121518\",\n \"created\": \"2021-03-01T22:32:58.104Z\",\n \"modified\": \"2021-03-02T20:22:28.104Z\",\n \"description\": \"Urna amet cursus pellentesque nisl orci maximus lorem nisl euismod fusce morbi placerat adipiscing maecenas nisi tristique et metus et lacus sed morbi nunc nisl maximus magna arcu varius sollicitudin elementum enim maecenas nisi id ipsum tempus fusce diam ipsum tortor.\",\n \"accessProfiles\": [\n {\n \"id\": \"ff808081751e6e129f1518161919ecca\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"Access Profile 2567\"\n },\n {\n \"id\": \"ff808081751e6e129f1518161919ecca\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"Access Profile 2567\"\n }\n ],\n \"entitlements\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n }\n ],\n \"membership\": {\n \"type\": \"IDENTITY_LIST\",\n \"criteria\": {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n }\n ]\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n }\n ]\n }\n ]\n },\n \"identities\": [\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\",\n \"aliasName\": \"t.edison\"\n },\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\",\n \"aliasName\": \"t.edison\"\n }\n ]\n },\n \"legacyMembershipInfo\": {\n \"type\": \"IDENTITY_LIST\"\n },\n \"enabled\": true,\n \"requestable\": true,\n \"accessRequestConfig\": {\n \"commentsRequired\": true,\n \"denialCommentsRequired\": true,\n \"approvalSchemes\": [\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n },\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n }\n ]\n },\n \"revocationRequestConfig\": null,\n \"segments\": [\n \"f7b1b8a3-5fed-4fd4-ad29-82014e137e19\",\n \"29cb6c06-1da8-43ea-8be4-b3125f248f2a\"\n ],\n \"dimensional\": false,\n \"dimensionRefs\": \"deserunt exercitation an\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c55361e2-5f3b-4bc4-94f6-bcebbb7a07d9", + "id": "426132ba-2f35-4c15-8d3e-dedd4620e33f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -154081,7 +154081,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c0fb47f3-1482-4803-8226-fb7a23473dc1", + "id": "c5037577-91cb-42b5-9c29-33c8602ce34f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -154125,7 +154125,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f9510e17-f1ad-49c1-ae40-c596d7424f4c", + "id": "95d89d19-0dfb-4992-b284-4421b4d5acca", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -154169,7 +154169,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8193a3ba-9fb0-4038-97d2-86c1891cb55b", + "id": "fc093d7a-d624-474d-b82c-ddf472c09698", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -154213,7 +154213,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6f99b7cd-1e27-4f7e-81c1-abc77e56ceb5", + "id": "67ada429-d154-4004-87d3-95eda4eb2602", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -154263,7 +154263,7 @@ } }, { - "id": "74d14330-2859-46c1-bee1-057ec1b0e000", + "id": "953eadc7-e1f6-43c3-b589-c41fae7ced5c", "name": "Patch a specified Role", "request": { "name": "Patch a specified Role", @@ -154317,7 +154317,7 @@ }, "response": [ { - "id": "6b28255f-be7f-47b2-b0b9-b26642de9551", + "id": "bde2138e-dbdb-46b6-aea9-ba745889fb17", "name": "Make a Role Requestable and Enable it in One Call", "originalRequest": { "url": { @@ -154369,12 +154369,12 @@ "value": "application/json" } ], - "body": "{\n \"name\": \"Role 2567\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"support\"\n },\n \"id\": \"2c918086749d78830174a1a40e121518\",\n \"created\": \"2021-03-01T22:32:58.104Z\",\n \"modified\": \"2021-03-02T20:22:28.104Z\",\n \"description\": \"Urna amet cursus pellentesque nisl orci maximus lorem nisl euismod fusce morbi placerat adipiscing maecenas nisi tristique et metus et lacus sed morbi nunc nisl maximus magna arcu varius sollicitudin elementum enim maecenas nisi id ipsum tempus fusce diam ipsum tortor.\",\n \"accessProfiles\": [\n {\n \"id\": \"ff808081751e6e129f1518161919ecca\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"Access Profile 2567\"\n },\n {\n \"id\": \"ff808081751e6e129f1518161919ecca\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"Access Profile 2567\"\n }\n ],\n \"entitlements\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n }\n ],\n \"membership\": {\n \"type\": \"IDENTITY_LIST\",\n \"criteria\": {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n }\n ]\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n }\n ]\n }\n ]\n },\n \"identities\": [\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\",\n \"aliasName\": \"t.edison\"\n },\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\",\n \"aliasName\": \"t.edison\"\n }\n ]\n },\n \"legacyMembershipInfo\": {\n \"type\": \"IDENTITY_LIST\"\n },\n \"enabled\": true,\n \"requestable\": true,\n \"accessRequestConfig\": {\n \"commentsRequired\": true,\n \"denialCommentsRequired\": true,\n \"approvalSchemes\": [\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n },\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n }\n ]\n },\n \"revocationRequestConfig\": null,\n \"segments\": [\n \"f7b1b8a3-5fed-4fd4-ad29-82014e137e19\",\n \"29cb6c06-1da8-43ea-8be4-b3125f248f2a\"\n ],\n \"dimensional\": false,\n \"dimensionRefs\": \"dolore minim\"\n}", + "body": "{\n \"name\": \"Role 2567\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"support\"\n },\n \"id\": \"2c918086749d78830174a1a40e121518\",\n \"created\": \"2021-03-01T22:32:58.104Z\",\n \"modified\": \"2021-03-02T20:22:28.104Z\",\n \"description\": \"Urna amet cursus pellentesque nisl orci maximus lorem nisl euismod fusce morbi placerat adipiscing maecenas nisi tristique et metus et lacus sed morbi nunc nisl maximus magna arcu varius sollicitudin elementum enim maecenas nisi id ipsum tempus fusce diam ipsum tortor.\",\n \"accessProfiles\": [\n {\n \"id\": \"ff808081751e6e129f1518161919ecca\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"Access Profile 2567\"\n },\n {\n \"id\": \"ff808081751e6e129f1518161919ecca\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"Access Profile 2567\"\n }\n ],\n \"entitlements\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n }\n ],\n \"membership\": {\n \"type\": \"IDENTITY_LIST\",\n \"criteria\": {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n }\n ]\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n }\n ]\n }\n ]\n },\n \"identities\": [\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\",\n \"aliasName\": \"t.edison\"\n },\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\",\n \"aliasName\": \"t.edison\"\n }\n ]\n },\n \"legacyMembershipInfo\": {\n \"type\": \"IDENTITY_LIST\"\n },\n \"enabled\": true,\n \"requestable\": true,\n \"accessRequestConfig\": {\n \"commentsRequired\": true,\n \"denialCommentsRequired\": true,\n \"approvalSchemes\": [\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n },\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n }\n ]\n },\n \"revocationRequestConfig\": null,\n \"segments\": [\n \"f7b1b8a3-5fed-4fd4-ad29-82014e137e19\",\n \"29cb6c06-1da8-43ea-8be4-b3125f248f2a\"\n ],\n \"dimensional\": false,\n \"dimensionRefs\": \"deserunt exercitation an\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f0fdbd19-e994-47b8-81c9-3a5bb4ebe392", + "id": "da877738-00ab-40dd-aecd-39e20cfa8244", "name": "Assign a Role to a Segment", "originalRequest": { "url": { @@ -154426,12 +154426,12 @@ "value": "application/json" } ], - "body": "{\n \"name\": \"Role 2567\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"support\"\n },\n \"id\": \"2c918086749d78830174a1a40e121518\",\n \"created\": \"2021-03-01T22:32:58.104Z\",\n \"modified\": \"2021-03-02T20:22:28.104Z\",\n \"description\": \"Urna amet cursus pellentesque nisl orci maximus lorem nisl euismod fusce morbi placerat adipiscing maecenas nisi tristique et metus et lacus sed morbi nunc nisl maximus magna arcu varius sollicitudin elementum enim maecenas nisi id ipsum tempus fusce diam ipsum tortor.\",\n \"accessProfiles\": [\n {\n \"id\": \"ff808081751e6e129f1518161919ecca\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"Access Profile 2567\"\n },\n {\n \"id\": \"ff808081751e6e129f1518161919ecca\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"Access Profile 2567\"\n }\n ],\n \"entitlements\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n }\n ],\n \"membership\": {\n \"type\": \"IDENTITY_LIST\",\n \"criteria\": {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n }\n ]\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n }\n ]\n }\n ]\n },\n \"identities\": [\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\",\n \"aliasName\": \"t.edison\"\n },\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\",\n \"aliasName\": \"t.edison\"\n }\n ]\n },\n \"legacyMembershipInfo\": {\n \"type\": \"IDENTITY_LIST\"\n },\n \"enabled\": true,\n \"requestable\": true,\n \"accessRequestConfig\": {\n \"commentsRequired\": true,\n \"denialCommentsRequired\": true,\n \"approvalSchemes\": [\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n },\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n }\n ]\n },\n \"revocationRequestConfig\": null,\n \"segments\": [\n \"f7b1b8a3-5fed-4fd4-ad29-82014e137e19\",\n \"29cb6c06-1da8-43ea-8be4-b3125f248f2a\"\n ],\n \"dimensional\": false,\n \"dimensionRefs\": \"dolore minim\"\n}", + "body": "{\n \"name\": \"Role 2567\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"support\"\n },\n \"id\": \"2c918086749d78830174a1a40e121518\",\n \"created\": \"2021-03-01T22:32:58.104Z\",\n \"modified\": \"2021-03-02T20:22:28.104Z\",\n \"description\": \"Urna amet cursus pellentesque nisl orci maximus lorem nisl euismod fusce morbi placerat adipiscing maecenas nisi tristique et metus et lacus sed morbi nunc nisl maximus magna arcu varius sollicitudin elementum enim maecenas nisi id ipsum tempus fusce diam ipsum tortor.\",\n \"accessProfiles\": [\n {\n \"id\": \"ff808081751e6e129f1518161919ecca\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"Access Profile 2567\"\n },\n {\n \"id\": \"ff808081751e6e129f1518161919ecca\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"Access Profile 2567\"\n }\n ],\n \"entitlements\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n }\n ],\n \"membership\": {\n \"type\": \"IDENTITY_LIST\",\n \"criteria\": {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n }\n ]\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n }\n ]\n }\n ]\n },\n \"identities\": [\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\",\n \"aliasName\": \"t.edison\"\n },\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\",\n \"aliasName\": \"t.edison\"\n }\n ]\n },\n \"legacyMembershipInfo\": {\n \"type\": \"IDENTITY_LIST\"\n },\n \"enabled\": true,\n \"requestable\": true,\n \"accessRequestConfig\": {\n \"commentsRequired\": true,\n \"denialCommentsRequired\": true,\n \"approvalSchemes\": [\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n },\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n }\n ]\n },\n \"revocationRequestConfig\": null,\n \"segments\": [\n \"f7b1b8a3-5fed-4fd4-ad29-82014e137e19\",\n \"29cb6c06-1da8-43ea-8be4-b3125f248f2a\"\n ],\n \"dimensional\": false,\n \"dimensionRefs\": \"deserunt exercitation an\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c9f2f022-8d78-483e-baab-2e4ab84d0e86", + "id": "887fef27-51f2-4959-a299-ef70f4973627", "name": "Set the Membership Selection Criteria to a List of Identities", "originalRequest": { "url": { @@ -154483,12 +154483,12 @@ "value": "application/json" } ], - "body": "{\n \"name\": \"Role 2567\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"support\"\n },\n \"id\": \"2c918086749d78830174a1a40e121518\",\n \"created\": \"2021-03-01T22:32:58.104Z\",\n \"modified\": \"2021-03-02T20:22:28.104Z\",\n \"description\": \"Urna amet cursus pellentesque nisl orci maximus lorem nisl euismod fusce morbi placerat adipiscing maecenas nisi tristique et metus et lacus sed morbi nunc nisl maximus magna arcu varius sollicitudin elementum enim maecenas nisi id ipsum tempus fusce diam ipsum tortor.\",\n \"accessProfiles\": [\n {\n \"id\": \"ff808081751e6e129f1518161919ecca\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"Access Profile 2567\"\n },\n {\n \"id\": \"ff808081751e6e129f1518161919ecca\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"Access Profile 2567\"\n }\n ],\n \"entitlements\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n }\n ],\n \"membership\": {\n \"type\": \"IDENTITY_LIST\",\n \"criteria\": {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n }\n ]\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n }\n ]\n }\n ]\n },\n \"identities\": [\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\",\n \"aliasName\": \"t.edison\"\n },\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\",\n \"aliasName\": \"t.edison\"\n }\n ]\n },\n \"legacyMembershipInfo\": {\n \"type\": \"IDENTITY_LIST\"\n },\n \"enabled\": true,\n \"requestable\": true,\n \"accessRequestConfig\": {\n \"commentsRequired\": true,\n \"denialCommentsRequired\": true,\n \"approvalSchemes\": [\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n },\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n }\n ]\n },\n \"revocationRequestConfig\": null,\n \"segments\": [\n \"f7b1b8a3-5fed-4fd4-ad29-82014e137e19\",\n \"29cb6c06-1da8-43ea-8be4-b3125f248f2a\"\n ],\n \"dimensional\": false,\n \"dimensionRefs\": \"dolore minim\"\n}", + "body": "{\n \"name\": \"Role 2567\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"support\"\n },\n \"id\": \"2c918086749d78830174a1a40e121518\",\n \"created\": \"2021-03-01T22:32:58.104Z\",\n \"modified\": \"2021-03-02T20:22:28.104Z\",\n \"description\": \"Urna amet cursus pellentesque nisl orci maximus lorem nisl euismod fusce morbi placerat adipiscing maecenas nisi tristique et metus et lacus sed morbi nunc nisl maximus magna arcu varius sollicitudin elementum enim maecenas nisi id ipsum tempus fusce diam ipsum tortor.\",\n \"accessProfiles\": [\n {\n \"id\": \"ff808081751e6e129f1518161919ecca\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"Access Profile 2567\"\n },\n {\n \"id\": \"ff808081751e6e129f1518161919ecca\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"Access Profile 2567\"\n }\n ],\n \"entitlements\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n }\n ],\n \"membership\": {\n \"type\": \"IDENTITY_LIST\",\n \"criteria\": {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n }\n ]\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n }\n ]\n }\n ]\n },\n \"identities\": [\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\",\n \"aliasName\": \"t.edison\"\n },\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\",\n \"aliasName\": \"t.edison\"\n }\n ]\n },\n \"legacyMembershipInfo\": {\n \"type\": \"IDENTITY_LIST\"\n },\n \"enabled\": true,\n \"requestable\": true,\n \"accessRequestConfig\": {\n \"commentsRequired\": true,\n \"denialCommentsRequired\": true,\n \"approvalSchemes\": [\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n },\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n }\n ]\n },\n \"revocationRequestConfig\": null,\n \"segments\": [\n \"f7b1b8a3-5fed-4fd4-ad29-82014e137e19\",\n \"29cb6c06-1da8-43ea-8be4-b3125f248f2a\"\n ],\n \"dimensional\": false,\n \"dimensionRefs\": \"deserunt exercitation an\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "1ce7384e-db8d-4854-a1de-830d8b3dab93", + "id": "f7f0c2d7-fd97-428b-b917-0da394fb3219", "name": "Set the Membership Selection Criteria to a Standard Expression", "originalRequest": { "url": { @@ -154540,12 +154540,12 @@ "value": "application/json" } ], - "body": "{\n \"name\": \"Role 2567\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"support\"\n },\n \"id\": \"2c918086749d78830174a1a40e121518\",\n \"created\": \"2021-03-01T22:32:58.104Z\",\n \"modified\": \"2021-03-02T20:22:28.104Z\",\n \"description\": \"Urna amet cursus pellentesque nisl orci maximus lorem nisl euismod fusce morbi placerat adipiscing maecenas nisi tristique et metus et lacus sed morbi nunc nisl maximus magna arcu varius sollicitudin elementum enim maecenas nisi id ipsum tempus fusce diam ipsum tortor.\",\n \"accessProfiles\": [\n {\n \"id\": \"ff808081751e6e129f1518161919ecca\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"Access Profile 2567\"\n },\n {\n \"id\": \"ff808081751e6e129f1518161919ecca\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"Access Profile 2567\"\n }\n ],\n \"entitlements\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n }\n ],\n \"membership\": {\n \"type\": \"IDENTITY_LIST\",\n \"criteria\": {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n }\n ]\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n }\n ]\n }\n ]\n },\n \"identities\": [\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\",\n \"aliasName\": \"t.edison\"\n },\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\",\n \"aliasName\": \"t.edison\"\n }\n ]\n },\n \"legacyMembershipInfo\": {\n \"type\": \"IDENTITY_LIST\"\n },\n \"enabled\": true,\n \"requestable\": true,\n \"accessRequestConfig\": {\n \"commentsRequired\": true,\n \"denialCommentsRequired\": true,\n \"approvalSchemes\": [\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n },\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n }\n ]\n },\n \"revocationRequestConfig\": null,\n \"segments\": [\n \"f7b1b8a3-5fed-4fd4-ad29-82014e137e19\",\n \"29cb6c06-1da8-43ea-8be4-b3125f248f2a\"\n ],\n \"dimensional\": false,\n \"dimensionRefs\": \"dolore minim\"\n}", + "body": "{\n \"name\": \"Role 2567\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"support\"\n },\n \"id\": \"2c918086749d78830174a1a40e121518\",\n \"created\": \"2021-03-01T22:32:58.104Z\",\n \"modified\": \"2021-03-02T20:22:28.104Z\",\n \"description\": \"Urna amet cursus pellentesque nisl orci maximus lorem nisl euismod fusce morbi placerat adipiscing maecenas nisi tristique et metus et lacus sed morbi nunc nisl maximus magna arcu varius sollicitudin elementum enim maecenas nisi id ipsum tempus fusce diam ipsum tortor.\",\n \"accessProfiles\": [\n {\n \"id\": \"ff808081751e6e129f1518161919ecca\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"Access Profile 2567\"\n },\n {\n \"id\": \"ff808081751e6e129f1518161919ecca\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"Access Profile 2567\"\n }\n ],\n \"entitlements\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n }\n ],\n \"membership\": {\n \"type\": \"IDENTITY_LIST\",\n \"criteria\": {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n }\n ]\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n }\n ]\n }\n ]\n },\n \"identities\": [\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\",\n \"aliasName\": \"t.edison\"\n },\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\",\n \"aliasName\": \"t.edison\"\n }\n ]\n },\n \"legacyMembershipInfo\": {\n \"type\": \"IDENTITY_LIST\"\n },\n \"enabled\": true,\n \"requestable\": true,\n \"accessRequestConfig\": {\n \"commentsRequired\": true,\n \"denialCommentsRequired\": true,\n \"approvalSchemes\": [\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n },\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n }\n ]\n },\n \"revocationRequestConfig\": null,\n \"segments\": [\n \"f7b1b8a3-5fed-4fd4-ad29-82014e137e19\",\n \"29cb6c06-1da8-43ea-8be4-b3125f248f2a\"\n ],\n \"dimensional\": false,\n \"dimensionRefs\": \"deserunt exercitation an\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "37c6f539-d984-4ebb-ab79-590d30663b33", + "id": "0b53bb4f-3e22-4c1b-a168-dc01189e1566", "name": "Add a New Clause as the Child of an Existing Standard Expression", "originalRequest": { "url": { @@ -154597,12 +154597,12 @@ "value": "application/json" } ], - "body": "{\n \"name\": \"Role 2567\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"support\"\n },\n \"id\": \"2c918086749d78830174a1a40e121518\",\n \"created\": \"2021-03-01T22:32:58.104Z\",\n \"modified\": \"2021-03-02T20:22:28.104Z\",\n \"description\": \"Urna amet cursus pellentesque nisl orci maximus lorem nisl euismod fusce morbi placerat adipiscing maecenas nisi tristique et metus et lacus sed morbi nunc nisl maximus magna arcu varius sollicitudin elementum enim maecenas nisi id ipsum tempus fusce diam ipsum tortor.\",\n \"accessProfiles\": [\n {\n \"id\": \"ff808081751e6e129f1518161919ecca\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"Access Profile 2567\"\n },\n {\n \"id\": \"ff808081751e6e129f1518161919ecca\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"Access Profile 2567\"\n }\n ],\n \"entitlements\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n }\n ],\n \"membership\": {\n \"type\": \"IDENTITY_LIST\",\n \"criteria\": {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n }\n ]\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n }\n ]\n }\n ]\n },\n \"identities\": [\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\",\n \"aliasName\": \"t.edison\"\n },\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\",\n \"aliasName\": \"t.edison\"\n }\n ]\n },\n \"legacyMembershipInfo\": {\n \"type\": \"IDENTITY_LIST\"\n },\n \"enabled\": true,\n \"requestable\": true,\n \"accessRequestConfig\": {\n \"commentsRequired\": true,\n \"denialCommentsRequired\": true,\n \"approvalSchemes\": [\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n },\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n }\n ]\n },\n \"revocationRequestConfig\": null,\n \"segments\": [\n \"f7b1b8a3-5fed-4fd4-ad29-82014e137e19\",\n \"29cb6c06-1da8-43ea-8be4-b3125f248f2a\"\n ],\n \"dimensional\": false,\n \"dimensionRefs\": \"dolore minim\"\n}", + "body": "{\n \"name\": \"Role 2567\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"support\"\n },\n \"id\": \"2c918086749d78830174a1a40e121518\",\n \"created\": \"2021-03-01T22:32:58.104Z\",\n \"modified\": \"2021-03-02T20:22:28.104Z\",\n \"description\": \"Urna amet cursus pellentesque nisl orci maximus lorem nisl euismod fusce morbi placerat adipiscing maecenas nisi tristique et metus et lacus sed morbi nunc nisl maximus magna arcu varius sollicitudin elementum enim maecenas nisi id ipsum tempus fusce diam ipsum tortor.\",\n \"accessProfiles\": [\n {\n \"id\": \"ff808081751e6e129f1518161919ecca\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"Access Profile 2567\"\n },\n {\n \"id\": \"ff808081751e6e129f1518161919ecca\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"Access Profile 2567\"\n }\n ],\n \"entitlements\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n }\n ],\n \"membership\": {\n \"type\": \"IDENTITY_LIST\",\n \"criteria\": {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n }\n ]\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n }\n ]\n }\n ]\n },\n \"identities\": [\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\",\n \"aliasName\": \"t.edison\"\n },\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\",\n \"aliasName\": \"t.edison\"\n }\n ]\n },\n \"legacyMembershipInfo\": {\n \"type\": \"IDENTITY_LIST\"\n },\n \"enabled\": true,\n \"requestable\": true,\n \"accessRequestConfig\": {\n \"commentsRequired\": true,\n \"denialCommentsRequired\": true,\n \"approvalSchemes\": [\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n },\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n }\n ]\n },\n \"revocationRequestConfig\": null,\n \"segments\": [\n \"f7b1b8a3-5fed-4fd4-ad29-82014e137e19\",\n \"29cb6c06-1da8-43ea-8be4-b3125f248f2a\"\n ],\n \"dimensional\": false,\n \"dimensionRefs\": \"deserunt exercitation an\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "9dacbde7-3364-4829-9229-02a20f331f89", + "id": "06cfa74e-c041-4959-9650-42406f556b51", "name": "Make a Role Requestable and Enable it in One Call", "originalRequest": { "url": { @@ -154659,7 +154659,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6f942cce-eadd-4cbd-82df-669d6eaed987", + "id": "1f24410d-7fec-4c2d-816d-78d4cfe8981f", "name": "Assign a Role to a Segment", "originalRequest": { "url": { @@ -154716,7 +154716,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e2bd273b-28f4-4cf1-81d9-963b200cdb7a", + "id": "54cf3d29-d5e5-42ac-a6e1-964d17bedf73", "name": "Set the Membership Selection Criteria to a List of Identities", "originalRequest": { "url": { @@ -154773,7 +154773,7 @@ "_postman_previewlanguage": "json" }, { - "id": "433d1201-478b-4276-b906-a1bbe2773431", + "id": "45ecd7a3-78a4-4b0d-a76c-3ce8f70a5c7e", "name": "Set the Membership Selection Criteria to a Standard Expression", "originalRequest": { "url": { @@ -154830,7 +154830,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6d6c8803-09d1-460d-a990-b83e6a4e1e47", + "id": "79230237-43e8-4c07-a63d-f2ca45e33bf2", "name": "Add a New Clause as the Child of an Existing Standard Expression", "originalRequest": { "url": { @@ -154887,7 +154887,7 @@ "_postman_previewlanguage": "json" }, { - "id": "50f7d22f-a198-4f62-a68a-0c75815181be", + "id": "3de9e39f-5d51-4218-ad3e-ac8898a19390", "name": "Make a Role Requestable and Enable it in One Call", "originalRequest": { "url": { @@ -154944,7 +154944,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d8d8f873-0eed-458a-b1c0-b292cc89eeee", + "id": "b1dd3c62-6322-4099-96f5-3aaa87f28a8b", "name": "Assign a Role to a Segment", "originalRequest": { "url": { @@ -155001,7 +155001,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4fc7a273-293d-4c73-9af5-f00cc5f520ea", + "id": "573ba94f-b139-4b5d-88e3-bb74b7753cf6", "name": "Set the Membership Selection Criteria to a List of Identities", "originalRequest": { "url": { @@ -155058,7 +155058,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7b968e15-d878-464d-a1bd-fd6d26933959", + "id": "29c38636-992b-40d7-b952-d33506d957c3", "name": "Set the Membership Selection Criteria to a Standard Expression", "originalRequest": { "url": { @@ -155115,7 +155115,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f6e35386-aa01-4dae-8b54-5e83e9ac5071", + "id": "4da8f549-7a44-4838-b576-5649a730ecfe", "name": "Add a New Clause as the Child of an Existing Standard Expression", "originalRequest": { "url": { @@ -155172,7 +155172,7 @@ "_postman_previewlanguage": "json" }, { - "id": "915dc973-8fae-4b04-882f-eae987ff834e", + "id": "ff073ad8-f327-447e-b3d7-7e0e843b3900", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -155229,7 +155229,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d3fc1f6d-aad3-45f9-8645-bf66fc0c02f2", + "id": "f5a67780-bf3c-4f5b-b764-9b753e82aa4a", "name": "Assign a Role to a Segment", "originalRequest": { "url": { @@ -155286,7 +155286,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9321e476-d82a-429d-b246-2544e0ff9e1f", + "id": "17c95631-2b82-40aa-8828-31cd04e41245", "name": "Set the Membership Selection Criteria to a List of Identities", "originalRequest": { "url": { @@ -155343,7 +155343,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3d91d7fe-a169-4f61-932b-cd59310ca355", + "id": "0d1f7c6b-3336-4ff8-9847-25cab1940991", "name": "Set the Membership Selection Criteria to a Standard Expression", "originalRequest": { "url": { @@ -155400,7 +155400,7 @@ "_postman_previewlanguage": "json" }, { - "id": "56e9e91f-881a-4293-b9f6-a5a7959520e0", + "id": "a70e9b62-873d-4526-be3d-3d725afb5cb4", "name": "Add a New Clause as the Child of an Existing Standard Expression", "originalRequest": { "url": { @@ -155457,7 +155457,7 @@ "_postman_previewlanguage": "json" }, { - "id": "778d1ae5-86ec-4715-9bdc-6406265738c8", + "id": "28cafa50-c21b-40cc-b2f4-80cf7d2cb59e", "name": "Make a Role Requestable and Enable it in One Call", "originalRequest": { "url": { @@ -155514,7 +155514,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1e391f4a-79eb-4014-a792-02e1fd093f16", + "id": "99a8c224-8832-4a1a-8c72-0737af10b3f9", "name": "Assign a Role to a Segment", "originalRequest": { "url": { @@ -155571,7 +155571,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0d3a97ab-45bb-4ec7-9e43-42f514ebc463", + "id": "4634513d-5d12-4745-b99f-de00ebb17f33", "name": "Set the Membership Selection Criteria to a List of Identities", "originalRequest": { "url": { @@ -155628,7 +155628,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4cb8b467-874e-4e41-bff2-cd7c21f4fc23", + "id": "c403dc5c-805a-493b-9d1b-996a5899d43c", "name": "Set the Membership Selection Criteria to a Standard Expression", "originalRequest": { "url": { @@ -155685,7 +155685,7 @@ "_postman_previewlanguage": "json" }, { - "id": "657f6dad-4618-41b0-b19f-d5fb5868ba21", + "id": "6c09cf37-63cb-4e26-b781-6e29f838e419", "name": "Add a New Clause as the Child of an Existing Standard Expression", "originalRequest": { "url": { @@ -155742,7 +155742,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0dbece81-694d-4c09-a5b5-4a5b20d85a28", + "id": "9b0685f0-c795-4391-8182-5bd6200c1229", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -155799,7 +155799,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c9c2aec7-a37a-4d15-b43b-f1fd0a1e3583", + "id": "a61de65a-c96e-4936-9717-a348291cb1bb", "name": "Assign a Role to a Segment", "originalRequest": { "url": { @@ -155856,7 +155856,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0cbee391-2aae-41fd-b3e8-32d2a0b2d363", + "id": "69581219-a9cd-480f-8394-96e41c7ea291", "name": "Set the Membership Selection Criteria to a List of Identities", "originalRequest": { "url": { @@ -155913,7 +155913,7 @@ "_postman_previewlanguage": "json" }, { - "id": "62913e1b-e742-4a31-bd13-311f7ef3f580", + "id": "41e47266-7561-4fc9-8cb3-a823b921074f", "name": "Set the Membership Selection Criteria to a Standard Expression", "originalRequest": { "url": { @@ -155970,7 +155970,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fb21cb6c-15ae-4849-82ac-5cc94badc77c", + "id": "55be7982-2b5d-49be-80f3-606486f862b2", "name": "Add a New Clause as the Child of an Existing Standard Expression", "originalRequest": { "url": { @@ -156033,7 +156033,7 @@ } }, { - "id": "823d8ab4-78ee-4a51-b15d-bf440ec66011", + "id": "66039eef-e638-4b62-961e-33c587ee7e9a", "name": "Delete a Role", "request": { "name": "Delete a Role", @@ -156074,7 +156074,7 @@ }, "response": [ { - "id": "819d8ccb-8088-4a4e-b726-1d8786fa9986", + "id": "7760e3cd-0f17-446b-8ef4-434ce696914b", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -156108,7 +156108,7 @@ "_postman_previewlanguage": "text" }, { - "id": "aad1371b-d12a-40c6-8bb9-f1b8956adaad", + "id": "ef10a21a-5dd0-4feb-93d1-cb6023255716", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -156152,7 +156152,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a27bdc78-703c-48c3-9141-fffe3bc8fe19", + "id": "44ba744b-9328-449e-8d96-f92fd654823a", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -156196,7 +156196,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b00aaa38-a095-4ba5-bdd0-9ae474ac8cf4", + "id": "797acaaf-60ef-4b0d-9848-7d58fdc55776", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -156240,7 +156240,7 @@ "_postman_previewlanguage": "json" }, { - "id": "248450c8-84d6-4211-a039-324fc6dde5bf", + "id": "903ee9cf-631b-4a5d-b14b-71c5904c6102", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -156284,7 +156284,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4aedc531-5e86-4c6b-8302-0ce3bccd1a04", + "id": "d701cd1b-20ee-47af-b7f2-ae9e337dd85d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -156334,7 +156334,7 @@ } }, { - "id": "d4659727-b3fe-4760-a71e-a0bc62ee42a9", + "id": "7c60db43-1e2a-46cc-84c4-204c5b1b1f8f", "name": "Delete Role(s)", "request": { "name": "Delete Role(s)", @@ -156377,7 +156377,7 @@ }, "response": [ { - "id": "ba9bc602-5e9b-4193-9e74-ddb1f494b655", + "id": "f0a5ed58-c9e6-475a-91b3-78b1573c59c1", "name": "Returns an object with the id of the task performing the delete operation.", "originalRequest": { "url": { @@ -156434,7 +156434,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ae1c9429-c7e9-46ab-a882-844fcff9bb61", + "id": "711c9e7f-8d63-4ad3-ae82-f84fde69c764", "name": "400.1 Bad Request Content", "originalRequest": { "url": { @@ -156491,7 +156491,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8ff631a4-16d3-4306-8140-827d15b4fde7", + "id": "4426630f-1ce8-4b07-93dd-90a597807e8f", "name": "400.1 Role ids limit violation", "originalRequest": { "url": { @@ -156548,7 +156548,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4eaee1ce-d251-4431-be5a-a524135afdde", + "id": "0f707e3b-ef02-40c5-a9c6-4962ef4c4696", "name": "400.1.404 Referenced object not found", "originalRequest": { "url": { @@ -156605,7 +156605,7 @@ "_postman_previewlanguage": "json" }, { - "id": "82301f91-3cd7-42e0-9a53-2171f11578bc", + "id": "9d66dffe-1b17-48f0-86e7-7114757552b6", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -156662,7 +156662,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e1e7a53a-7b39-4ec5-b41f-dd44c0d7eb4a", + "id": "03e3d123-c30c-4656-ae93-7e9c3b5b0220", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -156719,7 +156719,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9065d9ae-655c-4647-b732-122643453ef6", + "id": "f9f6b6c3-4dae-44b0-a70d-ce3060023d17", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -156776,7 +156776,7 @@ "_postman_previewlanguage": "json" }, { - "id": "927e066d-c0b7-40df-9fde-33f514e45b01", + "id": "12159d77-3160-4e3d-95b6-605111141796", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -156839,7 +156839,7 @@ } }, { - "id": "8383c539-fbcd-4453-8aa1-920292a32b71", + "id": "dbab3854-951b-4d7c-b061-2810dd42d41e", "name": "Identities assigned a Role", "request": { "name": "Identities assigned a Role", @@ -156924,7 +156924,7 @@ }, "response": [ { - "id": "e31bcf83-5ee8-45bc-a213-1b684b0fbf64", + "id": "cbb2d55f-1939-4ab4-a80f-933a5bfa5f95", "name": "List of Identities assigned the Role", "originalRequest": { "url": { @@ -157015,7 +157015,7 @@ "_postman_previewlanguage": "json" }, { - "id": "373f208e-6aac-4d93-bd23-e50250932925", + "id": "881fa05f-199d-4052-a534-1b24f67ad0fb", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -157106,7 +157106,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cb83bfb6-556d-42d7-a523-8d6480d36be1", + "id": "8773c135-27e3-4a10-91a9-4d5bc4458030", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -157197,7 +157197,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4f595728-acdf-4e7b-a97f-09753c10d169", + "id": "e561e3dd-df3c-4d9a-8cb2-85892f9f954d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -157288,7 +157288,7 @@ "_postman_previewlanguage": "json" }, { - "id": "68139d6c-e837-4f5d-9e64-6d4f251fa27d", + "id": "3b6e51c8-a218-46fd-8dc2-c73457cff204", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -157379,7 +157379,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f519e113-8ee1-4127-b48c-fac4e04bcc10", + "id": "88af0345-4e43-4ae6-aaf5-c297f65436b6", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -157476,7 +157476,7 @@ } }, { - "id": "7a224ddf-b372-4dbd-af5b-d3839918ecea", + "id": "10e9ec21-31d8-4710-8848-ed9a1c45e2fe", "name": "List role's Entitlements", "request": { "name": "List role's Entitlements", @@ -157564,7 +157564,7 @@ }, "response": [ { - "id": "8100fd47-c684-4ce4-b463-32ed81933386", + "id": "bd7f2729-79c4-41a9-86ce-a1986b9c77c3", "name": "List of Entitlements", "originalRequest": { "url": { @@ -157655,7 +157655,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eba6b934-8247-4de7-a8f9-acb249033f55", + "id": "b2cc7635-de45-4f79-9e97-26ad7b0a0407", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -157746,7 +157746,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d834baa5-850c-46e5-8766-6f1f8cfe5a7d", + "id": "8c8120e9-e64d-4baf-b89b-9a5b1c7fcca3", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -157837,7 +157837,7 @@ "_postman_previewlanguage": "json" }, { - "id": "69e5d313-d22a-410d-a81d-14ff503950f7", + "id": "2e572af0-27ad-4f36-b35b-8d18225f25ef", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -157928,7 +157928,7 @@ "_postman_previewlanguage": "json" }, { - "id": "800c2bdd-e506-4b60-a38a-f09e2fe04a26", + "id": "6a3b345d-de36-4dbc-9cc1-d5caeb999bd8", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -158019,7 +158019,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ab3898fe-02c0-4af3-ace6-08d27d125639", + "id": "c449df64-1ea3-47f2-8273-92000208b9fd", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -158122,7 +158122,7 @@ "description": "", "item": [ { - "id": "d4109752-78aa-4a04-bb01-0d3f081f1f84", + "id": "8d445bff-dc7a-4a7e-9423-1fa4272ec315", "name": "Configure/create extended search attributes in IdentityNow.", "request": { "name": "Configure/create extended search attributes in IdentityNow.", @@ -158165,7 +158165,7 @@ }, "response": [ { - "id": "09a1de56-88ef-4cf3-978b-9d18161f0bc5", + "id": "62aa19cc-6eae-4277-80a4-a37a3e074dc1", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -158222,7 +158222,7 @@ "_postman_previewlanguage": "json" }, { - "id": "da762919-0432-44ea-a04b-cc400c61275c", + "id": "aacc32bf-7e8a-41d0-aaba-017dc5339610", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -158279,7 +158279,7 @@ "_postman_previewlanguage": "json" }, { - "id": "794c16d1-ec0f-411d-a47d-eff9e67dbffd", + "id": "fd25f0de-39fe-4cc8-afa5-dae25e0cee5f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -158336,7 +158336,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eefc57b1-3d7d-482a-a405-96ee94107e7a", + "id": "c60864f7-c46f-4c96-b4a5-44d1596f968c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -158393,7 +158393,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e2eb7be0-d64a-445b-9253-69024de7566e", + "id": "d11e2fb5-b0d5-4a6d-ad8d-f4bc2b322514", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -158450,7 +158450,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d82c1f06-a266-4abb-a378-2e77cb350a03", + "id": "6d4e143d-8ca6-4e09-9cd2-a1a5afeb1217", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -158507,7 +158507,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5195afae-6cfd-4c5a-a2d4-dfced7de292f", + "id": "0d3c6058-c78e-4cdd-a438-b94b65ab1dda", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -158570,7 +158570,7 @@ } }, { - "id": "91e495db-df2e-4c85-a0ec-a7876c285d6a", + "id": "6d56fa82-9435-4637-8a7a-1640c79e25fd", "name": "Retrieve a list of extended search attributes in IdentityNow.", "request": { "name": "Retrieve a list of extended search attributes in IdentityNow.", @@ -158600,7 +158600,7 @@ }, "response": [ { - "id": "2349b92f-f03f-4990-9e11-c66c08b4f6db", + "id": "d1f6efd4-d20a-4a90-aadd-9e2a66a0d92b", "name": "List of attribute configurations in IdentityNow.", "originalRequest": { "url": { @@ -158644,7 +158644,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d69e3d01-0bf2-40bc-a5d6-333437514cbe", + "id": "eae127bc-aa81-489b-bf15-80f0fd180f88", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -158688,7 +158688,7 @@ "_postman_previewlanguage": "json" }, { - "id": "909c9ed7-00eb-4cb3-9bba-f078843944f4", + "id": "c26ca6e2-ae3d-4908-a23e-7bbd576d9a7b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -158732,7 +158732,7 @@ "_postman_previewlanguage": "json" }, { - "id": "02d53d9a-30d3-42db-a5ba-75c9d56c868f", + "id": "fcfd9018-7618-4bc4-a780-a00544fb948f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -158776,7 +158776,7 @@ "_postman_previewlanguage": "json" }, { - "id": "468b57c3-2987-426b-a58d-ef5e8a00273e", + "id": "0d4b8c15-1997-44f8-9b5e-69d3c205fcaa", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -158826,7 +158826,7 @@ } }, { - "id": "c9979962-8dcf-4884-a33a-ccf9ac717e9b", + "id": "c552fb4f-18bc-40b9-8411-6421a7432e2e", "name": "Get the details of a specific extended search attribute in IdentityNow.", "request": { "name": "Get the details of a specific extended search attribute in IdentityNow.", @@ -158868,7 +158868,7 @@ }, "response": [ { - "id": "c6dd1306-fee6-4738-8a28-7f79ebc4acd3", + "id": "2da7ff3e-063a-49e1-94fb-ed351d9ee891", "name": "Specific attribute configuration in IdentityNow.", "originalRequest": { "url": { @@ -158913,7 +158913,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1dcfc123-9ef7-4699-a517-dff8c8ec56fb", + "id": "51aef4e8-e535-4a96-b1f8-2286cca38cf6", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -158948,7 +158948,7 @@ "_postman_previewlanguage": "text" }, { - "id": "2e6e208f-149b-4ad7-891c-15fbbbacd5a6", + "id": "3fadb3ec-871e-48ab-b999-6976ba41458b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -158993,7 +158993,7 @@ "_postman_previewlanguage": "json" }, { - "id": "24576cf4-0ce9-4585-88d0-fa7b5fc19c97", + "id": "74daf2b0-c170-4606-8947-62457096a425", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -159038,7 +159038,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6968b92c-345b-42c3-b1f2-1b363d6df01a", + "id": "7b07ac8b-169a-4b0c-a924-0caad71d28e9", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -159083,7 +159083,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f8837643-f330-41aa-985e-c4cccbf591a2", + "id": "65abe95f-08c5-4634-8234-23478fbf013b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -159128,7 +159128,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e5d2eb4b-c616-4090-b361-c51b24fee8b8", + "id": "0d2ff5d4-c5ba-4b63-8883-00ceb267684e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -159179,7 +159179,7 @@ } }, { - "id": "2167a98a-5f7d-41ba-89fa-aa132a74bca9", + "id": "c2c742b2-5c81-4619-b2ed-8a48a4cd36b9", "name": "Delete an extended search attribute in IdentityNow.", "request": { "name": "Delete an extended search attribute in IdentityNow.", @@ -159221,7 +159221,7 @@ }, "response": [ { - "id": "1658346c-34bb-4e0f-81d9-aeed82e23125", + "id": "8066fd66-6f66-45d0-9c4c-bca6561fd6cc", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -159256,7 +159256,7 @@ "_postman_previewlanguage": "text" }, { - "id": "18f84cc7-8ced-4afc-a293-386a28827675", + "id": "f2c58bd2-16fa-4a57-ac48-896c37a47aff", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -159301,7 +159301,7 @@ "_postman_previewlanguage": "json" }, { - "id": "653a3970-8cea-4505-b1de-b3ca81c72825", + "id": "565b23de-f5a7-4bfd-82b8-fbb7497343e8", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -159346,7 +159346,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6b74c874-e918-49c2-9e18-686d1945a0cb", + "id": "8c603392-ae88-410d-af3f-01e44e2e7460", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -159391,7 +159391,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b9d904d7-bcf0-4e59-b06b-85a8bee5695b", + "id": "17668565-bfa1-4696-93ed-a3d04e2adb9c", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -159436,7 +159436,7 @@ "_postman_previewlanguage": "json" }, { - "id": "847d3eaf-15b5-4d0d-af27-74dcc0d792cf", + "id": "45c6cb1b-ce6f-4e4e-bdca-7cfb77ad7cca", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -159487,7 +159487,7 @@ } }, { - "id": "e2b937ed-6f16-42cd-a964-5b299c68bfea", + "id": "781fe551-7c30-424c-8263-5c75b71a33b5", "name": "Update the details of a specific extended search attribute in IdentityNow.", "request": { "name": "Update the details of a specific extended search attribute in IdentityNow.", @@ -159542,7 +159542,7 @@ }, "response": [ { - "id": "b462375d-1a4f-459b-a4aa-434173c13a93", + "id": "c530b631-e5e6-499f-b04a-b495cf259c80", "name": "Responds with the Search Attribute Configuration as updated.", "originalRequest": { "url": { @@ -159600,7 +159600,7 @@ "_postman_previewlanguage": "json" }, { - "id": "82249197-d0ed-4f52-9783-f92f667cf79a", + "id": "26ed64b0-8991-4dfb-b049-ec0a2eedd47f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -159658,7 +159658,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ca7726aa-93aa-40f8-9724-d34072d4dbfe", + "id": "74dd5948-f9f6-479c-a129-a7173ac93432", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -159716,7 +159716,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dac4a4e1-d56c-41c9-b6e3-479aa4da1adf", + "id": "a683ffe0-feab-47a0-846d-409dfc9df14f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -159774,7 +159774,7 @@ "_postman_previewlanguage": "json" }, { - "id": "212c8c47-a72d-4783-a637-8c3517ce972b", + "id": "573ebabf-e997-4c83-943d-ae0f7c70f4ad", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -159832,7 +159832,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bc2f6e89-e5a9-4381-acdb-fb105bae49f4", + "id": "d7a4ceef-2689-4d86-b13c-c0822449903a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -159890,7 +159890,7 @@ "_postman_previewlanguage": "json" }, { - "id": "05bdc3a8-b757-4996-8839-c598c4419232", + "id": "1e7b7c23-5d5b-40ac-8a58-fca972bdf969", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -159960,7 +159960,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": "a2310467-978c-40b7-b6cc-4e4be2c4f35c", + "id": "bbf42211-14cb-46c4-a9e2-76ed89a451a8", "name": "Create Segment", "request": { "name": "Create Segment", @@ -160002,7 +160002,7 @@ }, "response": [ { - "id": "25ad3208-744a-4776-8569-0115b2039be5", + "id": "3c3e8fe1-6685-4f40-86f6-4a9a80ee26a1", "name": "Segment created", "originalRequest": { "url": { @@ -160058,7 +160058,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ccec037c-b85e-476d-ab25-1ff037590101", + "id": "7c113d1d-84a0-4652-b115-580897db8eb6", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -160114,7 +160114,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3bab0907-0aaf-4b39-92a0-7ff03b21099e", + "id": "ff993b29-fa1d-4438-9bfc-17e09a6a698c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -160170,7 +160170,7 @@ "_postman_previewlanguage": "json" }, { - "id": "55cfc63d-d4b6-461d-8175-97865ecfff8f", + "id": "64cad2c8-8766-4c28-a516-e63e8deae249", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -160226,7 +160226,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4dca8259-4a05-41d3-9879-a8cb1242d700", + "id": "518ae0bb-4f17-4ed4-b178-e146b69ce4d4", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -160282,7 +160282,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a3615c45-e7eb-4664-a3a5-0471564be62a", + "id": "8ca25352-c36b-4963-80d8-e2416235b77a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -160344,7 +160344,7 @@ } }, { - "id": "8336c3d1-2730-4437-a7a7-52a3f08fbe15", + "id": "73e13129-eccd-44b6-9dd4-3685203de28f", "name": "List Segments", "request": { "name": "List Segments", @@ -160401,7 +160401,7 @@ }, "response": [ { - "id": "b720c7da-938e-496f-94fb-c63c4a46dbbc", + "id": "90c75b1c-cb3b-46fb-afa8-4bea7e810534", "name": "List of all segments", "originalRequest": { "url": { @@ -160472,7 +160472,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dafc688d-d4a6-4cce-806c-ed7cd440084f", + "id": "3a6ba636-bc78-48f4-a8f3-c1f61e58c1f1", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -160543,7 +160543,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1146e71b-4455-4539-8a1a-c152af71efc4", + "id": "ffc840d4-6d27-40d7-aa00-171442986fd6", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -160614,7 +160614,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b7a56d6e-677e-444f-9303-53fee2d1c643", + "id": "043b30ca-2c48-4744-8f4a-083c6836c11f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -160685,7 +160685,7 @@ "_postman_previewlanguage": "json" }, { - "id": "aab08f50-a433-4c72-9662-f937c906f2fb", + "id": "5162b461-3198-4e88-b04f-dda61ec4dc34", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -160756,7 +160756,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f4b8626b-c6c0-42d2-9e0f-d448f5340a6c", + "id": "bc3d8b0f-b07a-4ee9-bbfd-5a3b105fa11d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -160833,7 +160833,7 @@ } }, { - "id": "17a5e90f-a043-475d-8885-28ce1fb6cda6", + "id": "21126b79-4abd-4ee6-ac72-61e74b3035c2", "name": "Get Segment by ID", "request": { "name": "Get Segment by ID", @@ -160874,7 +160874,7 @@ }, "response": [ { - "id": "766cec4b-9fe6-4ae1-8d74-024cb502d6c3", + "id": "a4dc2280-af2e-4200-93d0-de3dc29f6ea4", "name": "Segment", "originalRequest": { "url": { @@ -160918,7 +160918,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0437db39-fd6c-4512-aca4-c3169046494c", + "id": "528a9090-4f68-4eae-8592-43d705b2413e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -160962,7 +160962,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4fa4e05c-655f-4f52-9be7-6c0c2224eb35", + "id": "a1144303-e0ad-40cf-bae9-0204add5c22d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -161006,7 +161006,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2471d678-f1b6-44ca-8f63-08d022b1cac7", + "id": "dd11f31e-1477-4985-8a90-5e5af46f5a61", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -161050,7 +161050,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3189f4df-cb29-4b90-b239-9466445d0259", + "id": "470e4970-145e-4d60-9309-639ac023711e", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -161094,7 +161094,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eb606e93-c616-4b88-b9dd-14ee075273a8", + "id": "828b81ff-1d87-46d6-b095-4e4bf4989e99", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -161138,7 +161138,7 @@ "_postman_previewlanguage": "json" }, { - "id": "15e201be-1136-4e80-933d-b47d1ad5c75d", + "id": "1ae89927-a65f-4588-9e4e-fdada57d20da", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -161188,7 +161188,7 @@ } }, { - "id": "be871392-5290-4b61-8699-80435afeb437", + "id": "b8671723-613b-41eb-8786-114b9e22a103", "name": "Delete Segment by ID", "request": { "name": "Delete Segment by ID", @@ -161229,7 +161229,7 @@ }, "response": [ { - "id": "6179e1fa-3db8-403e-8563-fb8750943e6d", + "id": "79cd1f5d-b98c-45a2-9f32-ab23f1f7f666", "name": "No content.", "originalRequest": { "url": { @@ -161263,7 +161263,7 @@ "_postman_previewlanguage": "text" }, { - "id": "f5c35fc8-3dc5-4ece-b0fc-e62cc40992f4", + "id": "856ed0aa-bfb0-4f37-af75-3d2406d15567", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -161307,7 +161307,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b548e122-9456-449b-96c3-58d9ee6dc4b5", + "id": "38cfdb13-5ad7-4b2e-b8b7-f0671788bd2a", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -161351,7 +161351,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c967fd00-e077-47cd-b839-2f0d204a775a", + "id": "a766833d-5680-4f19-ac50-fec839979148", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -161395,7 +161395,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a26a36d9-cd20-4b1d-b63e-aa4084d0d819", + "id": "23df4538-118b-4aae-a10d-78a00d09e616", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -161439,7 +161439,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c73c9b26-e9b5-4dc8-bb3c-c4f7ea1ed3c4", + "id": "2a1df0f7-0845-43db-929a-bca4efa1793b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -161483,7 +161483,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b086cf77-5950-48fa-b7d9-4d00fc0544a7", + "id": "dbc993aa-08d4-40cc-acf9-be8447276e78", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -161533,7 +161533,7 @@ } }, { - "id": "30131b79-8198-4a11-b0f1-f1e9b3d8477d", + "id": "b29b5af9-4116-4155-9ce3-334571f634bc", "name": "Update Segment", "request": { "name": "Update Segment", @@ -161587,7 +161587,7 @@ }, "response": [ { - "id": "bfecce73-f132-4e14-9942-722849c8c4f6", + "id": "b627a67f-931a-46b9-b089-4aac459bbc99", "name": "Indicates the PATCH operation succeeded, and returns the segment's new representation.", "originalRequest": { "url": { @@ -161644,7 +161644,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9b3bad29-e508-4dfa-9e15-04271734dd54", + "id": "afbaad3a-8756-444f-8d63-b292f66e273d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -161701,7 +161701,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b5381464-4b7f-42a8-a0a3-b0b515859832", + "id": "32c9a08a-22f4-4fac-8cd1-6b4aad065d65", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -161758,7 +161758,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c1d58f41-3ec6-48e6-8bd6-cc1ea3f6dcf6", + "id": "abd8d99c-ed79-4714-9902-133f5d575025", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -161815,7 +161815,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6c9dcf72-b2f4-4eca-ba8c-ed16f9e075ec", + "id": "326867a5-aaa2-4119-af4d-2f4c7c8f0ab3", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -161872,7 +161872,7 @@ "_postman_previewlanguage": "json" }, { - "id": "be9b5da6-1ae7-4019-9c20-7c2eab678bcc", + "id": "fbcc4fe8-50f2-4901-9162-eb394d5f9d56", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -161929,7 +161929,7 @@ "_postman_previewlanguage": "json" }, { - "id": "34fb5343-1e9a-4d86-afa8-14b657654ed5", + "id": "c33351af-5034-4940-9cda-10d9eb1642af", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -161998,7 +161998,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": "6869ce13-3a30-4e31-9644-d28db419e0c4", + "id": "d98bc013-6710-4ee7-a62f-292315ab6491", "name": "List existing Service Desk Integrations", "request": { "name": "List existing Service Desk Integrations", @@ -162073,7 +162073,7 @@ }, "response": [ { - "id": "101d250e-4e87-4800-bd0b-cc86191b17e8", + "id": "065dba11-5b32-44f4-92ab-6004aae66856", "name": "List of ServiceDeskIntegrationDto", "originalRequest": { "url": { @@ -162162,7 +162162,7 @@ "_postman_previewlanguage": "json" }, { - "id": "846426dd-5185-4796-8c8a-bdde8eb207cd", + "id": "5a808102-bd10-40ac-bc91-ce4bdef06d1b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -162251,7 +162251,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a95725a1-51b5-49db-a31b-be4fcd25126e", + "id": "e319886f-d81a-49cd-b564-41dab0a792ff", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -162340,7 +162340,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c24b1417-3e4e-4481-b361-e3e11458d881", + "id": "8144aa7d-d906-4bff-a5e1-6b9ddd37ab5b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -162429,7 +162429,7 @@ "_postman_previewlanguage": "json" }, { - "id": "08718dea-2ada-4d3e-8ffe-0d0f416117de", + "id": "5ddd744d-1c85-4ada-87aa-b3433d41b854", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -162518,7 +162518,7 @@ "_postman_previewlanguage": "json" }, { - "id": "46ba9794-1e7d-4897-ae3f-8236ab6ed8d3", + "id": "61444444-ebae-4cdd-b810-689d3c8a9986", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -162607,7 +162607,7 @@ "_postman_previewlanguage": "json" }, { - "id": "11106a3c-c1cd-4e8c-a0fe-1f0132ccc731", + "id": "8ceb92d8-b2c1-4dfb-8da1-cddcc1afc3e3", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -162702,7 +162702,7 @@ } }, { - "id": "3fa97887-d1dc-467d-a759-80decfd31385", + "id": "082c46d9-bb68-4aeb-a9b1-e244f93ebdf9", "name": "Create new Service Desk integration", "request": { "name": "Create new Service Desk integration", @@ -162744,7 +162744,7 @@ }, "response": [ { - "id": "6a0d4e2e-aa74-4b4e-8725-b856b81d7697", + "id": "8d14136d-fa52-412a-b2ca-6c83e445f67c", "name": "details of the created integration", "originalRequest": { "url": { @@ -162800,7 +162800,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ac751700-9ca6-4160-9d15-4fcb2cb37926", + "id": "7e3b9a2f-ae51-49e9-aa80-67bc0fe4321c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -162856,7 +162856,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7568c38d-88b4-41ab-a23d-86df73bd8c17", + "id": "e736e6e1-2968-4f81-83c8-7755ccfdca5d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -162912,7 +162912,7 @@ "_postman_previewlanguage": "json" }, { - "id": "deca440b-8a45-46c3-97b9-31c93b2d6f8d", + "id": "982d0e39-8950-4445-87da-0be7de301150", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -162968,7 +162968,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9530d8c2-49cd-44f0-bd54-b52d7b1bb72d", + "id": "94fa90dc-333b-4b20-8032-7a0c59d408df", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -163024,7 +163024,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7dac159c-a67c-408c-baf4-de674f02199d", + "id": "e4c04640-92aa-4fcd-9b43-9df1cae9874f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -163080,7 +163080,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c4121446-ec4f-4325-a87a-0693eca5e3d7", + "id": "63cbc721-9046-4b48-a4d8-926b163644cf", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -163142,7 +163142,7 @@ } }, { - "id": "9a4ff701-ee4b-4a31-9794-ca3936a116f0", + "id": "6225c909-8078-4535-854e-6e21e66c2751", "name": "Get a Service Desk integration", "request": { "name": "Get a Service Desk integration", @@ -163183,7 +163183,7 @@ }, "response": [ { - "id": "3579e993-711b-4a30-a986-04ae63b8b4d4", + "id": "fbd9f65b-b7a5-4e4e-9bf7-8c07524757cc", "name": "ServiceDeskIntegrationDto with the given ID", "originalRequest": { "url": { @@ -163227,7 +163227,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3a45d26d-9027-44d4-8aaf-5df4fc10a387", + "id": "a9465382-458c-4aa4-b8ff-6343ed044d68", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -163271,7 +163271,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bf2ee679-0751-4df0-8be2-5102aacf5ad5", + "id": "8b4a55e6-cc22-48bf-9801-58a39e6f71c1", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -163315,7 +163315,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1909b6ec-aa08-4ced-bee7-aeb0c4642ccd", + "id": "2c5c245d-9764-41ba-8aca-0a244d71d39d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -163359,7 +163359,7 @@ "_postman_previewlanguage": "json" }, { - "id": "03fe11c5-0c87-472b-ab00-2521476fe7f4", + "id": "2a47f8a5-cfcb-4d38-ab3c-3145afe14cbd", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -163403,7 +163403,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4de34b59-07ec-45c0-bee3-725cab17ce42", + "id": "8ab69b98-3f1f-4f88-b2cc-bcc0e28b7fd4", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -163447,7 +163447,7 @@ "_postman_previewlanguage": "json" }, { - "id": "624a19e2-ee44-45cf-b69f-d0e59a808e80", + "id": "2d4b3144-b72a-49a7-89be-17a05baa8fce", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -163497,7 +163497,7 @@ } }, { - "id": "695291aa-e665-411d-9841-1047011acaee", + "id": "63f9c10c-cd2e-47f0-87ec-e7faf3445da5", "name": "Update a Service Desk integration", "request": { "name": "Update a Service Desk integration", @@ -163551,7 +163551,7 @@ }, "response": [ { - "id": "da829728-caf7-4942-ae8d-f4b154eed25e", + "id": "f936ae2b-344e-459a-a7c9-e2d334fed347", "name": "ServiceDeskIntegrationDto as updated", "originalRequest": { "url": { @@ -163608,7 +163608,7 @@ "_postman_previewlanguage": "json" }, { - "id": "45df0500-1fcd-48f7-97c8-433b8973cb53", + "id": "eae5474f-57e4-4513-9fa3-344d073db1a0", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -163665,7 +163665,7 @@ "_postman_previewlanguage": "json" }, { - "id": "29dd14f6-e82f-4c99-aedd-11b86a0d8541", + "id": "89866a1a-28c4-49ae-b624-5f554c79dee1", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -163722,7 +163722,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6db0ed03-dcf7-4df0-92d4-7d825589d6ab", + "id": "c0d4355c-00b2-407d-b5c8-3bec17c519ca", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -163779,7 +163779,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f0db3632-33c8-4fcf-9c6a-c829e6d18aa2", + "id": "948bfbe8-9137-4910-bfd2-dfc04220f892", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -163836,7 +163836,7 @@ "_postman_previewlanguage": "json" }, { - "id": "afb1aafb-2c12-42b3-9405-54929816b646", + "id": "d4f262fa-807b-4f70-b71b-5a7c8b808790", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -163893,7 +163893,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3e430352-a267-4ca8-91dd-84db1ea9f48d", + "id": "892314d1-5106-4974-aee1-9d89f1eb6c67", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -163956,7 +163956,7 @@ } }, { - "id": "ec983ad3-8501-41e2-8e82-0c826cd7d4e3", + "id": "d1cd90be-80ca-48b3-a2f5-29b850f3d442", "name": "Delete a Service Desk integration", "request": { "name": "Delete a Service Desk integration", @@ -163997,7 +163997,7 @@ }, "response": [ { - "id": "2ba296c0-a937-4d12-ad18-43c5860195a2", + "id": "754426ca-6d62-470e-9f0c-378473ff4fcb", "name": "Service Desk integration with the given ID successfully deleted", "originalRequest": { "url": { @@ -164031,7 +164031,7 @@ "_postman_previewlanguage": "text" }, { - "id": "469c2fae-73c6-4ce9-afee-391d6218abd3", + "id": "20fc039d-70d7-497d-aef5-a1d76cef9035", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -164075,7 +164075,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f6659651-e951-4639-9976-e1ea6eb15989", + "id": "4ff6d509-a83d-4a78-b651-c2b3208afec6", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -164119,7 +164119,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e430050f-5fa0-4ba1-89da-f5f2d294c014", + "id": "27442cd8-25b6-4d63-8f3b-dab79e10c6ab", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -164163,7 +164163,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e9161345-06e0-4e66-bbe1-02c274017f6f", + "id": "b060d970-a256-4b30-aaf5-cc15ae4b4f8a", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -164207,7 +164207,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2ef36031-639d-4b04-ab32-ffc6b52430af", + "id": "6b744fcf-7ac7-48a8-9b8d-0d2d49d0478b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -164251,7 +164251,7 @@ "_postman_previewlanguage": "json" }, { - "id": "00a2b8bd-b0c4-4db0-a653-56becb707250", + "id": "f37faf27-1709-4613-bee1-02439cb2690a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -164301,7 +164301,7 @@ } }, { - "id": "7b081028-8eae-4354-9c1f-936b150374a0", + "id": "d22bc905-04bf-452b-9268-c9806c94e4a8", "name": "Service Desk Integration Update PATCH", "request": { "name": "Service Desk Integration Update PATCH", @@ -164355,7 +164355,7 @@ }, "response": [ { - "id": "49de9372-582c-4fec-a2f6-41d67324fa37", + "id": "55bb239f-2ad4-425a-b7c6-2cca005452f3", "name": "ServiceDeskIntegrationDto as updated", "originalRequest": { "url": { @@ -164412,7 +164412,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5a605cdd-f986-4e2b-93ef-773bfe8de4b9", + "id": "1433c5cf-9b50-4c3b-a8a9-0337aad0bb81", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -164469,7 +164469,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e51d41e7-675b-4efd-90e4-aeb288568fe3", + "id": "68fccdcf-2463-4bb5-a195-7f90c643adcf", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -164526,7 +164526,7 @@ "_postman_previewlanguage": "json" }, { - "id": "04dffd66-5f29-459b-a889-4bc1b033024c", + "id": "ae372f18-7938-4646-a9da-36ff93497c70", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -164583,7 +164583,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b70a780a-17d9-4f67-922b-435e81d23c1f", + "id": "e4879cda-b2c2-4995-9838-f1285bbff163", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -164640,7 +164640,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e6ea5cab-1c89-4f86-91ee-e62160728fa3", + "id": "718f7468-7aa0-4608-b1a1-e7518f954d19", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -164697,7 +164697,7 @@ "_postman_previewlanguage": "json" }, { - "id": "efbc7ecb-aabf-40b5-b4a4-ad6a90109cde", + "id": "aaa19ddf-4a15-4f72-9b4c-a3ecb1c39ab4", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -164760,7 +164760,7 @@ } }, { - "id": "e4c4026b-c684-4961-a5ec-1cc4b7a2be10", + "id": "e36cb002-395c-4735-acd5-c20ca823fbd8", "name": "Service Desk Integration Types List.", "request": { "name": "Service Desk Integration Types List.", @@ -164790,7 +164790,7 @@ }, "response": [ { - "id": "43153db9-1b06-41cb-bc99-444f42eb65bb", + "id": "855ee622-f581-4cbb-a2f0-510344bddc4b", "name": "Responds with an array of the currently supported Service Desk integration types.", "originalRequest": { "url": { @@ -164834,7 +164834,7 @@ "_postman_previewlanguage": "json" }, { - "id": "23bb8626-1c52-4ced-96fc-be9aff23ce2e", + "id": "99d3880c-c305-443f-84f0-3407d544f064", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -164878,7 +164878,7 @@ "_postman_previewlanguage": "json" }, { - "id": "28d09314-e101-43ed-9e12-7951135c701f", + "id": "456002f2-f859-4ddd-9d74-4b549ddfd6b1", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -164922,7 +164922,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f07f9914-0252-4d24-8308-0c7d51198426", + "id": "49427133-3986-4070-b57f-75e524ccb324", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -164966,7 +164966,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d343fc06-324f-4550-9c5e-ede44065938d", + "id": "f546eb1d-5638-4b95-b3a7-82313a081603", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -165010,7 +165010,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d6160c45-f305-4fad-aacd-1d1f936d2d2c", + "id": "d2965a35-2e57-44b2-bbd6-114aea364ca0", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -165054,7 +165054,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0d4b6606-6816-4112-a7be-84423e7fa0cb", + "id": "86b4e029-2507-49bd-9a57-518195bee182", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -165104,7 +165104,7 @@ } }, { - "id": "2a94e15b-239c-467a-ba2b-a2d4ec0b9f29", + "id": "752fbbce-5856-49a7-81ae-19e713d0eeed", "name": "Service Desk integration template by scriptName.", "request": { "name": "Service Desk integration template by scriptName.", @@ -165146,7 +165146,7 @@ }, "response": [ { - "id": "e0c3ecfd-4d9b-4b79-8014-22933243566c", + "id": "5c10352c-c451-4c0d-a9e6-4d4ecace4ddb", "name": "Responds with the ServiceDeskIntegrationTemplateDto with the specified scriptName.", "originalRequest": { "url": { @@ -165186,12 +165186,12 @@ "value": "application/json" } ], - "body": "{\n \"attributes\": {\n \"in3\": true\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 \"dolore_cc3\": false,\n \"velit0\": \"eiusmod Ut aute et adipisicing\"\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": "87073c28-6bcd-4bb2-a071-75248f7dfc7f", + "id": "2090ef46-3b54-4f50-a168-462040341ecd", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -165236,7 +165236,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c590b28b-0f5a-439c-bb01-f36a20456ca5", + "id": "6166da15-70e2-48d4-83cf-fbd77ac0ef7f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -165281,7 +165281,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c8abf11f-e677-4d69-9f4c-284f32fd8a4b", + "id": "e4274e48-0244-4b29-8370-e4dea41ee735", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -165326,7 +165326,7 @@ "_postman_previewlanguage": "json" }, { - "id": "25b0b597-14f4-44ee-b8dd-57dfd88c9d89", + "id": "be498280-79d1-468c-8192-6cfb36b482f3", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -165371,7 +165371,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1078e755-a719-4fc1-8cb6-82bc1f3457fa", + "id": "e87e2469-964d-42f7-8ab9-0d34139d8b95", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -165416,7 +165416,7 @@ "_postman_previewlanguage": "json" }, { - "id": "82c35dbb-583b-4dd8-ae4c-a718a85f07ad", + "id": "ea98d7f4-fdee-4885-9957-2038552b6e44", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -165467,7 +165467,7 @@ } }, { - "id": "12d56fec-a417-4948-a5ff-27d71deff726", + "id": "effa771f-5405-4e34-b51b-2e6d208d6739", "name": "Get the time check configuration", "request": { "name": "Get the time check configuration", @@ -165497,7 +165497,7 @@ }, "response": [ { - "id": "9f18766b-2830-45cd-9e6f-f800924d5bca", + "id": "3bbb1a32-6d5e-4744-a75f-864190d50d00", "name": "QueuedCheckConfigDetails containing the configured values", "originalRequest": { "url": { @@ -165536,12 +165536,12 @@ "value": "application/json" } ], - "body": "{\n \"provisioningStatusCheckIntervalMinutes\": \"dolor\",\n \"provisioningMaxStatusCheckDays\": \"consequat sint e\"\n}", + "body": "{\n \"provisioningStatusCheckIntervalMinutes\": \"ut culpa incididunt\",\n \"provisioningMaxStatusCheckDays\": \"non in ullamco consectetur\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "de46a1f8-5b15-4c01-a696-2ca78fc1daac", + "id": "59948ee9-9eec-4c73-8fbd-715cc629a05d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -165585,7 +165585,7 @@ "_postman_previewlanguage": "json" }, { - "id": "81f9238a-a7e3-49c7-8045-88c549a14963", + "id": "1eb9b7ff-67bd-4516-938f-60946a0b6c97", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -165629,7 +165629,7 @@ "_postman_previewlanguage": "json" }, { - "id": "031ea1bb-3fad-4bc1-8bcd-59847decbb8e", + "id": "c49844db-6154-4a5a-bf95-5f28311de55d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -165673,7 +165673,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e23fec22-ee07-4669-bcb2-56a4a747b0fb", + "id": "cb1ae8ec-410d-4719-83eb-29232f33aaa8", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -165717,7 +165717,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a7365705-6abc-40a9-9a4d-d222173e8ae5", + "id": "bf1b11a7-9336-44c1-bec6-5792e5ba750b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -165761,7 +165761,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ac3f69a7-8147-4199-95ef-ddb3cbf72c6f", + "id": "56167084-51f1-4c79-b7ed-240b369f0fa4", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -165811,7 +165811,7 @@ } }, { - "id": "c0b82135-e35f-4fcc-a7fb-4e981259ea45", + "id": "a3e0a8e3-6f4d-4ea7-8405-1d02ecb04f2b", "name": "Update the time check configuration", "request": { "name": "Update the time check configuration", @@ -165843,7 +165843,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"provisioningStatusCheckIntervalMinutes\": \"dolor\",\n \"provisioningMaxStatusCheckDays\": \"consequat sint e\"\n}", + "raw": "{\n \"provisioningStatusCheckIntervalMinutes\": \"ut culpa incididunt\",\n \"provisioningMaxStatusCheckDays\": \"non in ullamco consectetur\"\n}", "options": { "raw": { "headerFamily": "json", @@ -165854,7 +165854,7 @@ }, "response": [ { - "id": "3228a753-bcf5-49bf-a907-7697c527963c", + "id": "3d14d884-76f8-4f69-af1e-d648c212dd44", "name": "QueuedCheckConfigDetails as updated", "originalRequest": { "url": { @@ -165889,7 +165889,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"provisioningStatusCheckIntervalMinutes\": \"dolor\",\n \"provisioningMaxStatusCheckDays\": \"consequat sint e\"\n}", + "raw": "{\n \"provisioningStatusCheckIntervalMinutes\": \"ut culpa incididunt\",\n \"provisioningMaxStatusCheckDays\": \"non in ullamco consectetur\"\n}", "options": { "raw": { "headerFamily": "json", @@ -165906,12 +165906,12 @@ "value": "application/json" } ], - "body": "{\n \"provisioningStatusCheckIntervalMinutes\": \"dolor\",\n \"provisioningMaxStatusCheckDays\": \"consequat sint e\"\n}", + "body": "{\n \"provisioningStatusCheckIntervalMinutes\": \"ut culpa incididunt\",\n \"provisioningMaxStatusCheckDays\": \"non in ullamco consectetur\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "085fb3bf-781f-4ea0-b9c7-596dde71278c", + "id": "e651ff53-ed4a-4517-9a95-aa6f8cfe6483", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -165946,7 +165946,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"provisioningStatusCheckIntervalMinutes\": \"dolor\",\n \"provisioningMaxStatusCheckDays\": \"consequat sint e\"\n}", + "raw": "{\n \"provisioningStatusCheckIntervalMinutes\": \"ut culpa incididunt\",\n \"provisioningMaxStatusCheckDays\": \"non in ullamco consectetur\"\n}", "options": { "raw": { "headerFamily": "json", @@ -165968,7 +165968,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a9ba2e8d-25c7-443c-9da8-5e4e097f42f1", + "id": "ebd68189-8397-49ec-80d9-f7df88d233be", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -166003,7 +166003,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"provisioningStatusCheckIntervalMinutes\": \"dolor\",\n \"provisioningMaxStatusCheckDays\": \"consequat sint e\"\n}", + "raw": "{\n \"provisioningStatusCheckIntervalMinutes\": \"ut culpa incididunt\",\n \"provisioningMaxStatusCheckDays\": \"non in ullamco consectetur\"\n}", "options": { "raw": { "headerFamily": "json", @@ -166025,7 +166025,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b83c7705-ce8f-454a-a629-5f6c2a281bff", + "id": "e25c53a9-f1a0-49dc-b998-57e8a3f4bfd4", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -166060,7 +166060,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"provisioningStatusCheckIntervalMinutes\": \"dolor\",\n \"provisioningMaxStatusCheckDays\": \"consequat sint e\"\n}", + "raw": "{\n \"provisioningStatusCheckIntervalMinutes\": \"ut culpa incididunt\",\n \"provisioningMaxStatusCheckDays\": \"non in ullamco consectetur\"\n}", "options": { "raw": { "headerFamily": "json", @@ -166082,7 +166082,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c2c9e0dc-8eb8-41a3-87d8-466915b433cc", + "id": "d078ad19-a71a-47ce-baec-0c91d5ad098d", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -166117,7 +166117,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"provisioningStatusCheckIntervalMinutes\": \"dolor\",\n \"provisioningMaxStatusCheckDays\": \"consequat sint e\"\n}", + "raw": "{\n \"provisioningStatusCheckIntervalMinutes\": \"ut culpa incididunt\",\n \"provisioningMaxStatusCheckDays\": \"non in ullamco consectetur\"\n}", "options": { "raw": { "headerFamily": "json", @@ -166139,7 +166139,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b027b3fd-0d65-43c1-8000-0756b459d220", + "id": "c7524a3d-b3e4-48d6-8064-7d008e670a68", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -166174,7 +166174,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"provisioningStatusCheckIntervalMinutes\": \"dolor\",\n \"provisioningMaxStatusCheckDays\": \"consequat sint e\"\n}", + "raw": "{\n \"provisioningStatusCheckIntervalMinutes\": \"ut culpa incididunt\",\n \"provisioningMaxStatusCheckDays\": \"non in ullamco consectetur\"\n}", "options": { "raw": { "headerFamily": "json", @@ -166196,7 +166196,7 @@ "_postman_previewlanguage": "json" }, { - "id": "03afeb53-3ccd-468a-a7de-43a04748c147", + "id": "50c93b81-1131-4fe9-9741-fa1bffa15a23", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -166231,7 +166231,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"provisioningStatusCheckIntervalMinutes\": \"dolor\",\n \"provisioningMaxStatusCheckDays\": \"consequat sint e\"\n}", + "raw": "{\n \"provisioningStatusCheckIntervalMinutes\": \"ut culpa incididunt\",\n \"provisioningMaxStatusCheckDays\": \"non in ullamco consectetur\"\n}", "options": { "raw": { "headerFamily": "json", @@ -166265,7 +166265,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": "129d06c7-8547-4426-a6d8-e1fe9dfd3ef8", + "id": "d3a6b832-2434-4b9a-82ad-b4feacf070e8", "name": "Update an existing SIM integration", "request": { "name": "Update an existing SIM integration", @@ -166319,7 +166319,7 @@ }, "response": [ { - "id": "9b918f03-0d81-4b53-a036-0590c6334c0c", + "id": "467b0189-2607-4dbd-abcd-453dc6648fcd", "name": "details of the updated integration", "originalRequest": { "url": { @@ -166376,7 +166376,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e683e7c7-cc0d-4ca1-89a3-38635115d39d", + "id": "3a1497e7-300a-4931-8ba8-c118a1ea0e2a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -166433,7 +166433,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5d9de00f-3bf0-4907-bab7-468bff2b9af5", + "id": "56954671-5657-4804-b867-29b5f0d3a516", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -166490,7 +166490,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ebe50450-ac40-4dfe-ad66-3d95d854d736", + "id": "52fbb7bf-5e4b-4b3e-a2a2-8f1c3968aa95", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -166547,7 +166547,7 @@ "_postman_previewlanguage": "json" }, { - "id": "40e5bb48-b46c-4a12-9982-c3c4e99c204b", + "id": "a5d96f45-adcb-4ad7-9aac-812d8dc51c36", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -166604,7 +166604,7 @@ "_postman_previewlanguage": "json" }, { - "id": "615729d0-b272-457e-a6f4-cc89efe7be42", + "id": "64ad8e9c-3a03-4817-9361-2b22f850cc4c", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -166661,7 +166661,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d36286e4-fe2e-410e-af74-a0beb6463b41", + "id": "45698272-367b-4bd8-83ce-b5b64a4c7c87", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -166724,7 +166724,7 @@ } }, { - "id": "c4f96de1-91d0-4fa0-8ee4-9510a2f81a46", + "id": "45441d3e-8601-46a8-95cf-2b531fdc3e94", "name": "Get a SIM integration details.", "request": { "name": "Get a SIM integration details.", @@ -166765,7 +166765,7 @@ }, "response": [ { - "id": "78feb6ad-192e-47e7-826f-2e8468a46a4d", + "id": "624575ea-710d-49d0-be0f-f842ea0b4b8f", "name": "The DTO containing the details of the SIM integration", "originalRequest": { "url": { @@ -166809,7 +166809,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bf03a25a-a98e-493d-90e4-acb39ff50435", + "id": "cec7de76-040a-43ba-959f-d92e76fff387", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -166853,7 +166853,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7764b5f9-5f95-4086-9e77-93571e4e22d4", + "id": "ec163f18-1c03-4ed6-a64b-b153120115ea", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -166897,7 +166897,7 @@ "_postman_previewlanguage": "json" }, { - "id": "85336403-112b-4410-abd6-61979a44518b", + "id": "5a561040-d499-4a9e-8b07-06b438ede69e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -166941,7 +166941,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d5853d27-b4a4-482d-9096-00f8241df985", + "id": "d1202698-88e9-4faf-9bd3-2dc22955862b", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -166985,7 +166985,7 @@ "_postman_previewlanguage": "json" }, { - "id": "54b414b8-4f93-4ebe-9b6f-35eaa9f2e370", + "id": "02ec9011-9cab-4af8-9479-fd39ec067806", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -167029,7 +167029,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3eb2b909-611a-4879-bf35-5a2595335faa", + "id": "e4a9a642-b09e-457a-ab82-9fb5d1cbfaf1", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -167079,7 +167079,7 @@ } }, { - "id": "1c36a155-9a16-4786-ba2d-54a4a659d7ce", + "id": "bf0ba63a-33af-48e1-b4af-0003fc4d1470", "name": "Delete a SIM integration", "request": { "name": "Delete a SIM integration", @@ -167120,7 +167120,7 @@ }, "response": [ { - "id": "6f845711-0b83-4b7f-aa54-401367cf3baf", + "id": "af82750f-ab30-4ea0-a7a9-655169b24a76", "name": "No content response", "originalRequest": { "url": { @@ -167154,7 +167154,7 @@ "_postman_previewlanguage": "text" }, { - "id": "970edb80-c224-4908-bd29-924a13cf8b15", + "id": "79cfb7cf-5ccf-4f65-91aa-0bc1a5d00aae", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -167198,7 +167198,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b06ce2ff-2800-441b-aae5-92628ab13b69", + "id": "4a45eb2f-ac1e-4cdd-bc60-7d7d3ece9745", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -167242,7 +167242,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6da47c06-9e04-4087-9706-98028dcca30f", + "id": "3a0969db-1006-4798-acd5-ebfc1079cd0d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -167286,7 +167286,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ff5f7719-1d6c-4bd3-a79d-b851aec29b61", + "id": "64fdd1df-af15-4d7b-996d-bce80317e6e7", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -167330,7 +167330,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a99359e2-155f-4289-9b21-4ea54493fe23", + "id": "1975afa9-d2ec-4502-8379-42a983abab24", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -167374,7 +167374,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2e19e6bf-7338-47dc-b715-08fad2fdc807", + "id": "94194f32-ef47-4496-97e8-80cd00db8968", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -167424,7 +167424,7 @@ } }, { - "id": "922d1852-1070-41b6-a14b-1c78ff1ca6d3", + "id": "d97af7cc-6a08-460b-a2ae-82a662a56ff1", "name": "Patch a SIM attribute.", "request": { "name": "Patch a SIM attribute.", @@ -167478,7 +167478,7 @@ }, "response": [ { - "id": "653ad626-e559-45df-8a20-8b4f1e2706a6", + "id": "a6d40da7-ebbc-4524-b08d-c962c2f146e3", "name": "The updated DTO containing the details of the SIM integration.", "originalRequest": { "url": { @@ -167535,7 +167535,7 @@ "_postman_previewlanguage": "json" }, { - "id": "33b17953-22d5-4c4c-bf70-406756871a93", + "id": "f9ff0e05-85d9-409a-8525-61731d25160b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -167592,7 +167592,7 @@ "_postman_previewlanguage": "json" }, { - "id": "849a78ab-3bf0-4f8a-a368-f5030a009abf", + "id": "68f5cf53-705c-4ea8-925d-80566bfa28dd", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -167649,7 +167649,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eaf5c251-2603-4506-a0a7-b1d3b62a16f5", + "id": "247c498f-966a-41ab-a691-5714d6b31fd4", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -167706,7 +167706,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d51c6ee3-8f68-49ad-a0d1-3bec1ee7bd5e", + "id": "243685ce-fbeb-4a68-b5b8-d3b3946d57fc", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -167763,7 +167763,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b1fd73d9-c58b-42dd-aff4-7060eb313dfb", + "id": "ce9bf505-78ae-442a-88d0-784098db4b8e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -167820,7 +167820,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b106b282-645b-48bf-ac95-58117f5dfaa4", + "id": "e6aad128-4ac2-4b6c-ab51-6aefdda735ae", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -167883,7 +167883,7 @@ } }, { - "id": "22cc0e8b-5dde-43ce-86d7-830215b59d2e", + "id": "fd5e00bb-69a2-4859-83d1-aee8d9df6736", "name": "Patch a SIM beforeProvisioningRule attribute.", "request": { "name": "Patch a SIM beforeProvisioningRule attribute.", @@ -167938,7 +167938,7 @@ }, "response": [ { - "id": "663a93d8-57af-47f4-9522-a96a8c12e0e7", + "id": "888f9988-66ca-4c38-850d-e9314094d92e", "name": "The updated DTO containing the details of the SIM integration.", "originalRequest": { "url": { @@ -167996,7 +167996,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e04b4303-49da-4918-ae50-d3b5b40479e4", + "id": "e97de4c9-e666-43cc-aa17-e21de4844e69", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -168054,7 +168054,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a342d10a-d029-45a8-a0cd-e5d6810858cc", + "id": "c02ccf3f-99d0-4072-96d0-a6ba8387eeec", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -168112,7 +168112,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c6fb86f6-5264-4515-bc8f-7ea192234e8b", + "id": "ea2257d0-1307-4002-9414-d66d9d08d8ba", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -168170,7 +168170,7 @@ "_postman_previewlanguage": "json" }, { - "id": "16dbe34f-dd45-4cce-90ec-9f57c98b3204", + "id": "76f16bd2-c79a-4a86-b669-bbffd7ce2678", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -168228,7 +168228,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2df47080-7e87-48bb-9749-b1e7a0e6c764", + "id": "9eac23db-fa02-4233-92b5-9c7a868acb08", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -168286,7 +168286,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5255b025-efd7-4086-a29b-0e65418881fb", + "id": "748ab272-4cf4-4a13-8259-3161ec6bd979", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -168350,7 +168350,7 @@ } }, { - "id": "75fc663b-f467-49eb-bdbe-a6efd18cd06c", + "id": "d15fdeaf-c9c6-4a9d-b43e-27a961a8d7e1", "name": "List the existing SIM integrations.", "request": { "name": "List the existing SIM integrations.", @@ -168379,7 +168379,7 @@ }, "response": [ { - "id": "0c2b56c8-07e0-4a28-9dff-c8e3fb735f5a", + "id": "9dcb44ba-8983-4167-af04-19a77609631b", "name": "The DTO containing the details of the SIM integration", "originalRequest": { "url": { @@ -168422,7 +168422,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6d5f8a7f-9cf8-4b91-8b23-2bd2ff8a660d", + "id": "dc745223-07ac-4f9f-8e67-176cb593bd19", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -168465,7 +168465,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8ca7c713-f351-43c0-9112-0d1ff206b877", + "id": "564205c7-a7fe-4582-afba-cabb8c0cb432", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -168508,7 +168508,7 @@ "_postman_previewlanguage": "json" }, { - "id": "518c2309-c141-4b26-8c99-13d2691a67de", + "id": "b280972a-6e29-4e1e-ba43-aab8f82e6c30", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -168551,7 +168551,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eb9ce3e3-c12c-44c6-8e52-20c49c139883", + "id": "9cf8b948-6a72-4467-bddb-1031a907cc69", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -168594,7 +168594,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4371fcbf-175e-42ac-a6e3-d89a106fc325", + "id": "dada2430-4dad-499a-815a-c5b2dd2d3681", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -168637,7 +168637,7 @@ "_postman_previewlanguage": "json" }, { - "id": "90a04a2b-239f-4865-b4b6-860d1f5232f6", + "id": "e88241c5-148a-4e57-9f9c-3d22b34c17a3", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -168686,7 +168686,7 @@ } }, { - "id": "be9049f5-c9ab-44e1-83c7-b2d9243abf3f", + "id": "fd0c36d3-7230-4316-8d86-cb9b32138748", "name": "Create new SIM integration", "request": { "name": "Create new SIM integration", @@ -168728,7 +168728,7 @@ }, "response": [ { - "id": "4e1562e1-439c-41cd-a5b8-e351c6e82b94", + "id": "a65b9e77-23b4-4949-b814-058646a8ce38", "name": "details of the created integration", "originalRequest": { "url": { @@ -168784,7 +168784,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2cf9b258-f377-4daa-a2b5-aca586ab2646", + "id": "3ca1135c-8ae2-4829-b9e5-d2d39b1ab0bd", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -168840,7 +168840,7 @@ "_postman_previewlanguage": "json" }, { - "id": "26e37074-73c3-46ec-a218-d3e99519d78a", + "id": "bee10d89-9c5f-4f55-bda0-e49c35880acb", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -168896,7 +168896,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cd21e209-1152-42a7-b6da-97aed9503541", + "id": "c5d9243e-d81d-43f2-9062-643469ecc046", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -168952,7 +168952,7 @@ "_postman_previewlanguage": "json" }, { - "id": "88711cd0-307a-4ecd-a94b-3717d57944f8", + "id": "f129a08c-7b40-43e8-8975-609b1b02e72e", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -169008,7 +169008,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d675ef44-8f25-4b35-a718-7af52c04e7a5", + "id": "4046868f-5812-4a6a-8d19-7375e384acb7", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -169064,7 +169064,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5ade2cd1-4409-46a5-bbf9-79cbef3cac9d", + "id": "503025e4-c341-4e6c-93fa-e6ec5c056076", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -169132,7 +169132,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": "eac1628d-11eb-4f55-8039-5fadfb5606f3", + "id": "29cf25e4-54c8-4785-be53-926b554e4aa9", "name": "Create SOD policy", "request": { "name": "Create SOD policy", @@ -169174,7 +169174,7 @@ }, "response": [ { - "id": "776a08ca-e00e-4249-99a2-a8b19bd6b627", + "id": "59ed3d9b-1c65-483b-a755-46dc4331d827", "name": "Conflicting Access Based Policy", "originalRequest": { "url": { @@ -169230,7 +169230,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4f1ef014-e02d-4e09-99fa-2c63af107d4f", + "id": "87d193f8-7e0e-4e1b-91c1-241a5b77e98d", "name": "General Policy", "originalRequest": { "url": { @@ -169286,7 +169286,7 @@ "_postman_previewlanguage": "json" }, { - "id": "89ca0543-c4d0-4e07-b448-6e857a892bb6", + "id": "234fad12-d9b2-4e93-b94f-dda26f947c8e", "name": "Conflicting Access Based Policy", "originalRequest": { "url": { @@ -169342,7 +169342,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2a98c046-b65f-464c-8e59-9288d5014218", + "id": "59c0c168-8268-442a-9c1e-9b611143455f", "name": "General Policy", "originalRequest": { "url": { @@ -169398,7 +169398,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1db4d2aa-f5ef-47a8-88b6-fc3bf6f6ff4e", + "id": "9610e713-66f5-44dc-9328-00501df7fc53", "name": "Conflicting Access Based Policy", "originalRequest": { "url": { @@ -169454,7 +169454,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d88c4479-a2a2-4994-812c-010c34cb678c", + "id": "b08a5a7a-67b8-424b-8cf6-2c6d6e6d7a4f", "name": "General Policy", "originalRequest": { "url": { @@ -169510,7 +169510,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e958fc01-5aa2-4082-a0b8-2394943cbada", + "id": "a3ed36be-3c53-438e-b7b1-65b1df0ab0df", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -169566,7 +169566,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6afb7e75-05ad-40a0-8c64-9284c69d0896", + "id": "319a458d-8ca7-4836-bcd1-2ef86b3c330d", "name": "General Policy", "originalRequest": { "url": { @@ -169622,7 +169622,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4d7a374b-bec4-4f32-8020-f80bb77f04b7", + "id": "c7ecaf62-a38b-4b89-a242-560cf58ff8bf", "name": "Conflicting Access Based Policy", "originalRequest": { "url": { @@ -169678,7 +169678,7 @@ "_postman_previewlanguage": "json" }, { - "id": "51f1f07e-cd8f-4cd5-8cf4-98568ba4dff7", + "id": "4183b319-dfe6-4014-b0b7-be85b9a32744", "name": "General Policy", "originalRequest": { "url": { @@ -169734,7 +169734,7 @@ "_postman_previewlanguage": "json" }, { - "id": "72a53e1a-565b-49cc-80b2-61f4729eeb89", + "id": "d696311e-90da-453b-a2c3-50354fd944f2", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -169790,7 +169790,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a64fd2e0-8f87-4676-800f-4995072900a8", + "id": "90ccf4be-13c9-4db3-b812-6ea07232e1ad", "name": "General Policy", "originalRequest": { "url": { @@ -169852,7 +169852,7 @@ } }, { - "id": "adfcd00d-3f0f-4f2a-a28f-607cbf16e5a0", + "id": "f99bb4a8-15ad-43f7-b228-151fe9c99520", "name": "List SOD policies", "request": { "name": "List SOD policies", @@ -169927,7 +169927,7 @@ }, "response": [ { - "id": "4bd2eb69-e349-4039-be82-eb48972b6f36", + "id": "116c9c27-dc87-4553-a6ac-8fc810b1bead", "name": "List of all SOD policies.", "originalRequest": { "url": { @@ -170016,7 +170016,7 @@ "_postman_previewlanguage": "json" }, { - "id": "75b69671-59de-4162-8361-f9ed0d2175f5", + "id": "1eaca0bb-6639-4722-a220-4960e6969f4c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -170105,7 +170105,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b4443867-d4b2-48f1-8152-535489b3d3e7", + "id": "3f7b94ac-1f8f-49c2-aa0c-baf79a923ba4", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -170194,7 +170194,7 @@ "_postman_previewlanguage": "json" }, { - "id": "be2476e9-99d7-42fb-91b0-0ad34ae54c5f", + "id": "221d089f-ec94-4217-98e5-754553a471ce", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -170283,7 +170283,7 @@ "_postman_previewlanguage": "json" }, { - "id": "80c9db19-3eeb-4147-9c0c-25ca8305936f", + "id": "a208fcd7-2734-4bc1-a07c-cbd6d779e71d", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -170372,7 +170372,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a97ed59b-8894-49f8-99e6-101d6bb931d6", + "id": "8cb938ec-3867-4305-bacc-0691954d597e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -170467,7 +170467,7 @@ } }, { - "id": "c084bca3-d600-40c6-8201-9e9913d7013f", + "id": "88fc29c9-aaf0-422e-8eed-a4e07b64d961", "name": "Get SOD policy by ID", "request": { "name": "Get SOD policy by ID", @@ -170508,7 +170508,7 @@ }, "response": [ { - "id": "4c464e04-1eba-45dc-8384-8df8ef8a76dc", + "id": "5c0070e9-37dd-4d4d-9cf5-3340de264f41", "name": "Conflicting Access Based Policy", "originalRequest": { "url": { @@ -170552,7 +170552,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a4a229b9-807f-403c-98ab-5574bea27a13", + "id": "388bdc45-0f6b-4b8a-920f-e668b4cdcaea", "name": "General Policy", "originalRequest": { "url": { @@ -170596,7 +170596,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8418d736-e61f-4517-a43c-f0d8cb218a57", + "id": "16bf2ee0-0c43-412f-b7cf-558ec69b820a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -170640,7 +170640,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f3402438-4af5-4714-ab40-2b7c38f84f4f", + "id": "3868f509-c2ba-4251-9060-7b9dd53c4a6e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -170684,7 +170684,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fbc971b2-b75d-46b6-b36c-0a1513080acf", + "id": "83ebf170-90c7-420f-85cc-c5b3435a941d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -170728,7 +170728,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5ec7d09e-1dfd-41d9-b4ae-ba5018bfc172", + "id": "1b4a5352-0150-4268-80a1-b7c54ec5b828", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -170772,7 +170772,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c60234f1-96ed-49d0-adef-cb3ced6064b4", + "id": "00d673fe-56a6-45c6-9487-0c37d5a21ef2", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -170816,7 +170816,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c1ced942-269b-4a10-9426-705c6da15b1f", + "id": "c55e6620-6536-4905-b6e7-006207080d09", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -170866,7 +170866,7 @@ } }, { - "id": "4a2754ae-504f-4f91-864f-ad4f54e51ac8", + "id": "b013fd76-a6b9-4897-95b4-bddfd9eb3210", "name": "Update SOD policy by ID", "request": { "name": "Update SOD policy by ID", @@ -170920,7 +170920,7 @@ }, "response": [ { - "id": "f6e2a1a8-f64c-44a2-8c82-fcf4159fdea2", + "id": "46acaf78-9a00-4587-8bea-f4e8e3db33bf", "name": "Conflicting Access Based Policy", "originalRequest": { "url": { @@ -170977,7 +170977,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1fecb523-ce28-4e56-9feb-94563aae9135", + "id": "681f974d-5a0e-4a89-9d24-78a93d3490e5", "name": "General Policy", "originalRequest": { "url": { @@ -171034,7 +171034,7 @@ "_postman_previewlanguage": "json" }, { - "id": "11f82cb5-62bb-43e5-913f-5c5b270f21f1", + "id": "9f662357-83b8-49ab-8842-08228e73f616", "name": "Conflicting Access Based Policy", "originalRequest": { "url": { @@ -171091,7 +171091,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0dda5914-d7cc-4eda-90b1-7c9e64e2ee8c", + "id": "5454bbbe-039b-4b71-9412-b155bc656d52", "name": "General Policy", "originalRequest": { "url": { @@ -171148,7 +171148,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5b1cf447-7e04-4e3d-9a16-cec39ea5d191", + "id": "d1f1df93-4c6f-41e0-8439-c32b1c2981f8", "name": "Conflicting Access Based Policy", "originalRequest": { "url": { @@ -171205,7 +171205,7 @@ "_postman_previewlanguage": "json" }, { - "id": "86fded30-fae4-4b67-9eb8-d4df8948b9d9", + "id": "26657671-cc50-480a-983a-dd795552bdd9", "name": "General Policy", "originalRequest": { "url": { @@ -171262,7 +171262,7 @@ "_postman_previewlanguage": "json" }, { - "id": "58e6a9d8-f9b2-4366-a3f9-f1e1eac45355", + "id": "2ac97319-4b7f-4cb3-b2a0-fb8306ba96c7", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -171319,7 +171319,7 @@ "_postman_previewlanguage": "json" }, { - "id": "27164f0f-417e-4fc1-8068-f237b0f795c8", + "id": "5c7d489b-e298-4323-a56f-2cfd31615244", "name": "General Policy", "originalRequest": { "url": { @@ -171376,7 +171376,7 @@ "_postman_previewlanguage": "json" }, { - "id": "62a58aea-4240-4b3d-846e-322f1017d00d", + "id": "016c3432-233f-43cf-9a6a-417e3e092952", "name": "An example of a 404 response object", "originalRequest": { "url": { @@ -171433,7 +171433,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5fc5d211-309c-401c-827e-d6017597bafc", + "id": "db061282-2ff6-4613-9260-9f0b946fd5a5", "name": "General Policy", "originalRequest": { "url": { @@ -171490,7 +171490,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3abc88ed-ffac-44dd-98dc-9dffd10392f2", + "id": "3462ee20-2835-460c-90e4-f2ab12779b36", "name": "Conflicting Access Based Policy", "originalRequest": { "url": { @@ -171547,7 +171547,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e718c9f4-cbf7-4ea9-9db0-a92e764d8888", + "id": "3c7add90-8fd9-4cab-9da0-c2509e3da935", "name": "General Policy", "originalRequest": { "url": { @@ -171604,7 +171604,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8605076c-61ae-4335-aba6-7a96e3d36d5e", + "id": "c2006f42-1c08-40bf-b131-cc72147cd5b3", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -171661,7 +171661,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2afecc45-228f-413c-abc3-e6262892c3e8", + "id": "c446988c-cdd4-477a-bf68-27457b332e7a", "name": "General Policy", "originalRequest": { "url": { @@ -171724,7 +171724,7 @@ } }, { - "id": "147c3546-b075-4844-8b33-7b8d2f842226", + "id": "9cc4b9f1-c8d9-4a87-a4c0-46a7fb2bc2d8", "name": "Delete SOD policy by ID", "request": { "name": "Delete SOD policy by ID", @@ -171775,7 +171775,7 @@ }, "response": [ { - "id": "4233d5fe-37a8-45da-a8ea-51dd650ccbf2", + "id": "992765a1-ebe5-47af-b0ad-53c429830024", "name": "No content.", "originalRequest": { "url": { @@ -171819,7 +171819,7 @@ "_postman_previewlanguage": "text" }, { - "id": "1552255c-85a2-41a1-a1c9-90c2670c9e78", + "id": "4c24d839-2f0a-4767-b7e9-53eab90c995c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -171873,7 +171873,7 @@ "_postman_previewlanguage": "json" }, { - "id": "53cdb963-524c-4ce1-83e9-de5d84e416b0", + "id": "389163f7-d352-458c-ba35-b9af79299270", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -171927,7 +171927,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ae41eb65-b91e-4cb5-8314-b99c41c90a10", + "id": "c2f72f62-4e47-461e-9b8e-1bad15d98730", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -171981,7 +171981,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4fa39bf9-66d8-4429-8e60-814bfb0b50ca", + "id": "610e0359-9d81-4ea4-99d1-9e5ef400fad8", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -172035,7 +172035,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a4e96913-9ade-482a-a29e-4cd5f50cfff8", + "id": "3dd8f5b2-ab80-481b-8c5b-50daa9fbf72e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -172089,7 +172089,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4a2a04d2-4fe1-47d0-87e5-c7e75f76f950", + "id": "c4970d2e-5dd9-4679-bad3-fc96c4d40fd8", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -172149,7 +172149,7 @@ } }, { - "id": "02b611f4-2801-4258-bef1-e03625bebdbc", + "id": "75551dd4-2a58-49e4-80c6-8697a92b43ba", "name": "Patch a SOD policy", "request": { "name": "Patch a SOD policy", @@ -172203,7 +172203,7 @@ }, "response": [ { - "id": "883798a4-420c-4f55-8627-0de42d11d907", + "id": "67fc9577-fdc8-400a-8534-ec3d2e62359a", "name": "Conflicting Access Based Policy", "originalRequest": { "url": { @@ -172260,7 +172260,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5770eaf5-1de9-496a-9227-01a1390d123a", + "id": "1aa58afe-daed-4b05-ae72-4e28a9659546", "name": "General Policy", "originalRequest": { "url": { @@ -172317,7 +172317,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5e833280-7625-4e8e-84fa-d8860154df27", + "id": "df46c3cd-8ba9-441e-905c-696858346186", "name": "Conflicting Access Based Policy", "originalRequest": { "url": { @@ -172374,7 +172374,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cdcced26-5eea-45aa-9b01-7543cb8d8977", + "id": "054b3aef-1f0e-4650-95f0-61c910fd528d", "name": "General Policy", "originalRequest": { "url": { @@ -172431,7 +172431,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e226f516-dcdb-4f3c-b875-061c4583e20f", + "id": "83d8bd18-d4c0-4496-8aa7-e2b0e1059a61", "name": "Conflicting Access Based Policy", "originalRequest": { "url": { @@ -172488,7 +172488,7 @@ "_postman_previewlanguage": "json" }, { - "id": "63e18bd0-afcd-4a43-b0a8-16a2da8b7301", + "id": "92b3eddb-aa0c-4c3d-9e7f-28309600ff0e", "name": "General Policy", "originalRequest": { "url": { @@ -172545,7 +172545,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8d1b6b5e-0bc1-4361-96b2-de89789fbe39", + "id": "1647a6ba-d63a-4840-9974-e4361fff1dcf", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -172602,7 +172602,7 @@ "_postman_previewlanguage": "json" }, { - "id": "232db025-8786-4ec1-8388-3f910045f15a", + "id": "da458336-46f2-44b5-8d23-e7ca886d5a1d", "name": "General Policy", "originalRequest": { "url": { @@ -172659,7 +172659,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9c5e147e-a747-41e1-b0fe-818f78075861", + "id": "a294b2aa-ee05-4411-9ac0-1ea2518f2402", "name": "An example of a 404 response object", "originalRequest": { "url": { @@ -172716,7 +172716,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ae607ed0-c7f3-4dd3-a98c-93c457ed668d", + "id": "93638f4e-89ef-47eb-982e-b24d9b040364", "name": "General Policy", "originalRequest": { "url": { @@ -172773,7 +172773,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9daa00ff-9310-43a4-85f4-3ea7140ba9af", + "id": "540e8ab3-b988-4263-8d12-7088011c881c", "name": "Conflicting Access Based Policy", "originalRequest": { "url": { @@ -172830,7 +172830,7 @@ "_postman_previewlanguage": "json" }, { - "id": "229f4832-ea14-46d9-8cda-bc1ccbc558aa", + "id": "d0ac9c81-b8e9-44cf-9611-085e78556bd3", "name": "General Policy", "originalRequest": { "url": { @@ -172887,7 +172887,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d4609154-3b12-4532-8eb0-fa8005610880", + "id": "6f970b2f-40d9-48ff-8f24-4fba98731bcb", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -172944,7 +172944,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5ff66577-9be0-4717-836a-eb0fe63749d8", + "id": "9ffac147-6370-430d-9bcd-51a88ac82a79", "name": "General Policy", "originalRequest": { "url": { @@ -173007,7 +173007,7 @@ } }, { - "id": "eaa85f3a-1fcd-4cf7-a244-006ca5d87230", + "id": "79712920-7e90-449a-af2e-7845d3c0c7d9", "name": "Get SOD policy schedule", "request": { "name": "Get SOD policy schedule", @@ -173049,7 +173049,7 @@ }, "response": [ { - "id": "de5d36fa-19c7-46c3-b0d4-7e93ee8ff540", + "id": "3b6affb0-9b6e-4b13-b67f-f7554cf2f3d8", "name": "SOD policy ID.", "originalRequest": { "url": { @@ -173094,7 +173094,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4edd7251-a5eb-4bef-8afb-98011e643e0c", + "id": "eedae14f-f908-451d-b012-1f8256a1cfc5", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -173139,7 +173139,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5d3476c2-d953-44eb-9dbd-78eb2fb6b46e", + "id": "35aa7fbf-26e0-4d1f-b253-affddd89ef76", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -173184,7 +173184,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7e8a7812-ff52-40ea-876d-6347e082ba23", + "id": "fc02d8cc-a128-48c1-81b3-247e62e49c5c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -173229,7 +173229,7 @@ "_postman_previewlanguage": "json" }, { - "id": "db14e024-d6b5-4427-8615-5c8fbca8a1b7", + "id": "24d4b9e6-1f2d-43bf-adb3-2645e402a6e3", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -173274,7 +173274,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e512b01d-de73-411a-bbf9-3ca9b652a8bb", + "id": "d34b2994-5bbf-4214-a21f-b3f06e61e169", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -173325,7 +173325,7 @@ } }, { - "id": "73fa5feb-5ac8-40f7-854a-45a94abccd5d", + "id": "2423b2ef-def9-41bb-a8f2-09b8a8752ddb", "name": "Update SOD Policy schedule", "request": { "name": "Update SOD Policy schedule", @@ -173380,7 +173380,7 @@ }, "response": [ { - "id": "efe9475f-dde7-4221-bf4b-b68641b56d7f", + "id": "aa42cd52-995f-4978-97e9-e90ac783486b", "name": "SOD policy by ID.", "originalRequest": { "url": { @@ -173438,7 +173438,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6320d867-b63e-4a48-be1e-5a769d5afc11", + "id": "5dda4e00-5ab8-4d17-aa1d-5d019af115f4", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -173496,7 +173496,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b05a9d6e-5eb3-479a-80fc-be85194863d8", + "id": "98c0191a-422f-41f0-8457-560dbdbdbfed", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -173554,7 +173554,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cc43e3d6-00ba-4236-975e-0a7849f220f5", + "id": "459f1b09-72d9-407b-a989-3b99314c92c6", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -173612,7 +173612,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9ec78bf8-776f-4cb9-809a-24e715fc820f", + "id": "f251f733-99df-4beb-bd7f-8ec9810c9251", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -173670,7 +173670,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8eaec86f-157d-43e3-972f-6fc6f1fea240", + "id": "6df82291-9e94-4841-b6b4-ab6394cbbdcd", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -173734,7 +173734,7 @@ } }, { - "id": "0a92043f-0bf2-4f55-99ff-af0c6325134b", + "id": "5ceb0f4d-36d1-42c2-94d2-05e663eb9345", "name": "Delete SOD policy schedule", "request": { "name": "Delete SOD policy schedule", @@ -173776,7 +173776,7 @@ }, "response": [ { - "id": "ca152618-ace3-44cf-a098-77a8a06ea49b", + "id": "d1f0dba0-c459-43da-9eeb-08fa0de12df2", "name": "No content.", "originalRequest": { "url": { @@ -173811,7 +173811,7 @@ "_postman_previewlanguage": "text" }, { - "id": "7e100668-bfb4-4449-b72c-0ba6c7ef7122", + "id": "abfe20e2-1f67-4b7c-b9e4-8beb45359e6c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -173856,7 +173856,7 @@ "_postman_previewlanguage": "json" }, { - "id": "23c3d005-c1a9-4048-bbda-d6fa4e0a2d74", + "id": "ada23ddf-c9c3-4607-96c8-ffbeb3d30281", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -173901,7 +173901,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1a024b57-b195-4312-a58c-e2827f6d362c", + "id": "8a31b01e-e11c-4454-8246-81ac44507eca", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -173946,7 +173946,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4096a849-8c72-406c-b67a-b2a12e5eba77", + "id": "0634f8cc-9f53-44a5-a206-e6187f1f46b8", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -173991,7 +173991,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7b8ef066-8d26-4c30-b81f-c84ee779a0a0", + "id": "365a6943-2288-4cc6-a1a2-d877a2e8b9a4", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -174036,7 +174036,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6d8832a3-d185-4daa-964a-358a5a4055d5", + "id": "9997c789-312a-4478-a117-c49aa4d1ad42", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -174087,7 +174087,7 @@ } }, { - "id": "637d1d07-f0d4-4801-8238-d89097702ebf", + "id": "a0618f2b-e102-4754-8ede-afac90a25a32", "name": "Runs SOD policy violation report", "request": { "name": "Runs SOD policy violation report", @@ -174130,7 +174130,7 @@ }, "response": [ { - "id": "71b32b56-55cf-4775-a365-4c1bb007351c", + "id": "0fd8d870-3911-4611-b40c-1a8022391edd", "name": "Reference to the violation report run task.", "originalRequest": { "url": { @@ -174176,7 +174176,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6cea6951-8d99-409b-8f8d-0a427cf2951c", + "id": "1cad695c-69c6-4d31-93a6-6009073c819d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -174222,7 +174222,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3fc5f508-6db5-467c-b1ca-db44660abfad", + "id": "5002b67f-583e-49a1-8cf7-1752f3ed8e83", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -174268,7 +174268,7 @@ "_postman_previewlanguage": "json" }, { - "id": "060dd5ad-69e9-4d27-866d-83dda990f107", + "id": "42ecebef-081d-4ffa-9f16-89750d13ec83", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -174314,7 +174314,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b025c795-6ecb-4680-bec1-2346dfd6aefd", + "id": "c701f6b1-790b-4671-9420-2a5415a33d7a", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -174360,7 +174360,7 @@ "_postman_previewlanguage": "json" }, { - "id": "34deece4-1efb-41be-a41f-b69d9e897c71", + "id": "7c9b1a6f-7ce9-47d6-9f90-a6a1d6618bc9", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -174406,7 +174406,7 @@ "_postman_previewlanguage": "json" }, { - "id": "649e518d-cf19-426b-91b8-5efd64fd8112", + "id": "4de81e93-cfd4-41a3-bed6-f4ba24fa8b6b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -174458,7 +174458,7 @@ } }, { - "id": "d12822f1-b560-4ca0-8cc8-0589febb501f", + "id": "5be4756b-5af9-443c-92f4-d0462dd2f20e", "name": "Get SOD violation report status", "request": { "name": "Get SOD violation report status", @@ -174500,7 +174500,7 @@ }, "response": [ { - "id": "0b21527f-ba29-4d88-8abe-0ed50fb56f51", + "id": "5f42f5d7-fddd-4b66-a891-c72ca7a314e8", "name": "Status of the violation report run task.", "originalRequest": { "url": { @@ -174545,7 +174545,7 @@ "_postman_previewlanguage": "json" }, { - "id": "726884ae-31eb-4ae4-9bd7-8f56d68af432", + "id": "f63e1a6a-bb60-4c94-ae7d-d16995780a82", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -174590,7 +174590,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d26ff4e4-8aa1-4ba3-82cb-d9fdc5174a72", + "id": "4f4f51da-aa63-4b94-9603-21cf02495436", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -174635,7 +174635,7 @@ "_postman_previewlanguage": "json" }, { - "id": "66095667-209a-48cd-8400-b59f3ab2d634", + "id": "cf510bb0-1264-442f-ba75-e324cb5fd1ea", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -174680,7 +174680,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e25cc9f3-1198-45a8-a741-d0b12b74399b", + "id": "0fe5ea0e-86fa-4070-8178-63549aa692e8", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -174725,7 +174725,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3737bb33-3487-4397-b797-01b53e47ba0c", + "id": "9fb85168-2210-41c1-a4dd-d32049716bd9", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -174770,7 +174770,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c235ebd5-8a7e-4e2e-838d-38e7d064d7f2", + "id": "a317e11b-dea3-4582-b789-9b21a36ef79d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -174821,7 +174821,7 @@ } }, { - "id": "41206288-194d-4b42-adad-0f46270a6f0f", + "id": "dca5f9f3-681f-43b5-ae3d-946ed4a0bdb5", "name": "Get violation report run status", "request": { "name": "Get violation report run status", @@ -174863,7 +174863,7 @@ }, "response": [ { - "id": "494b0de2-833f-4712-93d1-d7d58d67cd13", + "id": "96cf5962-7b36-4c53-bd55-213d39d0fbab", "name": "Status of the violation report run task.", "originalRequest": { "url": { @@ -174908,7 +174908,7 @@ "_postman_previewlanguage": "json" }, { - "id": "26528503-c755-4cb7-9fc4-bc9dec241a5d", + "id": "c05875b3-318e-4fb0-96eb-f23f078e8429", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -174953,7 +174953,7 @@ "_postman_previewlanguage": "json" }, { - "id": "84dce11f-dc83-49e0-b613-a848987cdff1", + "id": "c1e27504-a295-4a96-bd57-01554c4ec0fc", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -174998,7 +174998,7 @@ "_postman_previewlanguage": "json" }, { - "id": "40e26745-2ff9-4d44-9fe3-9177eee4e7c5", + "id": "4be74409-e7bb-4e83-9297-df60dce9d90b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -175043,7 +175043,7 @@ "_postman_previewlanguage": "json" }, { - "id": "45dcd17e-8d70-4e1e-b019-7374cc221a22", + "id": "221b27c8-34fd-41c3-b5b5-e7ba96d15ca3", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -175088,7 +175088,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c19033a9-accf-419f-b192-df91a1d5fdd5", + "id": "5c151007-050e-4436-a842-f6b3df6d8080", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -175133,7 +175133,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ace1e71d-a5e9-416e-b173-797f238f0c46", + "id": "d673dfaf-f6a5-4619-ae15-ca70f8fef118", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -175184,7 +175184,7 @@ } }, { - "id": "07e22acd-5902-4611-819f-3f093471b868", + "id": "42d95e42-7991-4e5a-9517-a463a0f4be87", "name": "Runs all policies for org", "request": { "name": "Runs all policies for org", @@ -175227,7 +175227,7 @@ }, "response": [ { - "id": "3b2619dc-27bc-4cf5-92a1-bf1078ccb9e5", + "id": "1b362df5-0a41-462a-a8a8-04c352b54066", "name": "Reference to the violation report run task.", "originalRequest": { "url": { @@ -175284,7 +175284,7 @@ "_postman_previewlanguage": "json" }, { - "id": "57eb236e-6549-4a18-9cd2-df7f0c1fccf4", + "id": "c13ec6be-8d8a-4309-b8ec-7cd55ac786e5", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -175341,7 +175341,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1140821b-3154-41fb-91e0-586a7535ee40", + "id": "8aa83153-bb99-47c0-b821-f350ed8bf8f9", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -175398,7 +175398,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9573c758-c6fc-425e-882d-a4577075ff93", + "id": "f2b82bdb-f969-4943-be04-ac3ea15ec262", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -175455,7 +175455,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f8a2e034-c962-48d8-9639-fe685095266b", + "id": "c8290c12-df96-440d-9267-461a86f0b695", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -175512,7 +175512,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b905d02a-3521-41a2-bdb9-f54cf25363fa", + "id": "a6c396ec-66ce-4eb5-b83a-c388de12bb91", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -175575,7 +175575,7 @@ } }, { - "id": "e305e2ac-2829-4b65-8202-41b5d00b56af", + "id": "55d23d68-f15e-4730-8b62-729fe753c9a6", "name": "Get multi-report run task status", "request": { "name": "Get multi-report run task status", @@ -175604,7 +175604,7 @@ }, "response": [ { - "id": "75330b9f-99bf-43fd-b51a-a53a2edfa269", + "id": "20c7830f-f88a-4464-aa18-6cc081639a28", "name": "Status of the violation report run task for all policy run.", "originalRequest": { "url": { @@ -175647,7 +175647,7 @@ "_postman_previewlanguage": "json" }, { - "id": "901b187d-a62c-4de8-8d06-24a4e3e31b4a", + "id": "a55814bd-3add-4da3-933b-761607454b3f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -175690,7 +175690,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5d4f02bd-7062-44f2-8028-0ac630a17887", + "id": "e79d001b-18fb-4229-af47-2f8c8fbac862", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -175733,7 +175733,7 @@ "_postman_previewlanguage": "json" }, { - "id": "381c74b1-4c97-4bec-a554-d15b8283a775", + "id": "d6a4b533-2a89-4623-b74e-3cb93b05de32", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -175776,7 +175776,7 @@ "_postman_previewlanguage": "json" }, { - "id": "270746b5-23af-4a82-9488-7edb10ba1cdd", + "id": "814ef7cc-fa8a-40c2-97a4-d65020392c4b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -175819,7 +175819,7 @@ "_postman_previewlanguage": "json" }, { - "id": "66e6fe3b-53ec-4142-8b9f-d1a4a5f987d5", + "id": "b198a13b-46e8-4e94-bbf2-625d79f3849c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -175868,7 +175868,7 @@ } }, { - "id": "8e100546-e832-4541-a081-059a1e018506", + "id": "2604b741-41f7-45e5-a04d-e7962c86c6b9", "name": "Download violation report", "request": { "name": "Download violation report", @@ -175910,7 +175910,7 @@ }, "response": [ { - "id": "98b69735-d9a8-4eb0-bb27-99e0f1a1e0ab", + "id": "9bc4be76-809e-4eaf-bf99-01f592249104", "name": "Returns the PolicyReport.zip that contains the violation report file.", "originalRequest": { "url": { @@ -175950,12 +175950,12 @@ "value": "application/zip" } ], - "body": "labore", + "body": "laborum qui aliquip irure", "cookie": [], "_postman_previewlanguage": "text" }, { - "id": "6c6bb237-8d98-498a-8b6d-84d668a18f8c", + "id": "48e93326-2350-4c30-8d37-89158c14aff1", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -176000,7 +176000,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e9580990-a1cc-4bcf-aec9-0102c1f3078b", + "id": "c83f2034-c656-4df0-9247-2dd4495a083e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -176045,7 +176045,7 @@ "_postman_previewlanguage": "json" }, { - "id": "797791f3-079f-44ef-a432-dd3a0fa45fa5", + "id": "35e162a4-b5e8-4091-af66-6de6123d40e5", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -176090,7 +176090,7 @@ "_postman_previewlanguage": "json" }, { - "id": "091d0bff-d4d1-4ea7-af6e-7a1b6363ee24", + "id": "ba3a52d4-8844-47ca-a3af-b997d19bd45a", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -176135,7 +176135,7 @@ "_postman_previewlanguage": "json" }, { - "id": "86a35109-43d4-46f1-8cec-12f37591c41e", + "id": "3636811b-65fa-45a5-a140-8ec0ce24fdc3", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -176180,7 +176180,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0abc1002-3dff-493f-9634-551e16e9d369", + "id": "7e499149-70b9-4826-b5ef-ea7577ed93fe", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -176231,7 +176231,7 @@ } }, { - "id": "3dd1896e-59a2-4924-812f-b1752b06990b", + "id": "57e604b1-6806-4850-b077-6ed2c4432fd1", "name": "Download custom violation report", "request": { "name": "Download custom violation report", @@ -176284,7 +176284,7 @@ }, "response": [ { - "id": "113aa99a-d2b2-4ee0-b981-4e252b02f13a", + "id": "7cca6910-460a-4d33-a9ea-c71764bdbfbe", "name": "Returns the zip file with given custom name that contains the violation report file.", "originalRequest": { "url": { @@ -176325,12 +176325,12 @@ "value": "application/zip" } ], - "body": "labore", + "body": "laborum qui aliquip irure", "cookie": [], "_postman_previewlanguage": "text" }, { - "id": "01978384-f877-48d0-b9d4-9f75913a1a5f", + "id": "736de5ce-4bc2-4097-a623-4276623055d3", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -176376,7 +176376,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8a132f45-ad09-421b-a2b4-ff35a190aaef", + "id": "937a0125-3c25-4e8e-98a5-fabad27886ac", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -176422,7 +176422,7 @@ "_postman_previewlanguage": "json" }, { - "id": "22dac093-7890-4ba5-951e-32d90f4c398c", + "id": "9037f306-2dca-4f35-a5d5-90a097974482", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -176468,7 +176468,7 @@ "_postman_previewlanguage": "json" }, { - "id": "83ba091e-9f4c-4bc8-95ca-f238b6195364", + "id": "6b5eed7e-eb63-47d3-8a7e-fe65e10d7179", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -176514,7 +176514,7 @@ "_postman_previewlanguage": "json" }, { - "id": "923e0d4c-dfed-4ba7-afcd-f53bbad409b4", + "id": "353d1755-fd64-4564-b7a6-bdc1d6d87cbc", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -176560,7 +176560,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e36500d2-03f9-4a6c-b273-88dbcbb4355c", + "id": "c311940c-b2af-41a7-abe2-ee95a98b8446", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -176618,7 +176618,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": "6aec826e-0679-4124-85c6-2aa128f1ae9b", + "id": "a0ed27f1-6368-4148-8b00-f0a4f036bdf6", "name": "Predict SOD violations for identity.", "request": { "name": "Predict SOD violations for identity.", @@ -176661,7 +176661,7 @@ }, "response": [ { - "id": "1d9352f3-4fbd-4363-9b1e-4722bd1ed9f1", + "id": "3f8a288d-4b28-48f6-9608-febbdc54d025", "name": "Violation Contexts", "originalRequest": { "url": { @@ -176718,7 +176718,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1b8e1afc-0f45-418b-ba2c-f0d0e46a1afc", + "id": "c446379d-493a-4b25-b88a-eb9ed4422506", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -176775,7 +176775,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a7c32530-34b3-4684-b4bc-dcd5071a8982", + "id": "c9f8abe3-f480-4391-a608-249dd673294a", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -176832,7 +176832,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4b5cb6bb-8a9f-4eb4-af3d-98b7e359208f", + "id": "85267c7c-d795-45ac-b4cc-2ca7cdc9d8a3", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -176889,7 +176889,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c23cf857-1c7a-4144-99d2-60bde72b8003", + "id": "1d705b68-6cae-4e7f-82c2-9c58862e5ea8", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -176946,7 +176946,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2755a5d5-e81a-4937-86af-29dba0a7e3e4", + "id": "b55ba83b-b589-4c35-bcfc-ff65ab37c7d2", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -177003,7 +177003,7 @@ "_postman_previewlanguage": "json" }, { - "id": "83caff23-7947-4015-aef0-9fa58037022f", + "id": "d96d3e9f-9bbe-4150-9998-b273fcf6dea0", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -177072,7 +177072,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": "d84af215-f71c-439d-9330-5894b7c7ce52", + "id": "0df72ab0-1a0f-4e12-8c41-8b287ecea64f", "name": "Finds status of source usage", "request": { "name": "Finds status of source usage", @@ -177114,7 +177114,7 @@ }, "response": [ { - "id": "0b8ceaae-a282-476e-b963-815983df2add", + "id": "dd93ce15-17ef-4758-a8bc-e399379e06fc", "name": "Status of the source usage insights setup by IDN source ID.", "originalRequest": { "url": { @@ -177159,7 +177159,7 @@ "_postman_previewlanguage": "json" }, { - "id": "da9ad1d3-3200-4f31-adb2-252598f24eda", + "id": "6cc32444-421b-4b7f-911a-3b122cf4564d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -177204,7 +177204,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fd433d12-19cc-40e5-9316-05ce45876c1e", + "id": "53088f4e-f4ed-4620-b3c3-9bf721d33a8b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -177249,7 +177249,7 @@ "_postman_previewlanguage": "json" }, { - "id": "80f1ecb4-52b3-429e-aa45-48a7978ec526", + "id": "9514dc2f-9d10-45a7-b7f9-0ca9f34e2c6f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -177294,7 +177294,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4534b483-a438-4561-bf2d-46bccfcdb9cc", + "id": "f28e6142-e918-4f6a-b190-8f9efac586fe", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -177339,7 +177339,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d7a20703-f5ae-4d5f-ae32-f7184c6c845b", + "id": "f472a76a-d83d-46b8-8de0-3cfa1a18a22d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -177390,7 +177390,7 @@ } }, { - "id": "da3ed382-73c4-4e5b-a14f-716c398943d8", + "id": "9c586dc2-4764-4365-92b8-ff733252f9c8", "name": "Returns source usage insights", "request": { "name": "Returns source usage insights", @@ -177469,7 +177469,7 @@ }, "response": [ { - "id": "d16d5992-88d5-44a8-ae8e-48790a6e2b91", + "id": "ebcdf52a-f9db-4515-905c-9f9c46531cca", "name": "Summary of source usage insights for past 12 months.", "originalRequest": { "url": { @@ -177551,7 +177551,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cb6bcb64-e55f-45d4-8bcc-5f0024c6452f", + "id": "a870ca47-83c8-4362-952d-36b72c2fac3e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -177633,7 +177633,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b257c0d3-93c2-4542-a57c-fe8ceb5541ed", + "id": "24b37687-a6fd-4453-a393-07e346a227fd", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -177715,7 +177715,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1fc2649a-9564-42ba-8ec6-0f39621d330f", + "id": "98951f69-b3e0-4e1e-8da1-1a9920de13a2", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -177797,7 +177797,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bdc0b46c-1399-4d37-a33a-62a70b470bfa", + "id": "8a0e2861-9254-4d9d-85b7-7e35524fc3f5", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -177879,7 +177879,7 @@ "_postman_previewlanguage": "json" }, { - "id": "42615586-9a71-46cb-983d-41d4be849d31", + "id": "5751f991-6d32-42e7-a4b2-b343193debd8", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -177973,7 +177973,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": "79177d30-9615-43b1-a67e-56fccff09ccb", + "id": "5c90909a-203d-432f-9ae4-0adf31951834", "name": "Lists all sources in IdentityNow.", "request": { "name": "Lists all sources in IdentityNow.", @@ -178057,7 +178057,7 @@ }, "response": [ { - "id": "ac113037-837c-4b90-a1ef-95e67ee2bbd6", + "id": "da48a76f-7b47-42e0-b22d-d26fe87fac1d", "name": "List of Source objects", "originalRequest": { "url": { @@ -178155,7 +178155,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8015fdaa-0264-481b-856a-1261b22e3e7d", + "id": "76e0d5c5-6f2e-4c6c-8672-f23749df7056", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -178253,7 +178253,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4c7f6576-2fb6-4517-a84d-90d8c87eae39", + "id": "870423fd-384d-49e3-a4ca-c2216b25dda3", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -178351,7 +178351,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ee2991b7-34b6-45dc-a5de-e49ef0639d40", + "id": "9122e147-8172-4918-ba63-c261b427262c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -178449,7 +178449,7 @@ "_postman_previewlanguage": "json" }, { - "id": "842e07ca-53c9-4b90-83ae-bf2e2261a852", + "id": "48dd2e0a-81d3-4d95-b96c-9e1caa517d2f", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -178547,7 +178547,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f8ead798-9c02-4df6-b8d0-6caf3812dcdf", + "id": "ca6fffc4-9a0b-477b-964a-c0625d232d4e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -178645,7 +178645,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d42ed4cd-e8d1-4aba-8c17-488907878614", + "id": "a3f58ba6-fb2f-462a-82c6-5a6235cac860", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -178749,7 +178749,7 @@ } }, { - "id": "1bc844f4-d612-433c-80b7-76a17fa86c52", + "id": "8a337cc0-cc77-42d6-adf2-7d2566abc186", "name": "Creates a source in IdentityNow.", "request": { "name": "Creates a source in IdentityNow.", @@ -178801,7 +178801,7 @@ }, "response": [ { - "id": "c706644a-52cd-4b03-9800-9907e79b35f5", + "id": "8971584d-6d69-4b09-9337-7e060390017b", "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": { @@ -178867,7 +178867,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4fe47421-c446-4afd-8f66-d657501e3b69", + "id": "350e1f54-769e-44ed-9068-be17b97dd276", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -178933,7 +178933,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8de60b91-50f5-4305-bca5-0ea88ec97d8d", + "id": "f0441fde-14c6-46d1-b98f-9ce65339d033", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -178999,7 +178999,7 @@ "_postman_previewlanguage": "json" }, { - "id": "02b2e238-e79a-4c12-bbca-eb382ec8f88c", + "id": "a2561af3-dbe0-4a4e-b1b2-16727675664a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -179065,7 +179065,7 @@ "_postman_previewlanguage": "json" }, { - "id": "143bc89c-dcbe-45a0-b20c-41c77fb5ede2", + "id": "445a8166-593f-4085-8b56-8c1b44ba0a27", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -179131,7 +179131,7 @@ "_postman_previewlanguage": "json" }, { - "id": "930a287e-fed7-4627-836a-585fd0ed92e9", + "id": "1deedbbe-ed59-4287-a77a-6470c1066bd7", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -179203,7 +179203,7 @@ } }, { - "id": "7617b319-7888-4c55-9d60-245bdfab59e5", + "id": "aff6f548-d520-410f-83b1-789d6d98fa3f", "name": "Get Source by ID", "request": { "name": "Get Source by ID", @@ -179244,7 +179244,7 @@ }, "response": [ { - "id": "4f3d2e8e-e968-4505-934f-9fc1a31cd340", + "id": "b2ae2423-908e-4daa-b5cf-56122d58e77a", "name": "Source object.", "originalRequest": { "url": { @@ -179288,7 +179288,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1a8524f0-a52e-4d45-8cd4-703be71cfc3a", + "id": "a415133c-d2bf-4e57-af91-880eddfb9df4", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -179332,7 +179332,7 @@ "_postman_previewlanguage": "json" }, { - "id": "39c28eb1-94b0-44b5-b8d7-941a544e3af6", + "id": "b34f492a-f057-4764-9891-caf964ead207", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -179376,7 +179376,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a2d35a8c-5611-4bfd-b3fa-82c0ebc14bd7", + "id": "2ce46b63-52bb-480c-aeac-87d9c97dd9a0", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -179420,7 +179420,7 @@ "_postman_previewlanguage": "json" }, { - "id": "735c4d39-4531-4ed5-9617-764b1ff6df8f", + "id": "213fc81e-7778-4e8e-9c99-3f7d24407659", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -179464,7 +179464,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9ad9e8b9-d647-4511-9e82-aa9623a84027", + "id": "41394d3d-41a3-4696-8115-2e6d99776383", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -179508,7 +179508,7 @@ "_postman_previewlanguage": "json" }, { - "id": "caea3858-de84-4753-ae4d-bdb44addf43d", + "id": "e7eb0e9a-f702-4a24-ad2c-0e5962ed2f1c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -179558,7 +179558,7 @@ } }, { - "id": "2ed7eeb7-01dc-4c55-b7c4-3c370649365f", + "id": "118278c5-8cac-408c-8d01-8e81f166f9ce", "name": "Update Source (Full)", "request": { "name": "Update Source (Full)", @@ -179612,7 +179612,7 @@ }, "response": [ { - "id": "d549200f-e3a4-466e-acb6-28a06e8ba673", + "id": "24cf5a23-e30e-41a2-80b5-0af752f44e1b", "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": { @@ -179669,7 +179669,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2c663407-bf78-4d20-8393-00510fdc9a78", + "id": "f1ccb302-639c-486a-8985-7f402fb9d559", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -179726,7 +179726,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eef97242-c139-494c-8e24-9b7698dcbf07", + "id": "55fac66a-40fa-4ede-a7df-0c9a79c55d27", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -179783,7 +179783,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e1bbe625-b8a7-45dd-9ebc-cb665ef1beb4", + "id": "aecf601e-cb49-47d5-ac5d-416afc838093", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -179840,7 +179840,7 @@ "_postman_previewlanguage": "json" }, { - "id": "300f4d13-5b53-4a67-ae85-35be115d6131", + "id": "b0100ebf-b6c4-47e1-8484-5419870c4176", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -179897,7 +179897,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f15193dd-f29f-4fb7-a027-7c48890031f6", + "id": "26a84c26-d318-4a51-aa42-1b0b4e939900", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -179954,7 +179954,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ebdddab0-8aa5-444a-b395-423e02f85a18", + "id": "c23a3f5f-fcd0-49d6-8197-70be86b5a842", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -180017,7 +180017,7 @@ } }, { - "id": "30e5aa52-d062-4ae0-94a3-77736a49dd9e", + "id": "19c09a1f-1bac-4e9f-83b8-de3827d02cc5", "name": "Update Source (Partial)", "request": { "name": "Update Source (Partial)", @@ -180071,7 +180071,7 @@ }, "response": [ { - "id": "ccf24f1e-c88f-40c2-a38a-30982533351e", + "id": "8ac743c7-a6a2-4641-b236-cc271cdd53f5", "name": "Edit the source description", "originalRequest": { "url": { @@ -180128,7 +180128,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c0efe42e-3668-477d-87a8-8d0f8b577475", + "id": "5919525d-1d81-49f2-8b3e-dbff0da913e3", "name": "Edit the source cluster", "originalRequest": { "url": { @@ -180185,7 +180185,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ec2b7080-61f1-4ae9-8842-f3f4a410bbfc", + "id": "ada93454-826f-404b-8dd0-bd2ee763506b", "name": "Edit source features", "originalRequest": { "url": { @@ -180242,7 +180242,7 @@ "_postman_previewlanguage": "json" }, { - "id": "156e4a88-4639-4573-b0ea-4b555657ce7a", + "id": "ac589bfc-4149-4976-9aa6-dd20dcbd7478", "name": "Change a source description and cluster in one call", "originalRequest": { "url": { @@ -180299,7 +180299,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a4e6808a-1370-4237-8394-87a4422b192e", + "id": "e04a5011-e688-4996-bf3f-9482fe8b9c7b", "name": "Add a filter string to the connector", "originalRequest": { "url": { @@ -180356,7 +180356,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a21dca34-3ffb-4f7b-bf82-ad7b9c99b870", + "id": "133afdfa-43fb-4d77-8a1a-c3c0f3009b56", "name": "Update connector attribute for specific operation type", "originalRequest": { "url": { @@ -180413,7 +180413,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a015efd8-2682-4c51-9610-b033e88aa301", + "id": "8dd23ee5-41a8-46f0-803a-dba1d6275dea", "name": "Enable notifications for new account provisioning on a source", "originalRequest": { "url": { @@ -180470,7 +180470,7 @@ "_postman_previewlanguage": "json" }, { - "id": "56a5594d-0869-460c-a2cb-0be926a88ced", + "id": "20250474-e1d7-4881-992c-95da8c8b474f", "name": "Edit the source description", "originalRequest": { "url": { @@ -180527,7 +180527,7 @@ "_postman_previewlanguage": "json" }, { - "id": "74e37347-7c00-4346-88f4-049ec16ae94b", + "id": "7508ce68-aabe-42a1-8f34-1065161a5681", "name": "Edit the source cluster", "originalRequest": { "url": { @@ -180584,7 +180584,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3cead920-ea64-4714-a567-49dc8c366f4c", + "id": "fe9f2306-3a0e-4464-b69d-2c5fdc94c9b3", "name": "Edit source features", "originalRequest": { "url": { @@ -180641,7 +180641,7 @@ "_postman_previewlanguage": "json" }, { - "id": "39f9a450-fbb4-4464-a225-f63ef9c1e829", + "id": "186dfc44-d121-4860-a6fa-92406fcc9b00", "name": "Change a source description and cluster in one call", "originalRequest": { "url": { @@ -180698,7 +180698,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9187605c-2530-408b-ad5c-e823259ae1a7", + "id": "53183e29-f416-46fa-ad7a-4afa0a499eaa", "name": "Add a filter string to the connector", "originalRequest": { "url": { @@ -180755,7 +180755,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e0595a3a-f8e5-4516-9ec4-c48cf809464e", + "id": "3470d451-860c-4a66-849d-f72c4695e7f2", "name": "Update connector attribute for specific operation type", "originalRequest": { "url": { @@ -180812,7 +180812,7 @@ "_postman_previewlanguage": "json" }, { - "id": "953de8e2-a611-4884-adc1-16dd75128feb", + "id": "fd5b1cfb-80e7-48c1-b773-9dfa443d48bc", "name": "Enable notifications for new account provisioning on a source", "originalRequest": { "url": { @@ -180869,7 +180869,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3cd27bf6-24fd-4b3d-ae93-d4b09e951bd7", + "id": "7ef12e7a-58ec-44d7-a377-1020ee95d423", "name": "Edit the source description", "originalRequest": { "url": { @@ -180926,7 +180926,7 @@ "_postman_previewlanguage": "json" }, { - "id": "62414af9-ebac-4673-9d9e-54841f320365", + "id": "dd4681dd-8aae-4cb4-a249-d2826baa073f", "name": "Edit the source cluster", "originalRequest": { "url": { @@ -180983,7 +180983,7 @@ "_postman_previewlanguage": "json" }, { - "id": "85e3acfd-d428-4631-a16e-217517a8a904", + "id": "beed692c-33d9-48dc-9da3-4ee3119f652c", "name": "Edit source features", "originalRequest": { "url": { @@ -181040,7 +181040,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8595dced-8a69-46d7-b371-9c633f23e6ac", + "id": "127e3f99-1625-448a-b837-3e300d9f2db4", "name": "Change a source description and cluster in one call", "originalRequest": { "url": { @@ -181097,7 +181097,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8e8987eb-bbb8-40d8-ba4a-b406e568c643", + "id": "40d9cd85-b4ce-44f5-9f49-fdcec7f50ae8", "name": "Add a filter string to the connector", "originalRequest": { "url": { @@ -181154,7 +181154,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cbe51688-f214-4ce7-a178-55745d85393f", + "id": "07fbca2a-4d91-4f9a-bb06-941c78cc0114", "name": "Update connector attribute for specific operation type", "originalRequest": { "url": { @@ -181211,7 +181211,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6e448073-2105-46ba-a6d9-d16d4b2ff446", + "id": "cb038326-6669-487c-81b4-31243269fbbc", "name": "Enable notifications for new account provisioning on a source", "originalRequest": { "url": { @@ -181268,7 +181268,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b5485d34-f629-4442-98cb-6be0f0606a42", + "id": "37bd5bc6-a560-4d04-b8d1-f24dd70c1e6b", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -181325,7 +181325,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d74bee5b-42c0-4419-9ad3-04dd1a8e3e1d", + "id": "ef6d3ccf-ddb6-4429-8794-66bed54c46cd", "name": "Edit the source cluster", "originalRequest": { "url": { @@ -181382,7 +181382,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1240d897-eeae-4d54-af28-8e1b4e88a55e", + "id": "253e492e-de23-4356-8b2c-8dd0827c7d55", "name": "Edit source features", "originalRequest": { "url": { @@ -181439,7 +181439,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f2904b3d-62e7-41e1-a46c-9629875217e9", + "id": "b51fe8c7-4bef-4183-9278-bda1fcb6a3e4", "name": "Change a source description and cluster in one call", "originalRequest": { "url": { @@ -181496,7 +181496,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d551319c-1c78-43c7-a48a-769981d1d970", + "id": "bb85744f-0c05-4a95-81c8-e2cc2052ee56", "name": "Add a filter string to the connector", "originalRequest": { "url": { @@ -181553,7 +181553,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7e697af1-1195-4c5a-b0e9-246fe80cea0b", + "id": "d8458a3f-a845-433a-b4e6-336fb057eed8", "name": "Update connector attribute for specific operation type", "originalRequest": { "url": { @@ -181610,7 +181610,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1e2f3674-674c-488d-9838-dd478f90c0df", + "id": "864ce328-6fa7-49b4-a3ed-b1cc8104418b", "name": "Enable notifications for new account provisioning on a source", "originalRequest": { "url": { @@ -181667,7 +181667,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b1926d99-d238-4198-9341-fcdb77a4ed42", + "id": "eba0d40a-2f70-49da-8dc0-6f21ce6045a8", "name": "An example of a 404 response object", "originalRequest": { "url": { @@ -181724,7 +181724,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b61460fb-9f5c-4780-821b-39fba7e642d7", + "id": "036cabae-1b12-4a79-bb9b-cdb6b8b67464", "name": "Edit the source cluster", "originalRequest": { "url": { @@ -181781,7 +181781,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0ae66c95-002a-43d8-b1b1-504013c357d8", + "id": "24a9727b-4f54-4fbd-b8a0-5b575d11037f", "name": "Edit source features", "originalRequest": { "url": { @@ -181838,7 +181838,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8086c957-1212-4a2e-bff6-7ef7fc109184", + "id": "72876aee-2e27-43b2-b828-b7e815f9021c", "name": "Change a source description and cluster in one call", "originalRequest": { "url": { @@ -181895,7 +181895,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a1cdf097-201e-468b-a108-6aeadf90af31", + "id": "258b5ff2-3542-4963-914c-6f783cddf2e9", "name": "Add a filter string to the connector", "originalRequest": { "url": { @@ -181952,7 +181952,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9384b4d9-4d41-4a78-81e2-3a77b6ce69c9", + "id": "b298d97e-99e8-4591-9f98-a977aa33daf1", "name": "Update connector attribute for specific operation type", "originalRequest": { "url": { @@ -182009,7 +182009,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fa6502cf-46ae-4b22-b4cb-7ea4475c0382", + "id": "54a750a2-ef73-42a2-b2a5-cc8c6e946a6a", "name": "Enable notifications for new account provisioning on a source", "originalRequest": { "url": { @@ -182066,7 +182066,7 @@ "_postman_previewlanguage": "json" }, { - "id": "04ca0042-eaef-47a1-9b4e-50a1679a0905", + "id": "17461dbb-714e-48a3-86a9-15f27c51fb0c", "name": "Edit the source description", "originalRequest": { "url": { @@ -182123,7 +182123,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f02308e8-66b9-4570-91d3-72f2c90dbec6", + "id": "4ea23987-8674-4e42-8134-b7adc1a7703f", "name": "Edit the source cluster", "originalRequest": { "url": { @@ -182180,7 +182180,7 @@ "_postman_previewlanguage": "json" }, { - "id": "84593375-c198-4688-8e64-c1fac4b073ec", + "id": "f8240126-bb41-4388-ae88-d966431540e8", "name": "Edit source features", "originalRequest": { "url": { @@ -182237,7 +182237,7 @@ "_postman_previewlanguage": "json" }, { - "id": "925edeab-2dfe-444a-afd5-f9465ebefdcf", + "id": "7fd4a7a5-01ae-40bc-9d6b-a95a52289c65", "name": "Change a source description and cluster in one call", "originalRequest": { "url": { @@ -182294,7 +182294,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ebd9b3b7-ea2b-4177-b8ad-e7da0198b8f7", + "id": "92b9e38c-6e07-4f09-b784-5778b7655903", "name": "Add a filter string to the connector", "originalRequest": { "url": { @@ -182351,7 +182351,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f4ab0e29-fc12-4160-b9e7-1bd7e6526831", + "id": "e750b4a3-0fc2-4d00-bf30-631a3b44e03d", "name": "Update connector attribute for specific operation type", "originalRequest": { "url": { @@ -182408,7 +182408,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8603d507-1a0b-4b12-8ae2-e239239d447e", + "id": "879a5378-7eaf-40ef-9ffc-b1b71fc3af56", "name": "Enable notifications for new account provisioning on a source", "originalRequest": { "url": { @@ -182465,7 +182465,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1ce9fd3c-230f-4faa-8ad2-89756b7f0a02", + "id": "47dcb915-5486-46b8-bf34-58ceeb019660", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -182522,7 +182522,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ac90679a-8712-41d2-af4d-5596a919691d", + "id": "967da105-4eb2-485b-a33e-eedf2a0aceb0", "name": "Edit the source cluster", "originalRequest": { "url": { @@ -182579,7 +182579,7 @@ "_postman_previewlanguage": "json" }, { - "id": "12a7ed4b-e680-45ac-87f1-ea91dfec99e4", + "id": "812c4045-0062-4e58-9404-c021d69ff821", "name": "Edit source features", "originalRequest": { "url": { @@ -182636,7 +182636,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c12cceab-3b37-422f-ae44-8e1e40106ba1", + "id": "a3cc5579-541e-4c76-b67d-85ae556716d0", "name": "Change a source description and cluster in one call", "originalRequest": { "url": { @@ -182693,7 +182693,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ea151b8b-d07f-46fb-a29b-b906a871b2b4", + "id": "77eefa4f-cb0e-4b69-8659-c045787820a1", "name": "Add a filter string to the connector", "originalRequest": { "url": { @@ -182750,7 +182750,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8c37a5bb-ee98-4ec0-878c-626f818b6901", + "id": "688915c6-de17-44fa-bb72-f6caa82ec845", "name": "Update connector attribute for specific operation type", "originalRequest": { "url": { @@ -182807,7 +182807,7 @@ "_postman_previewlanguage": "json" }, { - "id": "92d82a1e-17bc-4a6c-9030-a13cd94e026c", + "id": "7e422bbd-856e-4f97-822b-cffd8fde35bd", "name": "Enable notifications for new account provisioning on a source", "originalRequest": { "url": { @@ -182870,7 +182870,7 @@ } }, { - "id": "41ae746d-f689-4658-a95b-a969aa05b96e", + "id": "8965c5d4-0424-4223-8385-86164a8cbf4c", "name": "Delete Source by ID", "request": { "name": "Delete Source by ID", @@ -182911,7 +182911,7 @@ }, "response": [ { - "id": "6e3e4fbc-da62-4e94-b241-0998e2fcf9d7", + "id": "c9839182-3f73-4073-8466-ea71c26af0be", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -182955,7 +182955,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4d303e34-a525-4196-99f3-120948c4a01f", + "id": "dad7cb80-36d0-4539-9192-27081e487150", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -182999,7 +182999,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2e2d1be6-afd5-4eda-810e-b30f7627f073", + "id": "4fae8c5b-d77f-4444-975b-b26bba2ba77f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -183043,7 +183043,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8befb53e-838c-46b3-844b-e2e3597408c3", + "id": "4b7a05f1-a043-4c33-8bf8-b1c3b4af8a4f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -183087,7 +183087,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fabdc017-46b6-419f-a48b-ea6c14a3377e", + "id": "23e30127-5340-4eb3-8ed3-fbac3c4b4e71", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -183131,7 +183131,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e891b144-5769-4617-b9ca-08979cc1f212", + "id": "1668c2a4-576c-45d5-8b97-a993a539ad0b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -183175,7 +183175,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1ee3179c-d519-4a8b-b551-a40b78a37b78", + "id": "ac64ec23-8f75-4307-8180-a4b8a353f6b0", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -183225,7 +183225,7 @@ } }, { - "id": "599ecada-1735-4ebe-94fe-0de2bf92bc17", + "id": "559589a1-0e9e-4e52-8d09-87b04c59d22b", "name": "Attribute Sync Config", "request": { "name": "Attribute Sync Config", @@ -183267,7 +183267,7 @@ }, "response": [ { - "id": "c9171595-8933-4f94-af8b-8a4e75ebe231", + "id": "5768f56b-f285-4f54-a2c7-9c51718ac096", "name": "Attribute synchronization configuration for a source", "originalRequest": { "url": { @@ -183312,7 +183312,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1ce8336e-2964-4faa-95cb-829b7fbe666f", + "id": "cfba26a7-f8d7-4e78-87ca-f49a87c647d1", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -183357,7 +183357,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dd8fff40-a3f8-48a2-b1fe-fdb0596e7b47", + "id": "dc794ba3-f165-47be-a21d-409b3964b8e2", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -183402,7 +183402,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1f95c997-0ab6-4e47-846f-f5cf7ed21644", + "id": "3f121c0e-ca19-45f7-ae1e-8d04e0a0021d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -183447,7 +183447,7 @@ "_postman_previewlanguage": "json" }, { - "id": "748b6837-f1c0-4089-a455-d45b9205beb0", + "id": "8c5fdfbd-6d9f-4a6a-9e78-bfa9cc16d0d9", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -183492,7 +183492,7 @@ "_postman_previewlanguage": "json" }, { - "id": "27163afa-4cd6-49d3-b87a-2096f73868b0", + "id": "e26693c6-25e8-4b43-84eb-1d748bdf2097", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -183537,7 +183537,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6418ae76-68f1-4e52-91a7-12b6a161211f", + "id": "03e6d751-203c-46e8-903c-90e45d7959fd", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -183588,7 +183588,7 @@ } }, { - "id": "85ed0851-2fbc-4d32-baf7-3ddf40a62cdb", + "id": "18aa2186-d73d-44ac-92aa-e0d82ef21caf", "name": "Update Attribute Sync Config", "request": { "name": "Update Attribute Sync Config", @@ -183643,7 +183643,7 @@ }, "response": [ { - "id": "a1ea32d9-438a-4f18-b2be-0892b56509b2", + "id": "eedc00e3-26d2-4a32-855d-fb4eb183bb51", "name": "Updated attribute synchronization configuration for a source", "originalRequest": { "url": { @@ -183701,7 +183701,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0d47445e-7528-4580-8e67-e95b305f8602", + "id": "1e86eaf0-56ef-43b4-9b59-b18c5db830bb", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -183759,7 +183759,7 @@ "_postman_previewlanguage": "json" }, { - "id": "001d0334-810c-4a05-83bb-e17a4c5438ca", + "id": "d3500787-4dcc-452b-904a-5aaec1449ec9", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -183817,7 +183817,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d57c1cfe-13fc-4936-aad8-7357605c0d33", + "id": "2dd40903-4d0e-442d-a0f3-da7e2f6d5a8d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -183875,7 +183875,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1275c5ee-4515-4909-9440-5bd56148af0c", + "id": "edd872a7-0d26-441f-8a46-c5e60010823c", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -183933,7 +183933,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c279f988-b777-412e-bcb7-958b23eca18c", + "id": "47811a45-e3f6-408a-86c5-8dcd3e87984a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -183991,7 +183991,7 @@ "_postman_previewlanguage": "json" }, { - "id": "30e21e4f-5d8c-4efc-9a15-a00711c966dc", + "id": "b5313d28-ccaf-4260-bc88-828fbc585192", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -184055,7 +184055,7 @@ } }, { - "id": "45a07d9f-97c2-4f0a-a917-8d1d10fb1631", + "id": "4bf9e16d-dd6d-45ab-80c0-744f659e6d6c", "name": "Check connection for source connector.", "request": { "name": "Check connection for source connector.", @@ -184098,7 +184098,7 @@ }, "response": [ { - "id": "86a6ec35-d9cc-4108-88df-df873ce3aba9", + "id": "993ab1ce-341e-49fd-b17c-23d64fabf23f", "name": "The result of checking connection to the source connector with response from it.", "originalRequest": { "url": { @@ -184144,7 +184144,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4037faa1-c09e-4900-8e81-f54cf8d7c8dc", + "id": "97f8e857-0417-4348-8171-546bc9e016d2", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -184190,7 +184190,7 @@ "_postman_previewlanguage": "json" }, { - "id": "65ddf143-fca7-454b-9999-d9e2e2e64886", + "id": "f78fb2d4-6956-4171-99d3-e0f2c2d88d9d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -184236,7 +184236,7 @@ "_postman_previewlanguage": "json" }, { - "id": "75590951-27ec-4943-bf5a-e655ccb63a18", + "id": "9a50c2de-af3e-4c53-a0d3-3d8d43f6bc2f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -184282,7 +184282,7 @@ "_postman_previewlanguage": "json" }, { - "id": "890294d4-eb41-456a-85f7-4e6d415faca4", + "id": "ce57abba-2589-4dd3-9ea3-f1f3a1e0d785", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -184328,7 +184328,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0b03a88e-ba14-451a-84bb-86d3f5fed080", + "id": "72513a89-8889-4873-81d1-c37cb73058ce", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -184374,7 +184374,7 @@ "_postman_previewlanguage": "json" }, { - "id": "155c8690-1bad-4046-b6b0-07cbba5f8bd6", + "id": "50545143-85a9-438f-bf4e-290ce91668b0", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -184426,7 +184426,7 @@ } }, { - "id": "89b99a48-e201-40f9-876e-e12985f48fbf", + "id": "a2736e6e-b902-4162-a5a2-f953861e53b0", "name": "Peek source connector's resource objects", "request": { "name": "Peek source connector's resource objects", @@ -184482,7 +184482,7 @@ }, "response": [ { - "id": "e3cca433-635b-4a60-a0d9-fb7e21bc700a", + "id": "515cbfc3-d937-45e7-a4ad-e62ab2ee6db7", "name": "List of resource objects that was fetched from the source connector.", "originalRequest": { "url": { @@ -184536,12 +184536,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\": \"ea officia nisi aute quis\",\n \"identity\": \"CN=Aaron Carr,OU=test1,DC=test2,DC=test\",\n \"uuid\": \"{abf7bd9b-68b4-4d21-9b70-870c58ebf844}\",\n \"previousIdentity\": \"eu non\",\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\": \"adipisicing ea irure minim\",\n \"identity\": \"CN=Aaron Carr,OU=test1,DC=test2,DC=test\",\n \"uuid\": \"{abf7bd9b-68b4-4d21-9b70-870c58ebf844}\",\n \"previousIdentity\": \"laboris tempor cillum\",\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\": \"qui quis\",\n \"identity\": \"CN=Aaron Carr,OU=test1,DC=test2,DC=test\",\n \"uuid\": \"{abf7bd9b-68b4-4d21-9b70-870c58ebf844}\",\n \"previousIdentity\": \"tempor laborum veniam exercitation 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\": \"et Lorem enim nostrud\",\n \"identity\": \"CN=Aaron Carr,OU=test1,DC=test2,DC=test\",\n \"uuid\": \"{abf7bd9b-68b4-4d21-9b70-870c58ebf844}\",\n \"previousIdentity\": \"Ut Excepteur ullamco aliquip ex\",\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": "08e3c2b0-7f60-4b31-97c4-f70de1d7f749", + "id": "c64799f9-13bc-4a76-895d-2e0b86216f02", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -184600,7 +184600,7 @@ "_postman_previewlanguage": "json" }, { - "id": "00363871-0ff6-4bcd-8074-211a6d8dd865", + "id": "14729cd4-b58a-4699-90bd-18bf41ffcf4a", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -184659,7 +184659,7 @@ "_postman_previewlanguage": "json" }, { - "id": "93b7ed11-7f66-48ca-99c8-9b32aaacf637", + "id": "7162241c-daab-44b5-8bcc-6801385f21ac", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -184718,7 +184718,7 @@ "_postman_previewlanguage": "json" }, { - "id": "85ce59c7-702e-44d1-8b3f-277aa2393d63", + "id": "3764dcbb-68ef-4d61-9973-7d1e0db0490a", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -184777,7 +184777,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7642dc8b-1258-4e35-9764-0d577e7c75b1", + "id": "c8021810-b176-4070-8e9c-960925ef32a8", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -184836,7 +184836,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9cab8622-138c-40b3-9866-64febca7c994", + "id": "78a04087-6387-4f55-bdae-977f07da2eda", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -184901,7 +184901,7 @@ } }, { - "id": "1cb628c8-cabd-42a7-be61-f2673a7e882f", + "id": "36fc2c07-f9e7-4e12-9e92-3274aa38692f", "name": "Ping cluster for source connector", "request": { "name": "Ping cluster for source connector", @@ -184944,7 +184944,7 @@ }, "response": [ { - "id": "452bea3f-0307-42de-adca-1b34addd1bbd", + "id": "6b74fc2c-f987-48ed-bace-3043be3bf06d", "name": "The result of pinging connection with the source connector.", "originalRequest": { "url": { @@ -184990,7 +184990,7 @@ "_postman_previewlanguage": "json" }, { - "id": "feb9e9e3-9358-4d7b-bf71-5c1eaae83fd4", + "id": "0ec15008-f914-4430-a7be-ac8883d4d144", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -185036,7 +185036,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c5c80b98-6397-45d4-afde-9444c4be3dd4", + "id": "85495a0d-9c97-4be0-95c0-9f3b84c09d6e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -185082,7 +185082,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2d66b796-e67c-4980-8f57-1dca0e35d3ee", + "id": "a0feabe9-756f-4e85-ac8d-2bcc359a478b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -185128,7 +185128,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0da1be7a-fffe-480e-8509-7271cac2e007", + "id": "542f3e70-1137-4f07-b6ae-9a96c3a2bbdc", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -185174,7 +185174,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2a704bbe-694b-4229-a0df-79af15f54c0a", + "id": "1b456273-5f4a-48df-be1c-40cf462ab572", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -185220,7 +185220,7 @@ "_postman_previewlanguage": "json" }, { - "id": "83afba9d-ba7e-4239-ac35-00833871c71e", + "id": "902d8891-f616-441d-a205-a2491d40c083", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -185272,7 +185272,7 @@ } }, { - "id": "baf5054e-49d6-4edb-b477-14242f2b36bc", + "id": "f4470448-6dc8-44b5-be28-a00bbf48da06", "name": "Test configuration for source connector", "request": { "name": "Test configuration for source connector", @@ -185315,7 +185315,7 @@ }, "response": [ { - "id": "901956c3-92e1-4d11-ac7c-0655007fb174", + "id": "99fa1c65-3fd7-4ce9-9c04-753f2b69bb5b", "name": "The result of testing source connector configuration with response from it.", "originalRequest": { "url": { @@ -185361,7 +185361,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b6e2a3de-3206-4c79-854c-9e72914051b6", + "id": "aa58c05d-f5c1-4510-aeb2-01420f2294a3", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -185407,7 +185407,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6732213d-d7f4-45d0-a4f8-57c9d763c63e", + "id": "0a406fce-4150-4657-b188-c231409f9cdd", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -185453,7 +185453,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c430254d-9444-40b9-9a60-1f0a89f4fb06", + "id": "0ce46a00-af88-48e6-a6b8-fc90c2002a79", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -185499,7 +185499,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3198e4bf-22b6-4bdb-9d30-343a0dc84a3f", + "id": "51011673-7444-489e-88da-18485fdf5dd5", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -185545,7 +185545,7 @@ "_postman_previewlanguage": "json" }, { - "id": "40bb2a79-f192-4d9f-b2bc-2c4c23b55c7d", + "id": "41d5e842-ed96-4d01-84b9-7d6ca9b2d79d", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -185591,7 +185591,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6250225a-5b8f-49dc-a234-a062384fa3c2", + "id": "3d76e259-8bcb-416a-b332-a7e605a7902e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -185643,7 +185643,7 @@ } }, { - "id": "c01e4e5c-ca03-44c4-bab7-c9a6f6178d73", + "id": "65a9e20d-1119-44e5-be22-9d91458eab1a", "name": "Gets source config with language translations", "request": { "name": "Gets source config with language translations", @@ -185669,13 +185669,13 @@ "type": "text/plain" }, "key": "locale", - "value": "hu" + "value": "ko" } ], "variable": [ { "type": "any", - "value": "labore", + "value": "laborum qui aliquip irure", "key": "id", "disabled": true, "description": { @@ -185696,7 +185696,7 @@ }, "response": [ { - "id": "0e110329-d6ae-42ad-926d-94678e91cd1b", + "id": "f1272b40-273f-49e5-8a8c-364909630516", "name": "A Connector Detail object", "originalRequest": { "url": { @@ -185717,7 +185717,7 @@ "type": "text/plain" }, "key": "locale", - "value": "hu" + "value": "ko" } ], "variable": [] @@ -185747,12 +185747,12 @@ "value": "application/json" } ], - "body": "{\n \"name\": \"JDBC\",\n \"sourceConfigXml\": \"
\\n\\t
\",\n \"sourceConfig\": \"culpa in\",\n \"directConnect\": true,\n \"fileUpload\": false,\n \"uploadedFiles\": \"ad velit nisi\",\n \"connectorMetadata\": {\n \"supportedUI\": \"EXTJS\"\n }\n}", + "body": "{\n \"name\": \"JDBC\",\n \"sourceConfigXml\": \"
\\n\\t
\",\n \"sourceConfig\": \"occaecat fugiat vel\",\n \"directConnect\": true,\n \"fileUpload\": false,\n \"uploadedFiles\": \"esse voluptate laborum proident\",\n \"connectorMetadata\": {\n \"supportedUI\": \"EXTJS\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "0f0d9b89-4581-4795-9fd5-8bd892f741cb", + "id": "9924c355-a142-436c-8694-47af04c164f2", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -185773,7 +185773,7 @@ "type": "text/plain" }, "key": "locale", - "value": "hu" + "value": "ko" } ], "variable": [] @@ -185808,7 +185808,7 @@ "_postman_previewlanguage": "json" }, { - "id": "acad690f-6fd4-4ea2-87dc-5e92e2ff036f", + "id": "cdd5765f-a772-40de-a912-6bc15dc3f974", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -185829,7 +185829,7 @@ "type": "text/plain" }, "key": "locale", - "value": "hu" + "value": "ko" } ], "variable": [] @@ -185864,7 +185864,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e512dab2-7a8e-4ad6-8999-a8e1e489bfb6", + "id": "9e80c892-0416-45b9-9848-f7abd360f6b8", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -185885,7 +185885,7 @@ "type": "text/plain" }, "key": "locale", - "value": "hu" + "value": "ko" } ], "variable": [] @@ -185920,7 +185920,7 @@ "_postman_previewlanguage": "json" }, { - "id": "44ab3dfb-711d-4dc7-bf1e-1e3f9a71834c", + "id": "686cddea-47ef-4c83-8734-040b471e5dc2", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -185941,7 +185941,7 @@ "type": "text/plain" }, "key": "locale", - "value": "hu" + "value": "ko" } ], "variable": [] @@ -185976,7 +185976,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7eeaecb0-a1cf-4fbf-b857-1117404b1644", + "id": "7cf2eedf-61d7-4fdb-ab6a-f59356c0c6b9", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -185997,7 +185997,7 @@ "type": "text/plain" }, "key": "locale", - "value": "hu" + "value": "ko" } ], "variable": [] @@ -186038,7 +186038,7 @@ } }, { - "id": "6c3ea9b0-0cb3-4725-aead-00b7b82f135c", + "id": "e25b81c4-2be8-4366-84ec-f26d11c265c0", "name": "Native Change Detection Configuration", "request": { "name": "Native Change Detection Configuration", @@ -186084,7 +186084,7 @@ }, "response": [ { - "id": "fcc5ffe8-3613-4f47-8952-b21aac7c0c41", + "id": "a43f067d-7d2a-4af7-98b9-a508f37d695d", "name": "Native change detection configuration for a source", "originalRequest": { "url": { @@ -186129,7 +186129,7 @@ "_postman_previewlanguage": "json" }, { - "id": "758b1e79-3f1e-47db-9c36-1aa5abaaa93f", + "id": "7a21c75f-282b-4acb-a627-713206deecbf", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -186174,7 +186174,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e6dff9d3-e3dc-4efa-8e9d-3336b3322dfa", + "id": "0c7ad985-b8f6-4e1d-8a0f-042725c6bbf7", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -186219,7 +186219,7 @@ "_postman_previewlanguage": "json" }, { - "id": "07075f4d-8439-4712-891b-d1989f8ca04f", + "id": "085c014f-3bc4-403c-8304-aba2c3713653", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -186264,7 +186264,7 @@ "_postman_previewlanguage": "json" }, { - "id": "67013d5f-ec07-4a7f-81f6-252103fb7bc6", + "id": "acce159a-0d82-4632-9710-42517eac0782", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -186309,7 +186309,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c4144bf4-8f02-4a29-92e1-9dceedf0838d", + "id": "0f34b929-3cca-452b-bc88-31554d983233", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -186354,7 +186354,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0ce5d2a9-04e9-47f4-ad18-9016dcb87bc5", + "id": "014f3800-cb5b-4652-bc88-7c30c89a0019", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -186405,7 +186405,7 @@ } }, { - "id": "609793fe-a944-45c3-9f38-33f59ac699e8", + "id": "f2f54372-0c97-4276-af69-e6ec506a8ecc", "name": "Update Native Change Detection Configuration", "request": { "name": "Update Native Change Detection Configuration", @@ -186464,7 +186464,7 @@ }, "response": [ { - "id": "667ae344-a774-46c7-aea1-0e37b05d6a7c", + "id": "8948864b-1d89-42aa-a20e-86a70b0ed38c", "name": "Updated native change detection configuration for a source", "originalRequest": { "url": { @@ -186522,7 +186522,7 @@ "_postman_previewlanguage": "json" }, { - "id": "33091428-977f-4671-9d4b-5ceeded3158a", + "id": "589402c5-05e1-4c45-a8d2-f2a340671a87", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -186580,7 +186580,7 @@ "_postman_previewlanguage": "json" }, { - "id": "09ff8900-1f52-49e6-8c92-d152916db526", + "id": "784a0e99-49bf-46ca-ad78-eb15bce9dc83", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -186638,7 +186638,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5a0f238d-7cd5-45fb-bffa-0152785126a7", + "id": "eeebe900-6bf4-4cbe-bdce-acc1bf2aa88a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -186696,7 +186696,7 @@ "_postman_previewlanguage": "json" }, { - "id": "97e0ac12-01a5-49a3-a7a6-58eb658cb325", + "id": "fa53359f-9f41-4ba2-8e7d-b12c7f06d0c7", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -186754,7 +186754,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b67c8b61-0df6-4e6a-901d-ddc371c5051c", + "id": "a130e1b6-0e94-4614-b7c7-e6966f93dfe1", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -186812,7 +186812,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cd6006bf-0a77-4bf3-a300-5ab8667a890f", + "id": "ab9a9cc7-5a17-41ce-808e-d4af65dac77d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -186876,7 +186876,7 @@ } }, { - "id": "287fb0ea-58f8-4586-a672-0bce6add78cd", + "id": "56b87998-8dc9-4ca1-8d2d-558c7c9908a8", "name": "Delete Native Change Detection Configuration", "request": { "name": "Delete Native Change Detection Configuration", @@ -186922,7 +186922,7 @@ }, "response": [ { - "id": "981ad451-280c-4c9e-b15c-52e816361dd1", + "id": "7ae8ef9b-f35c-4f0e-b637-86d50c936fdf", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -186957,7 +186957,7 @@ "_postman_previewlanguage": "text" }, { - "id": "60b6d73f-e83e-483f-a575-ba047700c8e8", + "id": "38e24b90-384a-47f9-b2be-e4b586dff36a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -187002,7 +187002,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fcf0dc4a-ea16-4d63-b8ee-48c1656b3ec6", + "id": "2ad4391f-8a7a-4d26-895d-4dfa8c2ad2ec", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -187047,7 +187047,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8f20f056-5d2f-4f47-b6e1-042367dbf1bf", + "id": "ec28ecd8-a6ad-4801-a62b-c719c1e92fc8", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -187092,7 +187092,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dbf30cdc-868e-469e-a718-0bb0edf058db", + "id": "7afbb1e7-f335-401e-895c-8cdfa2b38960", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -187137,7 +187137,7 @@ "_postman_previewlanguage": "json" }, { - "id": "16993201-4251-456d-a098-46334c3619c2", + "id": "5e22b780-64f5-4d1f-9ddc-86c8bb7ee590", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -187182,7 +187182,7 @@ "_postman_previewlanguage": "json" }, { - "id": "45d0b7b3-5345-42d3-8103-8d5eef182d43", + "id": "22b331f9-18f8-43f3-893c-2b37160b07f1", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -187233,7 +187233,7 @@ } }, { - "id": "a37f6c74-fd7b-4011-ab2f-743881900c2a", + "id": "2481eb9a-4f63-403e-b0b2-3381b28ec905", "name": "Lists ProvisioningPolicies", "request": { "name": "Lists ProvisioningPolicies", @@ -187275,7 +187275,7 @@ }, "response": [ { - "id": "2390adfb-7ce8-4c57-9a17-58ecbea00f5d", + "id": "8462930f-aa66-41ea-80f0-3a92de00edeb", "name": "List of ProvisioningPolicyDto objects", "originalRequest": { "url": { @@ -187320,7 +187320,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6468a94a-072e-4460-881d-7905dbf7f486", + "id": "8f12296a-5265-4ab6-a2cc-95c8536b84d2", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -187365,7 +187365,7 @@ "_postman_previewlanguage": "json" }, { - "id": "57863538-bc59-4e67-8929-cd5f1a141b00", + "id": "5ba61c89-8310-4d42-8a7c-d976715bfa24", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -187410,7 +187410,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0004e902-1c8f-433c-8b23-6472e3ec17db", + "id": "ec29fd21-f837-46cf-856b-c0c0f8325ede", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -187455,7 +187455,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bc6783e7-b468-4a72-930e-4524d87198fc", + "id": "3a95e9b8-dcb9-4e74-a8dd-bd76982814f0", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -187500,7 +187500,7 @@ "_postman_previewlanguage": "json" }, { - "id": "58f31e1b-55ba-4f9a-97d1-a5cc595b9430", + "id": "76913eb8-15da-411c-baf4-4ff62ca8c382", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -187545,7 +187545,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d39b45b1-bac0-438f-9c59-bb5be7ccbbe0", + "id": "0bc86c6a-c032-4cfb-9814-10490cb9bdd1", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -187596,7 +187596,7 @@ } }, { - "id": "c86df967-32fc-4fd7-bd9c-7ef496bbd91f", + "id": "3a125643-50ec-4bbd-a984-0f2018505dde", "name": "Create Provisioning Policy", "request": { "name": "Create Provisioning Policy", @@ -187651,7 +187651,7 @@ }, "response": [ { - "id": "2e6f15fd-c1bb-42fe-81bf-375bac32febb", + "id": "dbfc4966-832f-4b81-acb6-9d88508b2eec", "name": "Created ProvisioningPolicyDto object", "originalRequest": { "url": { @@ -187709,7 +187709,7 @@ "_postman_previewlanguage": "json" }, { - "id": "59fc3ce1-8fd0-41eb-a71d-bd0d2b17a48b", + "id": "6e553cd8-d1c9-4b2b-9be3-6e62dc9ed3cc", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -187767,7 +187767,7 @@ "_postman_previewlanguage": "json" }, { - "id": "58600bf1-105f-493a-946a-c81bf6492255", + "id": "6573dd97-d724-4cfb-9263-87ae380478cd", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -187825,7 +187825,7 @@ "_postman_previewlanguage": "json" }, { - "id": "35ddfbf5-7c66-424a-9e9d-83ad0ae94838", + "id": "8825e169-1dbd-411c-bdb9-aa4f326d6062", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -187883,7 +187883,7 @@ "_postman_previewlanguage": "json" }, { - "id": "63fefba4-d4fd-43fc-a898-f7bc0da83d28", + "id": "4e2bd29c-2725-4095-acf8-7f863ed3af87", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -187941,7 +187941,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3b03f319-7919-4433-b5c2-aa4e182d5aa4", + "id": "e3992833-fa8b-4846-9ab3-0c3579b63366", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -187999,7 +187999,7 @@ "_postman_previewlanguage": "json" }, { - "id": "130e97e7-b25f-4f12-a6fb-91a914255c9e", + "id": "31bd8226-cf0f-4cad-914f-08e4096b3024", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -188063,7 +188063,7 @@ } }, { - "id": "feed26dc-c82b-4fa7-a8ed-c193f8b7f44e", + "id": "504125e5-ec19-41af-b356-98de8203b476", "name": "Get Provisioning Policy by UsageType", "request": { "name": "Get Provisioning Policy by UsageType", @@ -188116,7 +188116,7 @@ }, "response": [ { - "id": "f554e4bc-0f7b-49d4-a3d3-a4264ea0c6a8", + "id": "46d8a3ee-54fe-4e0d-92b1-dbc7b7d51efa", "name": "The requested ProvisioningPolicyDto was successfully retrieved.", "originalRequest": { "url": { @@ -188162,7 +188162,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2cad8ea1-2dac-46b5-bd11-8db8e122514c", + "id": "c5a9fae9-d946-4599-9efc-a9384922acce", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -188208,7 +188208,7 @@ "_postman_previewlanguage": "json" }, { - "id": "becd86a3-9d5b-427b-a14b-fce0a4e1bba3", + "id": "31850a74-5611-4ac4-8f9c-52adece6276b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -188254,7 +188254,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a110cacd-fd20-457d-a0fb-90460a139032", + "id": "f31d4888-cde7-4a57-82b5-dcc2ce3806ff", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -188300,7 +188300,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b14b4313-c65e-4872-aa09-aca4f070c2ab", + "id": "7d2d2d59-a897-4e07-af35-c55ce081bc48", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -188346,7 +188346,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b2fa014b-c76c-4bca-9988-1d3d8a2c1383", + "id": "c623bac2-8a50-46bf-8254-8f9a43b68437", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -188392,7 +188392,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c4596c31-2bb4-4b14-b380-5d96645ce156", + "id": "07078165-d2b7-41f9-b517-136cad7c08a6", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -188444,7 +188444,7 @@ } }, { - "id": "c2e12041-9f56-4d06-8062-799567e2ce5e", + "id": "82cffb68-a311-4a6b-94f8-21de6677e352", "name": "Update Provisioning Policy by UsageType", "request": { "name": "Update Provisioning Policy by UsageType", @@ -188510,7 +188510,7 @@ }, "response": [ { - "id": "e02e6ba3-8e9e-42f3-b24e-c88d36597801", + "id": "9ae2941f-72ae-4c8f-b7c6-8bf4401d371b", "name": "The ProvisioningPolicyDto was successfully replaced.", "originalRequest": { "url": { @@ -188569,7 +188569,7 @@ "_postman_previewlanguage": "json" }, { - "id": "145bf91e-3b49-425d-b619-e1468744d1a6", + "id": "b8dfd64d-8688-488e-bc87-b6ee9d6f0092", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -188628,7 +188628,7 @@ "_postman_previewlanguage": "json" }, { - "id": "92c9251f-357c-4716-908b-b62047b05374", + "id": "682f359e-aca9-4fad-b94f-b5636e0e7cd8", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -188687,7 +188687,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3a24b9f6-887b-47aa-ba26-55bfc1cfb342", + "id": "5e42cc3b-f1fa-485d-9643-79a32246ff9f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -188746,7 +188746,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6515b550-d5bf-4342-90cf-a47199fa9958", + "id": "09557631-61a1-4d4e-942f-ae4419925905", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -188805,7 +188805,7 @@ "_postman_previewlanguage": "json" }, { - "id": "536e6bb8-eaaf-4c77-abd4-ee9b20c64567", + "id": "474d9fab-367f-43b9-8489-e0500aaf36de", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -188864,7 +188864,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d4f67ade-b5fa-4d1b-a60b-777c65ac17ef", + "id": "a325098a-0379-4eff-be29-83f6268088be", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -188929,7 +188929,7 @@ } }, { - "id": "e2296f20-91ce-4bf0-a15f-e1787be830bf", + "id": "3a11469e-bd02-4953-9194-a3c90d0592de", "name": "Partial update of Provisioning Policy", "request": { "name": "Partial update of Provisioning Policy", @@ -188995,7 +188995,7 @@ }, "response": [ { - "id": "70b1a80c-2153-4dc7-a525-716acf7ae4fd", + "id": "a7f467cc-0a8d-4533-a60a-8c3d75a2a64b", "name": "The ProvisioningPolicyDto was successfully updated.", "originalRequest": { "url": { @@ -189054,7 +189054,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8944040f-aebe-4e86-96f9-77eafaf12950", + "id": "532f6576-bf26-41bf-ace8-7634f03037e1", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -189113,7 +189113,7 @@ "_postman_previewlanguage": "json" }, { - "id": "243b33f6-1735-4d6d-8eba-125a9965c146", + "id": "a623bf48-34db-4e86-8fbd-ebde93e1d1d1", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -189172,7 +189172,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d6a033de-94ec-4cc6-b02a-ca83cefdd102", + "id": "5d869c67-3704-4c8f-b94b-5585e0baf909", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -189231,7 +189231,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8347a2a4-f6bc-4e02-931e-a1373943ccd3", + "id": "3f99f4b1-22f1-49f3-8c03-181d94354cfa", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -189290,7 +189290,7 @@ "_postman_previewlanguage": "json" }, { - "id": "901d30e3-2fe1-45b4-a13b-21c494a2fa75", + "id": "07864b99-a806-4832-b483-e594a3420cd3", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -189349,7 +189349,7 @@ "_postman_previewlanguage": "json" }, { - "id": "66d8eec9-28e6-4b8e-be71-59a711a6917b", + "id": "572fe24b-ef29-4706-ae2b-a4837be25c55", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -189414,7 +189414,7 @@ } }, { - "id": "2f78c23e-3326-4b5c-929e-9b2ebccec6e5", + "id": "a713a53b-b48f-4c8c-858f-11529dc096a3", "name": "Delete Provisioning Policy by UsageType", "request": { "name": "Delete Provisioning Policy by UsageType", @@ -189467,7 +189467,7 @@ }, "response": [ { - "id": "ca52650d-b552-4c37-8fa0-96f3f0fba514", + "id": "32aebad6-d692-4a7b-bac0-fb606e2bc4c2", "name": "The ProvisioningPolicyDto was successfully deleted.", "originalRequest": { "url": { @@ -189503,7 +189503,7 @@ "_postman_previewlanguage": "text" }, { - "id": "60948eb6-91c4-434d-9a6c-7f3c212d26c9", + "id": "054e3715-490d-479a-81e2-309a7ed51a98", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -189549,7 +189549,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6d3980ec-81b9-4ada-b915-f353d0bce3cb", + "id": "a3dd56bc-7ba3-40c1-b781-18dc159217fd", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -189595,7 +189595,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a2da7a7c-ad0e-463f-b7b6-8100c738eff5", + "id": "ac3428c7-0063-418d-a92b-0e1c34d6a286", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -189641,7 +189641,7 @@ "_postman_previewlanguage": "json" }, { - "id": "84c3fe1f-b7c0-4462-8805-a04d16483388", + "id": "16b79b88-9406-4563-ab44-8e2dfec53acb", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -189687,7 +189687,7 @@ "_postman_previewlanguage": "json" }, { - "id": "74c5caf6-a54a-4e71-a648-590c5b4d82ef", + "id": "ff2c9e4c-0879-47df-9ccc-6ab77b1fc837", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -189733,7 +189733,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f7ba4ebc-f80e-4ff6-b581-f441bc07b0d7", + "id": "1bf8aa9d-6fe7-4948-ae35-fdb2fabf8fe0", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -189785,7 +189785,7 @@ } }, { - "id": "d59c53e4-5e0a-428b-8456-04e21ca91b3c", + "id": "12f416eb-5008-4985-8ccc-7f1f767465bc", "name": "Bulk Update Provisioning Policies", "request": { "name": "Bulk Update Provisioning Policies", @@ -189841,7 +189841,7 @@ }, "response": [ { - "id": "7b7da4ca-3b38-4eb5-b2b0-b6be0443a779", + "id": "a5c4764c-b6fe-46c9-89b5-b8112a8663a8", "name": "A list of the ProvisioningPolicyDto was successfully replaced.", "originalRequest": { "url": { @@ -189900,7 +189900,7 @@ "_postman_previewlanguage": "json" }, { - "id": "218152ca-7c55-45d3-bf2d-61dce2c40491", + "id": "23e73c4e-4a7f-42e4-bb45-b11c91bab040", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -189959,7 +189959,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5741475f-d29a-497c-b501-ba4ff45ba2ef", + "id": "3b35d7d4-0f2e-4d87-aabd-29f9278a955a", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -190018,7 +190018,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3b8ae377-da3b-4f8e-b4aa-c8f5417703b3", + "id": "21cc3b8c-4ca4-4ef7-992e-e2e7d2e57588", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -190077,7 +190077,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2690386a-f03b-4d47-b31e-0912aa5d9f56", + "id": "cfcb1784-f7ed-41c6-bd3a-30f2ee54f61f", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -190136,7 +190136,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1561243b-0ea8-4ef8-a4b4-d2de644abe88", + "id": "71ab5d23-04f3-4235-b25e-4a9333b2e651", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -190195,7 +190195,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a152a345-dcc0-4fbe-88a4-285f4ed3f0d9", + "id": "bd0a0d6d-2b8e-492e-ab33-f37bd0cfdfbb", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -190260,7 +190260,7 @@ } }, { - "id": "49eb89c3-a41f-4aba-b882-e9054699758a", + "id": "ad199c68-4911-48d4-b2e8-7e4c496b00f4", "name": "Remove All Accounts in a Source", "request": { "name": "Remove All Accounts in a Source", @@ -190302,7 +190302,7 @@ }, "response": [ { - "id": "3a9149a6-b812-4c9a-9145-0e0bcdcfc013", + "id": "88735f51-73d3-4db4-8a83-ce59b0218904", "name": "Accepted. Returns task result details of removal request.", "originalRequest": { "url": { @@ -190347,7 +190347,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6b0f4b9c-5b07-494c-8720-b249b73e71e4", + "id": "3634b478-8b27-4ca9-9ebb-12e28d991095", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -190392,7 +190392,7 @@ "_postman_previewlanguage": "json" }, { - "id": "47ac1851-b6d0-4ee5-bf7c-48c395c4fff4", + "id": "2a0e7f51-88ed-4bff-ba09-2c8fd308d64b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -190437,7 +190437,7 @@ "_postman_previewlanguage": "json" }, { - "id": "294b8a65-35d8-4673-8370-6c256abaa4a5", + "id": "2d46218a-70dd-46b4-8a8f-a2051ce7853e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -190482,7 +190482,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c9017f0f-08ac-4426-840b-2042ddf69842", + "id": "099e8020-3b67-47d9-90ce-6ac1b9dd2531", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -190527,7 +190527,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bbe5f6ff-9047-48a6-87ae-f421a6f4a1c5", + "id": "6f18f7c7-2e9b-4561-a3bb-bca9532111a1", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -190578,7 +190578,7 @@ } }, { - "id": "bfa22443-3ca4-454b-ab53-a186e0a83624", + "id": "106987d3-1f48-497f-8243-046880900199", "name": "List Schemas on Source", "request": { "name": "List Schemas on Source", @@ -190630,7 +190630,7 @@ }, "response": [ { - "id": "9e113a78-91ec-4cb4-88f3-65592b564268", + "id": "faba4150-13a0-4918-bb58-e2456198a4ac", "name": "The schemas were successfully retrieved.", "originalRequest": { "url": { @@ -190685,7 +190685,7 @@ "_postman_previewlanguage": "json" }, { - "id": "597a3e69-2a2d-467d-9178-2949d9dd3577", + "id": "eb2c9331-bedd-4200-9633-fd0bdb98903e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -190740,7 +190740,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2cb4d237-d140-44fd-bd70-4314edd6604c", + "id": "09f1a41f-c323-4040-9245-6468aebdcbbc", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -190795,7 +190795,7 @@ "_postman_previewlanguage": "json" }, { - "id": "96738143-0ba3-4b3c-b0d7-2daa55d5d708", + "id": "888f0e09-b4e4-4a93-816c-8d55d422d7fa", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -190850,7 +190850,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6a3cf7d1-477f-45a5-a5ab-8e3ed60a696d", + "id": "fec8ad49-3ecf-4303-b168-c72af5e4f029", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -190905,7 +190905,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9f814649-3e3a-4386-b575-4262e104c8ee", + "id": "cb2808ca-1d53-4c3a-a161-1b49ef4472b8", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -190960,7 +190960,7 @@ "_postman_previewlanguage": "json" }, { - "id": "046caa57-b333-4909-aaf8-fef301ccf5f6", + "id": "71dafc3e-eef0-48f4-bf86-3642f1fa7020", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -191021,7 +191021,7 @@ } }, { - "id": "1a81be73-8e7c-479d-961d-69e7545087f7", + "id": "0464034a-3adb-490e-8235-168b7447c518", "name": "Create Schema on Source", "request": { "name": "Create Schema on Source", @@ -191076,7 +191076,7 @@ }, "response": [ { - "id": "a924a5f8-2d3b-4718-94ac-dbe1d6b099ff", + "id": "8f564658-ed99-4018-b0b2-551f92906e47", "name": "The schema was successfully created on the specified source.", "originalRequest": { "url": { @@ -191134,7 +191134,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b6df84c3-c8fe-4040-a352-132dacadf803", + "id": "2399bae7-a2b1-4fd3-83e3-f8159b2e7dde", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -191192,7 +191192,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dfba5de1-ce85-4c21-a4f6-93d7324e8dfb", + "id": "7f2d4199-0fb1-42f8-b41c-81c497b915e4", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -191250,7 +191250,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cc267609-908e-4f74-9db6-d7acf526145e", + "id": "5542b055-abce-4706-8910-55870081b441", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -191308,7 +191308,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8287d8e9-ace4-4d72-a3f1-269a12483b5d", + "id": "1a5447a0-7b1e-4174-99e5-a0175436cf3e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -191366,7 +191366,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e95e9d65-ec0b-4e28-8b82-413fb9058fc8", + "id": "d11d1874-2de0-4a2a-9037-eaec8214c7ca", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -191430,7 +191430,7 @@ } }, { - "id": "88d87809-d6ce-4645-b78c-4a7a022413f9", + "id": "21d75dd3-f28f-43db-bb04-0db41317ec56", "name": "Get Source Schema by ID", "request": { "name": "Get Source Schema by ID", @@ -191483,7 +191483,7 @@ }, "response": [ { - "id": "0cd02f14-5d63-4902-bc56-58b063fcd783", + "id": "b17c88ef-7170-45ce-a715-b8f74576f8c1", "name": "The requested Schema was successfully retrieved.", "originalRequest": { "url": { @@ -191529,7 +191529,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7a40d2e5-984e-4dd4-9db7-3616468294e3", + "id": "03db37c8-1a50-43d9-888d-e2fd7e908b4f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -191575,7 +191575,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2c444aae-e783-48af-90b1-0080a4db6c98", + "id": "e9d80318-cbd1-4177-8441-3649b3f561a0", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -191621,7 +191621,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bf3c73b0-bb9b-4a7c-9486-914681c07cce", + "id": "4bf12316-7acb-48a9-9ff1-a989dc298fc2", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -191667,7 +191667,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c0c8ba56-06d8-4e65-ab05-119ae168c649", + "id": "626b19f4-a94c-4b6b-ac85-df5cdc491e44", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -191713,7 +191713,7 @@ "_postman_previewlanguage": "json" }, { - "id": "99b52764-0cdb-4956-80e8-49c8421003d8", + "id": "7e88acf9-edce-4e73-9aa9-d4c5c0cb7beb", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -191759,7 +191759,7 @@ "_postman_previewlanguage": "json" }, { - "id": "25f8236d-958d-41a8-bebf-f98ca04bf509", + "id": "d70620e8-d43e-41a5-9339-864c8124060f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -191811,7 +191811,7 @@ } }, { - "id": "77f3b8f0-c6ed-4c5c-a91b-62bc04c0fec9", + "id": "2363387c-88a1-4ca5-a936-e2dba65859dc", "name": "Update Source Schema (Full)", "request": { "name": "Update Source Schema (Full)", @@ -191877,7 +191877,7 @@ }, "response": [ { - "id": "c74a525e-4612-4729-9dc8-66c4fc6dbc53", + "id": "21dc435e-720b-479e-9419-f36d750544ef", "name": "The Schema was successfully replaced.", "originalRequest": { "url": { @@ -191936,7 +191936,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ec838cbd-7e0d-4d7e-8b79-676c3e4e4afc", + "id": "17e108ea-a58b-4c88-b839-cf9af62659ea", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -191995,7 +191995,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ff8dccac-719a-4474-9ac9-daee1b4d2812", + "id": "95936303-d5da-4ad3-9221-37d04ee83c11", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -192054,7 +192054,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fa02100d-08bc-4269-a4eb-5237d8e8560f", + "id": "a9aa14ee-1ac5-457a-aee9-d50b240e6859", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -192113,7 +192113,7 @@ "_postman_previewlanguage": "json" }, { - "id": "756eee32-b505-4624-ab1b-06277c5c47a6", + "id": "03562eb3-0893-4ce0-992d-5e96ba9740b8", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -192172,7 +192172,7 @@ "_postman_previewlanguage": "json" }, { - "id": "123157cc-b4e8-48ce-9960-3347a357a8a1", + "id": "2754b1eb-e37c-4381-95a1-9da4bda88108", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -192231,7 +192231,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2313d7bf-023c-45c3-970f-d4b79caf294c", + "id": "fc962771-7d39-4f8d-b008-20f99f9fe123", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -192296,7 +192296,7 @@ } }, { - "id": "295a5c2b-e04e-4989-9427-089d231e6aa1", + "id": "f578984d-e5d9-4aed-8e2c-eb999160a94d", "name": "Update Source Schema (Partial)", "request": { "name": "Update Source Schema (Partial)", @@ -192362,7 +192362,7 @@ }, "response": [ { - "id": "2245244f-7090-470e-ac94-b697abb5533a", + "id": "fd1680ba-d0c1-4310-850b-6089d4b59eed", "name": "The Schema was successfully updated.", "originalRequest": { "url": { @@ -192421,7 +192421,7 @@ "_postman_previewlanguage": "json" }, { - "id": "92a1db8e-6309-465a-af17-ff82915531fc", + "id": "d06cd990-ad86-4c41-adc4-243d6d82bb00", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -192480,7 +192480,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d937c922-daee-4715-b197-8f63c406cd14", + "id": "f1e4eb76-8d15-47e4-ad8b-ce41c810ad4e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -192539,7 +192539,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4965acee-4639-4995-9b92-642254268b7a", + "id": "263bf694-bc73-4d52-9f92-985a47e6a204", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -192598,7 +192598,7 @@ "_postman_previewlanguage": "json" }, { - "id": "356b9088-a435-4608-854b-7f48ff809e0a", + "id": "e69add56-5cdc-41bd-9b53-362c2f5aa248", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -192657,7 +192657,7 @@ "_postman_previewlanguage": "json" }, { - "id": "84119e39-d829-4a83-9750-c4ab2df26baa", + "id": "e6a1df7b-6642-436b-aa90-83d0665a5a8d", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -192716,7 +192716,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6525e393-c5cb-4a3c-b167-41b653da24bf", + "id": "e6062236-fe3f-4a81-a6c1-f729c0ba74f8", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -192781,7 +192781,7 @@ } }, { - "id": "92ee9f5d-86cb-4606-adcf-74ad3223144b", + "id": "ac329681-333f-4d38-bc65-23b64382baa7", "name": "Delete Source Schema by ID", "request": { "name": "Delete Source Schema by ID", @@ -192831,7 +192831,7 @@ }, "response": [ { - "id": "d2684927-21dc-4e20-98ef-223cecdaf105", + "id": "a461d990-28c7-40c0-9638-b077e4a479a9", "name": "The Schema was successfully deleted.", "originalRequest": { "url": { @@ -192867,7 +192867,7 @@ "_postman_previewlanguage": "text" }, { - "id": "b4d8bbe9-243a-4ba4-a5fe-1099b3ef7be3", + "id": "55cdda3f-1c06-426b-a6c4-749f369004bf", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -192913,7 +192913,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f3711b07-effd-45f6-b86a-46a9f6ddc218", + "id": "2cf88094-f57f-49e2-9a12-29f4982187ba", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -192959,7 +192959,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cef72105-7ae0-4a66-900f-1eab35a88c1e", + "id": "37e1074e-5143-4fe3-8ddd-b5be58325a37", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -193005,7 +193005,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f23c2720-8dd0-4ef8-ae48-68b6dabf61d9", + "id": "b1ba69d4-cddb-438e-a372-dc770ac599d2", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -193051,7 +193051,7 @@ "_postman_previewlanguage": "json" }, { - "id": "186225a2-a897-47de-bf61-c11c15da4c01", + "id": "f4877890-fa0d-4698-a2f4-e5785a3f70a0", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -193097,7 +193097,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ce49616d-4d88-46c3-ba6f-d20212b1f7fb", + "id": "d4733f58-f537-470e-82be-cce47a72be15", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -193149,7 +193149,7 @@ } }, { - "id": "6b29d2c7-2d5a-4593-acc8-3d5398a15711", + "id": "45b4b398-247d-48f6-b787-b5857fb32132", "name": "Downloads source accounts schema template", "request": { "name": "Downloads source accounts schema template", @@ -193189,7 +193189,7 @@ }, "response": [ { - "id": "151f0c34-2c0b-4516-aa7e-164ab82e899c", + "id": "6e0826b1-f6ef-470d-8bac-ab770e66e010", "name": "Successfully downloaded the file", "originalRequest": { "url": { @@ -193235,7 +193235,7 @@ "_postman_previewlanguage": "text" }, { - "id": "698f47f7-ce59-4edf-898c-42e2f3df5657", + "id": "80a5b2f7-79f2-4832-9062-50fd86a8ade6", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -193281,7 +193281,7 @@ "_postman_previewlanguage": "json" }, { - "id": "071943a8-6848-48f1-a7d3-cce5cf4683b8", + "id": "76a93c55-6e18-4a2a-ae13-b63d789f2837", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -193327,7 +193327,7 @@ "_postman_previewlanguage": "json" }, { - "id": "76ad8ee3-2abc-4243-accb-d1791cf4d4f1", + "id": "4617a27f-2bdb-4998-abe5-84e50a86ce59", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -193373,7 +193373,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4b02f2a0-dbe1-4702-be68-f734f62ec7ed", + "id": "bc8bf50f-734d-4f7c-aee8-9886ebcba762", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -193419,7 +193419,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bfb91abd-0a02-4b05-86b7-fc20fdcbe9fd", + "id": "da9dc677-26b2-4317-a748-c067c2bcbdc7", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -193465,7 +193465,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2b5fbd2e-da24-4c21-bb69-5421d51af026", + "id": "62b62855-9df2-4cde-9682-f64018f4c5da", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -193517,7 +193517,7 @@ } }, { - "id": "bb919c6e-e363-468e-98e8-48113ac57840", + "id": "ca2a1f85-ddc0-4f07-b53e-1e386d28397b", "name": "Uploads source accounts schema template", "request": { "name": "Uploads source accounts schema template", @@ -193569,7 +193569,7 @@ "type": "text/plain" }, "key": "file", - "value": "do sed minim", + "value": "anim esse in sunt", "type": "text" } ] @@ -193577,7 +193577,7 @@ }, "response": [ { - "id": "cd7f3121-55de-426c-8428-6574e90dd38f", + "id": "2765ed59-2df4-49ef-b837-4ad5346b97b7", "name": "Successfully uploaded the file", "originalRequest": { "url": { @@ -193621,7 +193621,7 @@ "type": "text/plain" }, "key": "file", - "value": "do sed minim", + "value": "anim esse in sunt", "type": "text" } ] @@ -193640,7 +193640,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4d4d7a97-b32f-410b-882d-66ad4f05b1a6", + "id": "873c88d0-b067-4a51-9a4e-1216c440e0b0", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -193684,7 +193684,7 @@ "type": "text/plain" }, "key": "file", - "value": "do sed minim", + "value": "anim esse in sunt", "type": "text" } ] @@ -193703,7 +193703,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9dd0a7b5-8a04-462b-80b0-58d1f1013037", + "id": "59219dd8-53d8-4d5d-a893-03be64b872a1", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -193747,7 +193747,7 @@ "type": "text/plain" }, "key": "file", - "value": "do sed minim", + "value": "anim esse in sunt", "type": "text" } ] @@ -193766,7 +193766,7 @@ "_postman_previewlanguage": "json" }, { - "id": "11c03c8e-135b-4af0-8d0f-221be2ad112c", + "id": "bd4eaabb-139e-461f-be82-6b2fbd027d71", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -193810,7 +193810,7 @@ "type": "text/plain" }, "key": "file", - "value": "do sed minim", + "value": "anim esse in sunt", "type": "text" } ] @@ -193829,7 +193829,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0ae3ac90-b758-4186-83b5-87322def3948", + "id": "220199ba-db20-4c51-9984-a6fd2147270f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -193873,7 +193873,7 @@ "type": "text/plain" }, "key": "file", - "value": "do sed minim", + "value": "anim esse in sunt", "type": "text" } ] @@ -193892,7 +193892,7 @@ "_postman_previewlanguage": "json" }, { - "id": "585b8157-e898-44fc-879c-613727a7baaf", + "id": "3dda0786-3507-4b8f-aadc-9e518650f4ba", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -193936,7 +193936,7 @@ "type": "text/plain" }, "key": "file", - "value": "do sed minim", + "value": "anim esse in sunt", "type": "text" } ] @@ -193961,7 +193961,7 @@ } }, { - "id": "e5586450-4d6a-4a24-bdbb-accadd819367", + "id": "560fa29e-07f9-4623-b30e-356f244d42b2", "name": "Downloads source entitlements schema template", "request": { "name": "Downloads source entitlements schema template", @@ -194011,7 +194011,7 @@ }, "response": [ { - "id": "212dcc45-78c8-4455-84aa-d85db368e117", + "id": "a9f011c9-2138-4ecb-82f6-de1327666758", "name": "Successfully downloaded the file", "originalRequest": { "url": { @@ -194067,7 +194067,7 @@ "_postman_previewlanguage": "text" }, { - "id": "aa273dcf-5977-4c76-a15e-45502f607749", + "id": "b65a389b-d9a7-4bf6-9385-e830f77f1771", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -194123,7 +194123,7 @@ "_postman_previewlanguage": "json" }, { - "id": "58dc388a-b70c-4f41-9231-4eec1a5ab1da", + "id": "9711e28e-cec6-4209-bbf8-b52c1e392c64", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -194179,7 +194179,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f70b5553-190e-42cb-a72a-004e7ff19055", + "id": "c6694af3-6442-4824-b120-5ef398bd156a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -194235,7 +194235,7 @@ "_postman_previewlanguage": "json" }, { - "id": "48fa7dcb-45ef-440d-acb4-745ae405a8d6", + "id": "35fd003a-616e-4acb-9e24-5b6da1cdfccc", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -194291,7 +194291,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ec59e6f6-875b-4558-be4e-57dd85fc9ce9", + "id": "51950ee9-c812-483f-a2cc-10ae225e9473", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -194347,7 +194347,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dce28163-6827-4b30-9744-8afd1ca26ebd", + "id": "af54695a-b7a6-4398-a513-fb30f5454f09", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -194409,7 +194409,7 @@ } }, { - "id": "b3bb4527-e63f-48d2-83b3-d509b3081aaa", + "id": "e994ff0b-c857-4b97-8611-df42879e2cfd", "name": "Uploads source entitlements schema template", "request": { "name": "Uploads source entitlements schema template", @@ -194471,7 +194471,7 @@ "type": "text/plain" }, "key": "file", - "value": "do sed minim", + "value": "anim esse in sunt", "type": "text" } ] @@ -194479,7 +194479,7 @@ }, "response": [ { - "id": "35f15109-5b52-4063-b4ec-f41d36d6ac98", + "id": "4c10b982-09a1-494f-9df9-d273e120fd9f", "name": "Successfully uploaded the file", "originalRequest": { "url": { @@ -194533,7 +194533,7 @@ "type": "text/plain" }, "key": "file", - "value": "do sed minim", + "value": "anim esse in sunt", "type": "text" } ] @@ -194552,7 +194552,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8e5deb1a-04e3-4892-9ad8-976e3087091d", + "id": "a1cf5efe-a677-4ca9-b069-cd2afc562fc7", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -194606,7 +194606,7 @@ "type": "text/plain" }, "key": "file", - "value": "do sed minim", + "value": "anim esse in sunt", "type": "text" } ] @@ -194625,7 +194625,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dd7fe867-6be5-49d5-bd6c-8365533f5b7c", + "id": "832665fb-62a2-4472-a313-2eb9422b6207", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -194679,7 +194679,7 @@ "type": "text/plain" }, "key": "file", - "value": "do sed minim", + "value": "anim esse in sunt", "type": "text" } ] @@ -194698,7 +194698,7 @@ "_postman_previewlanguage": "json" }, { - "id": "496fbca9-98d1-4bf1-b712-a5867dc1e807", + "id": "7e4d33bc-18ac-43c2-8e65-167da2827531", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -194752,7 +194752,7 @@ "type": "text/plain" }, "key": "file", - "value": "do sed minim", + "value": "anim esse in sunt", "type": "text" } ] @@ -194771,7 +194771,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ef7246f1-36cd-45c4-ad34-47156cf2f770", + "id": "4d343aae-a8db-4502-bf4b-3af0ffd6360f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -194825,7 +194825,7 @@ "type": "text/plain" }, "key": "file", - "value": "do sed minim", + "value": "anim esse in sunt", "type": "text" } ] @@ -194844,7 +194844,7 @@ "_postman_previewlanguage": "json" }, { - "id": "45629eac-dd2f-458b-8271-67992788bb6f", + "id": "c487332f-9118-4d1f-bda8-1c01fae276a3", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -194898,7 +194898,7 @@ "type": "text/plain" }, "key": "file", - "value": "do sed minim", + "value": "anim esse in sunt", "type": "text" } ] @@ -194923,7 +194923,7 @@ } }, { - "id": "fb14bcd4-eb24-4c18-8404-fdd2cf639124", + "id": "190b9779-6e1f-471f-a77c-4cab7f74f36d", "name": "Upload connector file to source", "request": { "name": "Upload connector file to source", @@ -194974,7 +194974,7 @@ "type": "text/plain" }, "key": "file", - "value": "do sed minim", + "value": "anim esse in sunt", "type": "text" } ] @@ -194982,7 +194982,7 @@ }, "response": [ { - "id": "42542d5a-f2ed-4c17-bef4-f76da616ca85", + "id": "277e963f-16b3-43c2-acfa-06c0c51565f5", "name": "Uploaded the file successfully and sent all post-upload events", "originalRequest": { "url": { @@ -195025,7 +195025,7 @@ "type": "text/plain" }, "key": "file", - "value": "do sed minim", + "value": "anim esse in sunt", "type": "text" } ] @@ -195044,7 +195044,7 @@ "_postman_previewlanguage": "json" }, { - "id": "22721891-74fb-4055-b785-dc275d9aad52", + "id": "5eb1aba8-9c38-48e6-a9ed-e6be324b1228", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -195087,7 +195087,7 @@ "type": "text/plain" }, "key": "file", - "value": "do sed minim", + "value": "anim esse in sunt", "type": "text" } ] @@ -195106,7 +195106,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b67628d9-4ff1-4be9-9033-eebdc81d1576", + "id": "2d21dfec-c68c-47e5-96d6-8ec1aaa22dad", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -195149,7 +195149,7 @@ "type": "text/plain" }, "key": "file", - "value": "do sed minim", + "value": "anim esse in sunt", "type": "text" } ] @@ -195168,7 +195168,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b1bb01aa-1a5e-41a1-a87d-0c9fecc5cc67", + "id": "10fae323-4f3b-4745-abe6-edec5c25825b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -195211,7 +195211,7 @@ "type": "text/plain" }, "key": "file", - "value": "do sed minim", + "value": "anim esse in sunt", "type": "text" } ] @@ -195230,7 +195230,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5873f214-34c7-4588-9171-b26e1cbf35d4", + "id": "e4d6ac66-c1c2-479b-a32d-d0a35d664923", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -195273,7 +195273,7 @@ "type": "text/plain" }, "key": "file", - "value": "do sed minim", + "value": "anim esse in sunt", "type": "text" } ] @@ -195292,7 +195292,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e34799e3-71ea-45ec-9ecd-ca710094bd28", + "id": "65b81219-5115-4448-b208-feb3f17dd03b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -195335,7 +195335,7 @@ "type": "text/plain" }, "key": "file", - "value": "do sed minim", + "value": "anim esse in sunt", "type": "text" } ] @@ -195360,7 +195360,7 @@ } }, { - "id": "2adef007-70d3-44a2-b1ba-3f47c7e14756", + "id": "c1219238-39b2-402c-9572-6da0c1f11704", "name": "Synchronize single source attributes.", "request": { "name": "Synchronize single source attributes.", @@ -195381,7 +195381,7 @@ "variable": [ { "type": "any", - "value": "labore", + "value": "laborum qui aliquip irure", "key": "id", "disabled": true, "description": { @@ -195402,7 +195402,7 @@ }, "response": [ { - "id": "1cf12c14-68f6-4038-a866-1fb3a40852b8", + "id": "7189d767-638d-4e37-a454-cf8767ed29ad", "name": "A Source Sync job", "originalRequest": { "url": { @@ -195447,7 +195447,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ca954e61-c914-42e0-8316-e40f6a4af36e", + "id": "5360b3c3-6876-42a1-8e49-8374b838d1ef", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -195492,7 +195492,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7ad66abc-6677-4018-a1a1-519a6a425064", + "id": "72590fbf-8cf6-46ef-915b-cef77ab7e127", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -195537,7 +195537,7 @@ "_postman_previewlanguage": "json" }, { - "id": "38f3c329-4674-4cec-a536-9f787dd20716", + "id": "e42a242b-3284-4af7-9cbb-3506017e828a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -195582,7 +195582,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1dd9b916-e7eb-4725-9756-f4cea7df3c0d", + "id": "232b405a-063e-4544-ae0e-7715bd56d99e", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -195627,7 +195627,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9d23258b-1fa7-412e-a400-d87424c77e6e", + "id": "e07efa45-5445-472b-bfdf-c13ab59a05d5", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -195672,7 +195672,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eef96601-f32b-4551-a99f-107a24bce295", + "id": "e1e277ae-62f0-429a-808d-efe7b2d25d6c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -195723,7 +195723,7 @@ } }, { - "id": "a10dd141-6ffb-4b15-bdf8-f37c6332e25f", + "id": "cd439c5b-240f-430e-98d7-4de7447f0a04", "name": "Get Source Entitlement Request Configuration", "request": { "name": "Get Source Entitlement Request Configuration", @@ -195759,7 +195759,7 @@ }, "response": [ { - "id": "b1cda94e-d1e3-4bb8-98b7-796280ec28ce", + "id": "6385513a-29f1-4951-9c31-5a1b0f970486", "name": "Get default config", "originalRequest": { "url": { @@ -195804,7 +195804,7 @@ "_postman_previewlanguage": "json" }, { - "id": "98c594aa-6f88-4ba0-8b3b-cfeddb7f483d", + "id": "b54b1e04-5c94-482c-abd0-ca20e8830757", "name": "Get config with one approval", "originalRequest": { "url": { @@ -195849,7 +195849,7 @@ "_postman_previewlanguage": "json" }, { - "id": "882e3897-cf91-4e97-b71b-c96500a1cb8a", + "id": "cde742ac-e55d-4ecd-b444-d423e38abb2a", "name": "Get config with multiple approvals", "originalRequest": { "url": { @@ -195894,7 +195894,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d2dd60b9-10ac-4255-aa17-e93edc204ab7", + "id": "48beee15-76a9-47ff-837e-c95269974e91", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -195939,7 +195939,7 @@ "_postman_previewlanguage": "json" }, { - "id": "51f8e845-4628-45c8-b509-9a9b9e82dfc7", + "id": "e88ccaf3-604f-4ac9-a65a-5b8bcee64ace", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -195984,7 +195984,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9be109f4-448b-49f2-ae1b-c253606e00c9", + "id": "63a78bbd-68dc-4b9b-a15f-2fc83f596d2a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -196029,7 +196029,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c500f7c1-cfd7-4bae-b2ca-e37cc34a1bf0", + "id": "f8176b3a-fa23-4c67-9984-091b50f19330", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -196074,7 +196074,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dccc3ae5-2f0d-45ac-b4c6-9141656af872", + "id": "42d2a863-3e1b-4dcc-99c3-09518e0b5280", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -196125,7 +196125,7 @@ } }, { - "id": "a7431c71-9aa6-4c0e-827e-5171e2376018", + "id": "9dd05065-52a8-48ee-8c56-49794ddc9c85", "name": "Update Source Entitlement Request Configuration", "request": { "name": "Update Source Entitlement Request Configuration", @@ -196174,7 +196174,7 @@ }, "response": [ { - "id": "6f8a9036-ca01-4c48-aacb-1d91553260a7", + "id": "15b9caf6-88d7-4e8f-9cde-2eae9095792a", "name": "Set config with no approvals", "originalRequest": { "url": { @@ -196232,7 +196232,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d3387b6f-c7ae-46c0-9dbb-a98acfc08dc7", + "id": "68263a51-dbc4-4476-86e2-64016b1ecf61", "name": "Set config with one approval", "originalRequest": { "url": { @@ -196290,7 +196290,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9b342993-c0a4-4d04-bad7-246f318fe73c", + "id": "3fd4e35a-1881-41f4-9415-e21b9e59dd71", "name": "Set config with multiple approvals", "originalRequest": { "url": { @@ -196348,7 +196348,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9f71e45d-2b81-4903-9e32-40e1ed3b9546", + "id": "c0dac64f-85a2-4eed-8792-1cf93cb8d130", "name": "Set config with no approvals", "originalRequest": { "url": { @@ -196406,7 +196406,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ae6f60cb-1d3e-42a9-b6be-6d03819a4c50", + "id": "5acf7331-b463-4a39-95f3-828ffa2798ac", "name": "Set config with one approval", "originalRequest": { "url": { @@ -196464,7 +196464,7 @@ "_postman_previewlanguage": "json" }, { - "id": "71e1e0d9-18a3-44db-b540-0d33874ee3bc", + "id": "1ad2714f-554d-4f99-93b7-c2e3db9b3adb", "name": "Set config with multiple approvals", "originalRequest": { "url": { @@ -196522,7 +196522,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e734ff80-cd5a-46b8-88cc-ffbb8f64550e", + "id": "5f6d60a5-d6fb-4556-b808-bae7aaabff24", "name": "Set config with no approvals", "originalRequest": { "url": { @@ -196580,7 +196580,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c7c668f1-20ea-4aad-9cc2-a1fdf2507f2f", + "id": "201e8cf1-6ba0-42c4-812e-3713f6d049ca", "name": "Set config with one approval", "originalRequest": { "url": { @@ -196638,7 +196638,7 @@ "_postman_previewlanguage": "json" }, { - "id": "214fc78a-e92d-4a17-880f-49df06e70bdd", + "id": "13920f20-6fec-42a9-997c-e6720692ff05", "name": "Set config with multiple approvals", "originalRequest": { "url": { @@ -196696,7 +196696,7 @@ "_postman_previewlanguage": "json" }, { - "id": "71debdb1-5eaa-479e-85bf-99298fe81a6c", + "id": "749cabcd-e13c-4a2e-acc4-1f7f5e03b1a3", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -196754,7 +196754,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d09ee80f-b587-43b4-854c-0b0ff0834586", + "id": "5c29c323-c91b-4925-a0fe-d0ed56497398", "name": "Set config with one approval", "originalRequest": { "url": { @@ -196812,7 +196812,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9c51188c-cb7a-44e4-8491-9c80f58a23d4", + "id": "234baaeb-10d3-44b0-95e3-f4950131fe98", "name": "Set config with multiple approvals", "originalRequest": { "url": { @@ -196870,7 +196870,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9bb0dea3-18d0-4d58-97a8-a7a6968a1130", + "id": "1544a508-a567-40ca-b03d-3e9f7932d0e0", "name": "Set config with no approvals", "originalRequest": { "url": { @@ -196928,7 +196928,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5d7c64cf-c16f-46ef-9395-226ef520fdc9", + "id": "5cf9c0b5-d954-418b-88f9-29b146b6c898", "name": "Set config with one approval", "originalRequest": { "url": { @@ -196986,7 +196986,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a031297c-df14-481a-b8aa-ad99cbf462fb", + "id": "fb3c4909-051b-4126-8fc7-e81342cef2b5", "name": "Set config with multiple approvals", "originalRequest": { "url": { @@ -197044,7 +197044,7 @@ "_postman_previewlanguage": "json" }, { - "id": "debb6e91-be62-492d-b8f1-74ba2c0849fa", + "id": "af543bfa-0927-40e3-a830-d12e99f4ba6a", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -197102,7 +197102,7 @@ "_postman_previewlanguage": "json" }, { - "id": "065dfd0f-0c66-4e61-b495-f7fff7ba54b0", + "id": "e319acff-06f1-4008-8a12-5ca0f7873893", "name": "Set config with one approval", "originalRequest": { "url": { @@ -197160,7 +197160,7 @@ "_postman_previewlanguage": "json" }, { - "id": "86b1c234-fe7d-4588-ab6c-4cbe8ede94d5", + "id": "96484b81-3a2f-45ae-85f5-634b5c385060", "name": "Set config with multiple approvals", "originalRequest": { "url": { @@ -197224,7 +197224,7 @@ } }, { - "id": "ca48b190-b049-4339-821f-8b683b75350e", + "id": "79549a07-2d60-4660-b8e5-78c3c0dcae5a", "name": "Account Aggregation", "request": { "name": "Account Aggregation", @@ -197275,7 +197275,7 @@ "type": "text/plain" }, "key": "file", - "value": "quis", + "value": "veniam quis in", "type": "text" }, { @@ -197292,7 +197292,7 @@ }, "response": [ { - "id": "3ff1e766-97e1-4a89-9f4d-d12201b1eaca", + "id": "624a8308-2ff0-4ad8-b9b3-fc5d4a41df3e", "name": "Aggregate Accounts Task", "originalRequest": { "url": { @@ -197335,7 +197335,7 @@ "type": "text/plain" }, "key": "file", - "value": "quis", + "value": "veniam quis in", "type": "text" }, { @@ -197358,12 +197358,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\": \"1972-03-07T16:30:36.570Z\",\n \"launched\": \"1950-05-17T05:13:19.295Z\",\n \"completed\": \"2004-07-17T12:06:17.953Z\",\n \"completionStatus\": \"WARNING\",\n \"parentName\": \"Audit Report\",\n \"progress\": \"Initializing...\",\n \"attributes\": {\n \"appId\": \"c31386cb18bb403cbb6df4c86294ff82\",\n \"optimizedAggregation\": \"enabled\",\n \"voluptate_20a\": {}\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\": \"1998-03-19T02:02:13.683Z\",\n \"launched\": \"1997-03-17T10:47:01.424Z\",\n \"completed\": \"1989-01-21T00:44:24.651Z\",\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}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e8a66197-42a7-4990-8ee6-adcf8cd19a48", + "id": "09027aa6-4438-417d-929d-2a367f421c1c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -197406,7 +197406,7 @@ "type": "text/plain" }, "key": "file", - "value": "quis", + "value": "veniam quis in", "type": "text" }, { @@ -197434,7 +197434,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ee823714-57db-4580-902b-3197fd028cc7", + "id": "e153c321-05ea-4970-87d3-dc02403b870d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -197477,7 +197477,7 @@ "type": "text/plain" }, "key": "file", - "value": "quis", + "value": "veniam quis in", "type": "text" }, { @@ -197505,7 +197505,7 @@ "_postman_previewlanguage": "json" }, { - "id": "950b2e50-1fe4-49ff-8925-ca7548cd2138", + "id": "1b847ac0-f938-4790-95f4-fb66573a1859", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -197548,7 +197548,7 @@ "type": "text/plain" }, "key": "file", - "value": "quis", + "value": "veniam quis in", "type": "text" }, { @@ -197576,7 +197576,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1dd83ec6-dcc3-475b-a371-092820e1655c", + "id": "4c959436-9dc7-4ba7-bf15-3df0462f3b88", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -197619,7 +197619,7 @@ "type": "text/plain" }, "key": "file", - "value": "quis", + "value": "veniam quis in", "type": "text" }, { @@ -197647,7 +197647,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0b6a03f6-bbd1-4693-94ac-3c24dbacd246", + "id": "e38273cb-5422-4189-a1bf-7ceb9cf5d7b2", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -197690,7 +197690,7 @@ "type": "text/plain" }, "key": "file", - "value": "quis", + "value": "veniam quis in", "type": "text" }, { @@ -197724,7 +197724,7 @@ } }, { - "id": "10ccc554-4054-46c4-823d-8d6a80b27355", + "id": "17c892df-a0d0-45cc-b937-9a0383a75dad", "name": "Entitlement Aggregation", "request": { "name": "Entitlement Aggregation", @@ -197775,7 +197775,7 @@ "type": "text/plain" }, "key": "file", - "value": "aute consequat reprehe", + "value": "id Ut", "type": "text" } ] @@ -197783,7 +197783,7 @@ }, "response": [ { - "id": "0d83a651-6754-4235-800d-c52e88ab6cd7", + "id": "3f2e15cd-0ae6-4166-b107-49b13acde699", "name": "Aggregate Entitlements Task", "originalRequest": { "url": { @@ -197826,7 +197826,7 @@ "type": "text/plain" }, "key": "file", - "value": "aute consequat reprehe", + "value": "id Ut", "type": "text" } ] @@ -197845,7 +197845,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2eb5597f-20a5-452e-ae02-83919d509299", + "id": "c69c2d52-dae5-4183-8108-b6094585ea75", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -197888,7 +197888,7 @@ "type": "text/plain" }, "key": "file", - "value": "aute consequat reprehe", + "value": "id Ut", "type": "text" } ] @@ -197907,7 +197907,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d1c40542-8a02-484c-86eb-18fe9a310371", + "id": "8cd9ffed-7349-4c2b-b6dc-ba4e6aea12e5", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -197950,7 +197950,7 @@ "type": "text/plain" }, "key": "file", - "value": "aute consequat reprehe", + "value": "id Ut", "type": "text" } ] @@ -197969,7 +197969,7 @@ "_postman_previewlanguage": "json" }, { - "id": "741a98ae-a674-4c2c-a82f-b0f530509cdf", + "id": "45699228-6949-453d-8e68-65b1241d2568", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -198012,7 +198012,7 @@ "type": "text/plain" }, "key": "file", - "value": "aute consequat reprehe", + "value": "id Ut", "type": "text" } ] @@ -198031,7 +198031,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eca5e113-1079-408b-9074-04f677e859ab", + "id": "bf144be5-9937-4b71-94bc-bd88803f4821", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -198074,7 +198074,7 @@ "type": "text/plain" }, "key": "file", - "value": "aute consequat reprehe", + "value": "id Ut", "type": "text" } ] @@ -198093,7 +198093,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cbbd3e22-a107-4072-ac89-7ec99cd95d07", + "id": "d339da63-3020-45da-902f-9d5d524c2b16", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -198136,7 +198136,7 @@ "type": "text/plain" }, "key": "file", - "value": "aute consequat reprehe", + "value": "id Ut", "type": "text" } ] @@ -198161,7 +198161,7 @@ } }, { - "id": "63512c5e-948c-4cf6-b3e9-24064e6f9c7f", + "id": "2ebe5e56-ad97-449e-bf28-d40cb6c00eba", "name": "Process Uncorrelated Accounts", "request": { "name": "Process Uncorrelated Accounts", @@ -198212,7 +198212,7 @@ "type": "text/plain" }, "key": "file", - "value": "do sed minim", + "value": "anim esse in sunt", "type": "text" } ] @@ -198220,7 +198220,7 @@ }, "response": [ { - "id": "06022227-e625-41e6-8472-6ecef9bd4c03", + "id": "a9e6f1e3-d445-4f14-9dea-6108c551c969", "name": "Uncorrelated Accounts Task", "originalRequest": { "url": { @@ -198263,7 +198263,7 @@ "type": "text/plain" }, "key": "file", - "value": "do sed minim", + "value": "anim esse in sunt", "type": "text" } ] @@ -198277,12 +198277,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\": \"2000-02-19T12:26:27.152Z\",\n \"launched\": \"2019-06-29T15:17:27.562Z\",\n \"completed\": \"1990-10-04T03:45:38.736Z\",\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\": \"1968-11-02T08:57:06.732Z\",\n \"launched\": \"2019-04-02T03:46:59.712Z\",\n \"completed\": \"2005-12-08T04:19:57.489Z\",\n \"completionStatus\": \"TEMP_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": "5d6cc2f9-4f9f-490e-9478-3520b78243b3", + "id": "c649650f-82c0-426f-8bad-bc0b61b15b44", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -198325,7 +198325,7 @@ "type": "text/plain" }, "key": "file", - "value": "do sed minim", + "value": "anim esse in sunt", "type": "text" } ] @@ -198344,7 +198344,7 @@ "_postman_previewlanguage": "json" }, { - "id": "960dfac2-da06-4ca8-ba50-659f41e5e70e", + "id": "00091f79-96c9-4175-895e-247a64f38f2d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -198387,7 +198387,7 @@ "type": "text/plain" }, "key": "file", - "value": "do sed minim", + "value": "anim esse in sunt", "type": "text" } ] @@ -198406,7 +198406,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6996f94e-5a6a-49c0-86b8-e74a755af713", + "id": "533beb1a-8a08-452d-bf82-0aaa3aa11ca9", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -198449,7 +198449,7 @@ "type": "text/plain" }, "key": "file", - "value": "do sed minim", + "value": "anim esse in sunt", "type": "text" } ] @@ -198468,7 +198468,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cf361782-a1b2-475b-bed0-1ead2d633498", + "id": "13fc383f-0835-4969-b303-8510ded20d49", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -198511,7 +198511,7 @@ "type": "text/plain" }, "key": "file", - "value": "do sed minim", + "value": "anim esse in sunt", "type": "text" } ] @@ -198530,7 +198530,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8b6bc2e0-a18a-4f2b-b511-826d348fab66", + "id": "94e7b570-e5d6-4966-ad8a-c5a4c491c98d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -198573,7 +198573,7 @@ "type": "text/plain" }, "key": "file", - "value": "do sed minim", + "value": "anim esse in sunt", "type": "text" } ] @@ -198598,7 +198598,7 @@ } }, { - "id": "01f6305c-daf9-41d0-bec7-7ea67b7bcbbb", + "id": "2888071e-5cb9-4e9d-b9bf-638c7e91c228", "name": "Get Source Correlation Configuration", "request": { "name": "Get Source Correlation Configuration", @@ -198640,7 +198640,7 @@ }, "response": [ { - "id": "b35b859e-69d7-4562-a253-3329d6142bd7", + "id": "a16de6d6-ff6d-4f73-91d0-6809e0a85f42", "name": "Correlation configuration for a source", "originalRequest": { "url": { @@ -198685,7 +198685,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eba5c90c-3d7c-41ba-b352-8d525a593b49", + "id": "97756c32-bd6d-463e-8ce0-9a386003fd7b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -198730,7 +198730,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b01c8148-4170-4c03-beef-bdb723efe50b", + "id": "3e502dbb-6c91-4df7-bac5-636e61710cae", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -198775,7 +198775,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2d75da64-810c-4dba-9605-766bb5c9be0a", + "id": "d7464de2-6439-4388-a139-60a3a20b2d7a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -198820,7 +198820,7 @@ "_postman_previewlanguage": "json" }, { - "id": "866c7c21-361d-4e77-9d8e-e72f21181710", + "id": "0682062b-d1e1-4092-b95b-9be645401f87", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -198865,7 +198865,7 @@ "_postman_previewlanguage": "json" }, { - "id": "37f425ea-ba4a-46ac-b7e0-19c3f8807b24", + "id": "4de735b4-18c6-45ea-a540-12ac255d8da6", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -198910,7 +198910,7 @@ "_postman_previewlanguage": "json" }, { - "id": "42cb66e3-5488-45a9-90b0-699666840469", + "id": "4e6dc00d-6616-43db-b661-75e7a20c3a2a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -198961,7 +198961,7 @@ } }, { - "id": "5ac216f0-dd56-4b65-b692-ded6bcca41e2", + "id": "26bcab2c-6f54-4495-b510-ff4c5dbe0cf6", "name": "Update Source Correlation Configuration", "request": { "name": "Update Source Correlation Configuration", @@ -199016,7 +199016,7 @@ }, "response": [ { - "id": "5a916983-1248-42db-8171-29e82409fe46", + "id": "52bbb509-1340-4baf-8f22-5827709dbc56", "name": "Updated correlation configuration for a source", "originalRequest": { "url": { @@ -199074,7 +199074,7 @@ "_postman_previewlanguage": "json" }, { - "id": "50eaff90-cd43-45be-a140-d82539480ec7", + "id": "07262dc5-eb01-4995-a9d8-8336b4c7d3d9", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -199132,7 +199132,7 @@ "_postman_previewlanguage": "json" }, { - "id": "52bd79e9-ce7a-4297-8436-690fcdd77645", + "id": "9d2c545c-22a8-4bdc-aca4-37d8a3a832ac", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -199190,7 +199190,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ed964417-2841-4358-b43a-c24ed665da82", + "id": "534e1479-8388-4863-8946-b7141557329e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -199248,7 +199248,7 @@ "_postman_previewlanguage": "json" }, { - "id": "184db72e-88c1-424c-97df-2a5ae090bc27", + "id": "3f05ab07-7e32-4cdd-8bcc-cdb2bec6627b", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -199306,7 +199306,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5a6dbddf-6d99-4108-b0c6-275d3d9f083d", + "id": "dbc0ed1c-29e8-4ed5-83f6-2501d3f7a873", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -199364,7 +199364,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5ed01545-c072-4fa1-b130-f8499b9cb022", + "id": "442dfdf6-83ca-4f54-b786-18df926f5244", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -199434,7 +199434,7 @@ "description": "Import and export configuration for some objects between tenants.", "item": [ { - "id": "e55c7cf4-ac00-4505-904b-f44f2a88a694", + "id": "745943ba-a4c9-4171-a770-ade4a3e9ac8e", "name": "Initiates configuration objects export job", "request": { "name": "Initiates configuration objects export job", @@ -199477,7 +199477,7 @@ }, "response": [ { - "id": "87212e19-280a-407a-b810-9ed23e7ced98", + "id": "42102a7b-930e-4be0-b5c5-a680c657178c", "name": "Export all objects available", "originalRequest": { "url": { @@ -199534,7 +199534,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d3529611-84f7-4e84-8c8e-4be9a2364e92", + "id": "ef31e787-6c85-40a4-a413-e28e34d7adc6", "name": "Export sources by ID", "originalRequest": { "url": { @@ -199591,7 +199591,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a1d17f2a-9369-4f73-b829-e7efb39f8afa", + "id": "05a5aa09-01f1-4ee4-a57f-56162907c0d4", "name": "Export transforms by name", "originalRequest": { "url": { @@ -199648,7 +199648,7 @@ "_postman_previewlanguage": "json" }, { - "id": "717f0df2-4028-485c-9c02-a8b0719bbda4", + "id": "9de16d99-ed7d-4ad2-847d-f78fc3620f3a", "name": "Export trigger subscriptions triggers and transforms with custom options", "originalRequest": { "url": { @@ -199705,7 +199705,7 @@ "_postman_previewlanguage": "json" }, { - "id": "acc1881b-b58f-4e0a-9223-ed980b633f41", + "id": "5d3342a8-dd5e-4a84-9c40-47a2ee09199d", "name": "Export all objects available", "originalRequest": { "url": { @@ -199762,7 +199762,7 @@ "_postman_previewlanguage": "json" }, { - "id": "badf0290-a858-4cf0-8bb0-fda97f9e0605", + "id": "42e63caa-6827-4dfb-bd0b-21cfdea5c856", "name": "Export sources by ID", "originalRequest": { "url": { @@ -199819,7 +199819,7 @@ "_postman_previewlanguage": "json" }, { - "id": "490f283c-e868-4ff2-9eaf-f888de947102", + "id": "0fed205d-47ca-47cf-818a-da2eafa5a207", "name": "Export transforms by name", "originalRequest": { "url": { @@ -199876,7 +199876,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0aa68440-a91b-4a08-86a8-7ff0fc7c22bb", + "id": "6b334f9c-d366-4379-95c0-79bc0b28c225", "name": "Export trigger subscriptions triggers and transforms with custom options", "originalRequest": { "url": { @@ -199933,7 +199933,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2f746675-2ab1-4664-a807-e2099a77e47f", + "id": "442419df-fe67-43d9-bef5-21e3ef5895e7", "name": "Export all objects available", "originalRequest": { "url": { @@ -199990,7 +199990,7 @@ "_postman_previewlanguage": "json" }, { - "id": "de544507-8646-42f4-884b-885157d9ab2a", + "id": "c2e9c80b-b623-4d74-9864-7ccd1cad0ad0", "name": "Export sources by ID", "originalRequest": { "url": { @@ -200047,7 +200047,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bdaa5077-7bb5-442e-9727-1480d7dcecb0", + "id": "e1ecb655-a9ee-4ad7-b936-4b14d8d11527", "name": "Export transforms by name", "originalRequest": { "url": { @@ -200104,7 +200104,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d858f132-52b0-4025-b0f6-5a6b202a42fc", + "id": "2d5e7582-d66f-4ddc-b5ca-93cd4532f4f9", "name": "Export trigger subscriptions triggers and transforms with custom options", "originalRequest": { "url": { @@ -200161,7 +200161,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b3677b36-4f8c-4fb9-90b2-4104501327aa", + "id": "497230e0-d780-47b3-be7c-5f52b7d536d4", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -200218,7 +200218,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3e30fcf1-0a77-4151-9588-7cc8d7492de0", + "id": "9362e2e1-457a-4340-b1d8-c6cff4b9f966", "name": "Export sources by ID", "originalRequest": { "url": { @@ -200275,7 +200275,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d4f1e2dc-6acf-40a3-9607-939272624125", + "id": "a74a871c-ef94-4a33-b363-e58735c4e252", "name": "Export transforms by name", "originalRequest": { "url": { @@ -200332,7 +200332,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2443d3d3-a837-4109-9672-c1d933b8e95b", + "id": "42543e60-e224-4f72-9400-3e02d7c39468", "name": "Export trigger subscriptions triggers and transforms with custom options", "originalRequest": { "url": { @@ -200389,7 +200389,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6f0292ba-9e64-4350-8678-25c5e9a7abb8", + "id": "f122f56a-616f-490f-8af7-6b33f5726422", "name": "An example of a 404 response object", "originalRequest": { "url": { @@ -200446,7 +200446,7 @@ "_postman_previewlanguage": "json" }, { - "id": "30a47037-5604-4330-8a4f-f4986dd0214c", + "id": "067d56af-b043-47d8-a927-255c3d4a62bb", "name": "Export sources by ID", "originalRequest": { "url": { @@ -200503,7 +200503,7 @@ "_postman_previewlanguage": "json" }, { - "id": "077d2aae-c702-4ee0-a3b1-189e187303b3", + "id": "18f9bed0-36ff-4e12-ba1a-a6acf926a896", "name": "Export transforms by name", "originalRequest": { "url": { @@ -200560,7 +200560,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c03070e7-65d0-48d8-a3c7-67cea684aae5", + "id": "7ad310dd-8e52-4ab4-9c20-8f2593482f16", "name": "Export trigger subscriptions triggers and transforms with custom options", "originalRequest": { "url": { @@ -200617,7 +200617,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e07c37a3-a2fb-4d75-a476-01448aabd1a4", + "id": "21277cc8-2863-4a05-848a-6d9b44c247fd", "name": "Export all objects available", "originalRequest": { "url": { @@ -200674,7 +200674,7 @@ "_postman_previewlanguage": "json" }, { - "id": "899e3d06-f7f0-4226-8b37-0636ac2e15c4", + "id": "ae1a5c05-7351-46b5-8bd8-aa8f17b66d71", "name": "Export sources by ID", "originalRequest": { "url": { @@ -200731,7 +200731,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6a494e50-264f-4991-a57c-466faff266ba", + "id": "a9ed2ace-dbcb-40aa-a64a-4fe2a57c9109", "name": "Export transforms by name", "originalRequest": { "url": { @@ -200788,7 +200788,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d7b193ab-495e-4770-ab9d-c3b86eaf4f37", + "id": "09499c14-6e4b-4b93-9507-d77ffca1a1a1", "name": "Export trigger subscriptions triggers and transforms with custom options", "originalRequest": { "url": { @@ -200845,7 +200845,7 @@ "_postman_previewlanguage": "json" }, { - "id": "97cf6890-d090-461d-8d0d-961ff76cb388", + "id": "7767b483-55a5-4b7d-b7d5-273adb20b276", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -200902,7 +200902,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3dbece55-b6f2-4675-942f-1021355b06d8", + "id": "75f2530a-e10c-4c30-85f3-3e84ad0d3aab", "name": "Export sources by ID", "originalRequest": { "url": { @@ -200959,7 +200959,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a9c1ee4b-f166-418d-bcba-ee75aed59e5d", + "id": "43b39237-7596-4c22-b565-5517427b76bc", "name": "Export transforms by name", "originalRequest": { "url": { @@ -201016,7 +201016,7 @@ "_postman_previewlanguage": "json" }, { - "id": "33b6437c-7bd5-4920-9982-5f0d90f4a21e", + "id": "275e13b2-c0c1-4dbd-b2f0-eba0a17649ff", "name": "Export trigger subscriptions triggers and transforms with custom options", "originalRequest": { "url": { @@ -201079,7 +201079,7 @@ } }, { - "id": "ecb7d416-7572-4842-a377-294fd6871e69", + "id": "821290e9-37b4-499f-9487-9697854fbda5", "name": "Get export job status", "request": { "name": "Get export job status", @@ -201121,7 +201121,7 @@ }, "response": [ { - "id": "fce78185-585c-4280-8fbb-891047b84966", + "id": "756c6f51-ec91-43f0-9722-a5a328b1a3bf", "name": "Export job status successfully returned.", "originalRequest": { "url": { @@ -201166,7 +201166,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ecbf1542-093c-4c36-ae89-cd220b7eee27", + "id": "a84c11f6-581f-446f-b261-161af9059f35", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -201211,7 +201211,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d09ed5b0-8ce9-4a15-aeaa-ad085d05396d", + "id": "2a601567-ac36-4e90-8dd2-8408e3d17b7f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -201256,7 +201256,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3ce6fc3e-454f-43e6-b744-40dbf6ddd8d2", + "id": "cb324267-2231-4fbd-b8b5-18511b6994e9", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -201301,7 +201301,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e28cf063-6cc8-414c-bbe6-7a5930f6e4b8", + "id": "c31e32be-08ee-47cd-95b3-f1259b537c0f", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -201346,7 +201346,7 @@ "_postman_previewlanguage": "json" }, { - "id": "df9d6952-25ec-413b-aef5-56f700ab2ae2", + "id": "7fa85e5c-91e9-49bc-add8-f750c09dfe00", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -201391,7 +201391,7 @@ "_postman_previewlanguage": "json" }, { - "id": "37098456-2fa0-49ef-adea-28b35934ac1f", + "id": "b62132a9-6d2c-4271-8230-d0855ea91f74", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -201442,7 +201442,7 @@ } }, { - "id": "af0a627d-2cd1-4a66-af34-38e793367c49", + "id": "376b4c08-e8e4-4993-9df4-ddd96afe7a93", "name": "Download export job result.", "request": { "name": "Download export job result.", @@ -201485,7 +201485,7 @@ }, "response": [ { - "id": "9695e44e-50f5-464d-97c9-ba563771ce67", + "id": "d08981d7-a2b5-4e17-a1a1-0278fd7d861b", "name": "Exported JSON objects.", "originalRequest": { "url": { @@ -201526,12 +201526,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 \"pariatur__2_\": -59855352.37676394\n }\n },\n {\n \"version\": 1,\n \"self\": {\n \"type\": \"SOURCE\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"HR Active Directory\"\n },\n \"object\": {\n \"quis_09\": -1749075.614068076,\n \"ut_27\": \"do tempor est sint occaecat\"\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 \"nostrud__8\": -69153893.44722782\n }\n },\n {\n \"version\": 1,\n \"self\": {\n \"type\": \"SOURCE\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"HR Active Directory\"\n },\n \"object\": {\n \"exe1\": -32482243.544371992,\n \"eiusmod9c\": \"do\",\n \"qui749\": \"mollit incididunt\"\n }\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "dd1f8308-4be5-4a70-8f42-c64a4bba1d15", + "id": "7d479534-4459-43b3-9364-d6cd46e36224", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -201577,7 +201577,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cbf9cf7c-ee79-4399-955d-801ad0910ae4", + "id": "dba4a6d7-1a66-429a-8202-db210f4c2d3b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -201623,7 +201623,7 @@ "_postman_previewlanguage": "json" }, { - "id": "11555ecd-f632-4c0b-9304-a9d58ca72b08", + "id": "472286f9-e7fe-4109-b6af-463e706a54e0", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -201669,7 +201669,7 @@ "_postman_previewlanguage": "json" }, { - "id": "574ea81c-914a-4f3a-864a-a0c5173c2afd", + "id": "cb083ae7-3bc7-4bef-80cf-dfba6ab5e2b9", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -201715,7 +201715,7 @@ "_postman_previewlanguage": "json" }, { - "id": "90c43f84-3ba3-4d37-8a02-c83ee2680af9", + "id": "16d103f6-abfd-4abf-a5a4-023137b0cabb", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -201761,7 +201761,7 @@ "_postman_previewlanguage": "json" }, { - "id": "28fe4f52-a711-40fb-9075-35a75da32075", + "id": "cba72883-056d-409f-be2b-d94bb4657b21", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -201813,7 +201813,7 @@ } }, { - "id": "8fd32fac-4e35-488c-9041-9d3b61458a19", + "id": "ea8679ce-5411-4746-8ef7-81496fea7d78", "name": "Initiates configuration objects import job", "request": { "name": "Initiates configuration objects import job", @@ -201862,7 +201862,7 @@ "type": "text/plain" }, "key": "data", - "value": "in anim laboris sit eiusmod", + "value": "Ut enim in magna id", "type": "text" }, { @@ -201879,7 +201879,7 @@ }, "response": [ { - "id": "6bc67479-123f-4bdf-bec0-2eda695b1687", + "id": "d277cc86-1568-4ba5-b1bb-d48550a47132", "name": "Import job accepted and queued for processing.", "originalRequest": { "url": { @@ -201931,7 +201931,7 @@ "type": "text/plain" }, "key": "data", - "value": "in anim laboris sit eiusmod", + "value": "Ut enim in magna id", "type": "text" }, { @@ -201959,7 +201959,7 @@ "_postman_previewlanguage": "json" }, { - "id": "59f095ec-7575-478c-be04-55a2b3ab7e55", + "id": "c93ae31e-04a8-4876-bcd2-5f8201bdad23", "name": "Client Error - Returned if the request body is invalid.\n", "originalRequest": { "url": { @@ -202011,7 +202011,7 @@ "type": "text/plain" }, "key": "data", - "value": "in anim laboris sit eiusmod", + "value": "Ut enim in magna id", "type": "text" }, { @@ -202039,7 +202039,7 @@ "_postman_previewlanguage": "json" }, { - "id": "01478e15-70c4-4e55-9a17-143a74ab9257", + "id": "15aee79a-50a3-4c4f-be12-072b5fe2e0d1", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -202091,7 +202091,7 @@ "type": "text/plain" }, "key": "data", - "value": "in anim laboris sit eiusmod", + "value": "Ut enim in magna id", "type": "text" }, { @@ -202119,7 +202119,7 @@ "_postman_previewlanguage": "json" }, { - "id": "547cfd5f-63a0-46ca-8667-4fe58c460058", + "id": "78fb383d-1f36-4307-9377-8f5de83c8fa5", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -202171,7 +202171,7 @@ "type": "text/plain" }, "key": "data", - "value": "in anim laboris sit eiusmod", + "value": "Ut enim in magna id", "type": "text" }, { @@ -202199,7 +202199,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3b7ab20a-2325-429d-87b2-cdeed7911660", + "id": "c7ff1849-22e6-4564-85b4-2a5f24da5ce1", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -202251,7 +202251,7 @@ "type": "text/plain" }, "key": "data", - "value": "in anim laboris sit eiusmod", + "value": "Ut enim in magna id", "type": "text" }, { @@ -202279,7 +202279,7 @@ "_postman_previewlanguage": "json" }, { - "id": "067bdad1-307e-44b7-bd02-ed81076a13a3", + "id": "b21b50a7-3a0b-4569-be46-b6b428364182", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -202331,7 +202331,7 @@ "type": "text/plain" }, "key": "data", - "value": "in anim laboris sit eiusmod", + "value": "Ut enim in magna id", "type": "text" }, { @@ -202359,7 +202359,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b8c3d2a7-e507-4536-abd3-9a37bac06f14", + "id": "b3b5b5d6-af76-4f2e-91bb-27036a150575", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -202411,7 +202411,7 @@ "type": "text/plain" }, "key": "data", - "value": "in anim laboris sit eiusmod", + "value": "Ut enim in magna id", "type": "text" }, { @@ -202445,7 +202445,7 @@ } }, { - "id": "fd735836-799c-4c1e-8d3a-0374bfcf4615", + "id": "7d0634f0-dca7-4037-b7f4-5e1132433785", "name": "Get import job status", "request": { "name": "Get import job status", @@ -202487,7 +202487,7 @@ }, "response": [ { - "id": "f7a08998-a281-4fe7-8a53-55b964f99b7c", + "id": "3fcb7315-7968-4ad9-b14a-0dd9500571db", "name": "Import job status successfully returned.", "originalRequest": { "url": { @@ -202532,7 +202532,7 @@ "_postman_previewlanguage": "json" }, { - "id": "50ac6f8a-e87d-4dcd-ac40-12012038e563", + "id": "4a7cc860-a13d-45cf-a458-daac2b7f879b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -202577,7 +202577,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f6388588-7ad1-4c53-99dc-65b9b9c77883", + "id": "f9ba848d-b34d-436e-8ce8-f2021751db00", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -202622,7 +202622,7 @@ "_postman_previewlanguage": "json" }, { - "id": "56a383a3-0ea2-43ce-913d-0a8f476c7795", + "id": "16ad37c7-3428-49dd-bb82-c89698cd1db3", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -202667,7 +202667,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e4079bc1-ae32-4f05-bb16-c73829de3367", + "id": "d2abfdda-1638-4212-a9d7-ebd5bea352be", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -202712,7 +202712,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6b9a318b-1228-422b-9cc5-975dd2221470", + "id": "a9def85e-8a64-4230-aac8-d3ac6e47d42a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -202757,7 +202757,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d55bed98-0e90-46d2-b922-d2dc272210d4", + "id": "636209e3-8002-45c0-95ca-11c63af0bce1", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -202808,7 +202808,7 @@ } }, { - "id": "84914942-084a-46f1-a5c5-f56b2239b9e8", + "id": "a89378db-0e3c-4e62-9824-dace4614eaa7", "name": "Download import job result", "request": { "name": "Download import job result", @@ -202851,7 +202851,7 @@ }, "response": [ { - "id": "87de76fd-96a0-4697-9883-6d1442af65cc", + "id": "f6a88325-eab8-425f-913c-1137e908eef3", "name": "Import results JSON object, containing detailed results of the import operation.", "originalRequest": { "url": { @@ -202892,12 +202892,12 @@ "value": "application/json" } ], - "body": "{\n \"results\": {\n \"aliqua328\": {\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 \"proident_5\": {},\n \"dolore_df\": {},\n \"inba\": {}\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 \"Lorem_1b9\": {}\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 \"irure_e12\": {},\n \"nulla5d\": {}\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 \"dolord5\": {}\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 \"cupidatat_33\": {},\n \"consequat_b2_\": {}\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_e3\": {},\n \"deserunt86\": {}\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 \"esse_6\": {\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 \"est026\": {}\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 \"officia_\": {}\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 \"ad_\": {},\n \"aliquip_7\": {}\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 \"nulla7d\": {},\n \"mollit_00d\": {}\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 \"cupidatat__\": {}\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 \"commodo3a\": {},\n \"sunt_1\": {},\n \"inc\": {}\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 \"adipisicing28_\": {\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 \"utc\": {},\n \"adipisicing_d78\": {},\n \"dolore1\": {}\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 \"ipsum_ca\": {}\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 \"cillum_75\": {}\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 \"exercitation_3\": {}\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 \"aute_fc\": {},\n \"consequat_6\": {}\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 \"ut_f\": {},\n \"labore_7\": {}\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 \"est_f2f\": {\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 \"adipisicing_ce8\": {},\n \"non_5\": {}\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 \"pariatur_a1c\": {}\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 \"nisidea\": {}\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 \"sunt_b\": {},\n \"sit_e\": {}\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 \"officia_\": {},\n \"in_6c\": {}\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 \"reprehenderitf8\": {},\n \"minim_f_2\": {}\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 \"consequat5\": {\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 \"in_ebc\": {},\n \"eiusmodd4\": {},\n \"Excepteur482\": {}\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 \"in7\": {},\n \"mollit__34\": {}\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 \"veniamb\": {},\n \"doe9\": {}\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_1\": {},\n \"ea_a\": {}\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 \"Ut76\": {}\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 \"sunt_1\": {}\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": "9f03ee3e-6366-4e27-8640-b7ac0c449471", + "id": "d024f091-784d-40d3-8d6c-26752cc11eac", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -202943,7 +202943,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e9048647-99b9-4a2c-a239-2fe62bcc7fee", + "id": "40d4109f-6eae-400e-9130-20f8521189ac", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -202989,7 +202989,7 @@ "_postman_previewlanguage": "json" }, { - "id": "80b69f8e-ac57-41ba-823f-4ba0974f3c3c", + "id": "00fa8bc3-4001-4311-8021-46683773dc87", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -203035,7 +203035,7 @@ "_postman_previewlanguage": "json" }, { - "id": "acc9f5b6-3f09-4e96-9ed8-7b7e1ff9eb12", + "id": "3fa32b40-ee9b-4dbb-9590-48e071e9488a", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -203081,7 +203081,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fb3ba6f1-8250-440c-a7d6-67999ba02a29", + "id": "4a0077f9-6ca3-48c3-9f78-b7e34ce77413", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -203127,7 +203127,7 @@ "_postman_previewlanguage": "json" }, { - "id": "53959e3e-a580-441d-9cfd-748b29409f25", + "id": "c66280f2-b6db-45a8-a998-ed503e7fc6c4", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -203179,7 +203179,7 @@ } }, { - "id": "3f18418a-1087-4ee1-b03b-a248f376e56f", + "id": "18d72504-7369-4eae-9f2b-2f2021fc965b", "name": "Get config object details", "request": { "name": "Get config object details", @@ -203209,7 +203209,7 @@ }, "response": [ { - "id": "a5ef80f4-db37-4c71-bf8e-26049f20efa8", + "id": "12b96d61-d218-42b0-8db3-ec3d0a771143", "name": "Object configurations returned successfully.", "originalRequest": { "url": { @@ -203253,7 +203253,7 @@ "_postman_previewlanguage": "json" }, { - "id": "071394ad-bfd9-4ae2-a785-d7e61ad121c6", + "id": "e2ec59bd-47eb-4553-a026-0156b579b656", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -203297,7 +203297,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7e357b67-ac38-4f95-a952-b6469da0ca36", + "id": "7f82aaec-f8a5-448a-b811-1012322045b4", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -203341,7 +203341,7 @@ "_postman_previewlanguage": "json" }, { - "id": "269ea218-7042-4a7c-ba7d-e68d2bb65136", + "id": "ffc403d0-a22f-4124-9a90-637bce40f27d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -203385,7 +203385,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ba61532a-e471-4b7f-8778-638e9f44f197", + "id": "7ca2e91d-eff9-476c-b219-56473a53a829", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -203429,7 +203429,7 @@ "_postman_previewlanguage": "json" }, { - "id": "53181e27-b7bf-4966-a250-8e203bba7ad8", + "id": "adba2b2c-edd3-42b4-8228-7868b4fdc402", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -203473,7 +203473,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cb9329f6-b26e-4b29-90f8-bbf83cca771d", + "id": "f6497a45-baa7-44b8-afb8-5608a46c2bc8", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -203529,7 +203529,7 @@ "description": "Use this API to leverage power of LLM to generate suggested entitlement description.\n", "item": [ { - "id": "ff358e63-f122-437a-98d9-91703c75b465", + "id": "22307597-0ba6-4d93-aeb8-036dd1b8db1e", "name": "Submit Sed Batch Stats Request", "request": { "name": "Submit Sed Batch Stats Request", @@ -203571,7 +203571,7 @@ }, "response": [ { - "id": "ccf17e5d-66c9-4ed8-ad53-769cc6cbbed9", + "id": "86b44a00-966e-4f0a-bcbf-255a2281e059", "name": "Stats of Sed batch.", "originalRequest": { "url": { @@ -203611,12 +203611,12 @@ "value": "application/json" } ], - "body": "{\n \"batchComplete\": true,\n \"batchId\": \"42ed6480-e043-8f76-c92f-06df4b62b2d1\",\n \"discoveredCount\": 100,\n \"discoveryComplete\": true,\n \"processedCount\": 100\n}", + "body": "{\n \"batchComplete\": true,\n \"batchId\": \"d8b00582-b319-b061-2e01-573d73083815\",\n \"discoveredCount\": 100,\n \"discoveryComplete\": true,\n \"processedCount\": 100\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "545c9266-571a-40a1-89a5-20b0c339a876", + "id": "02c1c980-854d-4201-8440-2310ea8d8673", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -203661,7 +203661,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bfbc8682-7971-4093-84be-fbef9bee208e", + "id": "01951e12-15da-409d-b528-869da14a1c90", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -203706,7 +203706,7 @@ "_postman_previewlanguage": "json" }, { - "id": "da79bd5e-ff32-488a-806f-5a4508c80f09", + "id": "208bca45-a551-4a34-827a-283163d5bc18", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -203751,7 +203751,7 @@ "_postman_previewlanguage": "json" }, { - "id": "06a03081-4b9e-43b5-9119-7d4bc7891c5d", + "id": "93e3ee28-3f1a-443b-89e3-c66d6c1b8625", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -203796,7 +203796,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4ed8b465-3a65-4fa0-b51e-0437b25bf229", + "id": "45f757ae-b632-4677-91d8-823457ca0b2f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -203841,7 +203841,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ef0497da-bb31-4c57-9557-a23f75822acf", + "id": "ba21aa6e-dab6-4976-8819-9f58a5ed6553", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -203892,7 +203892,7 @@ } }, { - "id": "b1bbb182-5a96-46d7-887b-d24a893b00b4", + "id": "8984bca9-c689-48b2-9c14-9ecd7d9cf802", "name": "List Sed Batch Request", "request": { "name": "List Sed Batch Request", @@ -203921,7 +203921,7 @@ }, "response": [ { - "id": "df95d11e-285a-47d5-a741-e88f02d43c25", + "id": "ef47de21-6d53-45c4-95cc-168aa35972bf", "name": "Status of batch", "originalRequest": { "url": { @@ -203964,7 +203964,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b1549c80-b881-42eb-85f6-7c85e41914d5", + "id": "921d91ed-1ea1-4ac5-acb3-3fa32af3aee2", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -204007,7 +204007,7 @@ "_postman_previewlanguage": "json" }, { - "id": "16b3031e-37ae-481f-b894-da1da528e584", + "id": "1d0013c7-ee05-426d-b166-c6a5d0444654", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -204050,7 +204050,7 @@ "_postman_previewlanguage": "json" }, { - "id": "47136ed8-5f20-454b-aeba-3c63cedbb7ee", + "id": "3d54969c-720f-4365-8ca4-35f4cf94171c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -204093,7 +204093,7 @@ "_postman_previewlanguage": "json" }, { - "id": "23431b73-3ff0-4163-9063-bfcb21540746", + "id": "e34cc5bc-7635-42d9-8ab1-b047cd7b22a9", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -204136,7 +204136,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ed1cadbb-384c-49fc-91bf-acf0196f28ed", + "id": "c0169db2-92ff-46cc-b062-d0bd957814af", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -204179,7 +204179,7 @@ "_postman_previewlanguage": "json" }, { - "id": "07e3e144-6337-48c2-ac8e-922327a967a6", + "id": "7901f853-cb84-4fd0-864c-1b4ec62f6dd4", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -204228,7 +204228,7 @@ } }, { - "id": "fa4932a3-777e-4afc-9c3f-d12df7664540", + "id": "98a0d2ca-d4c8-4366-a5c8-79e7efdb7456", "name": "Submit Sed Batch Request", "request": { "name": "Submit Sed Batch Request", @@ -204270,7 +204270,7 @@ }, "response": [ { - "id": "3eb29806-6737-4882-bb37-e3f23bc9c587", + "id": "cbf935bd-8582-446c-ae87-b9165125fd0f", "name": "Sed Batch Response", "originalRequest": { "url": { @@ -204321,12 +204321,12 @@ "value": "application/json" } ], - "body": "{\n \"batchId\": \"urn:uuid:799da561-1c44-bd1f-27b0-49fb537d5eb9\"\n}", + "body": "{\n \"batchId\": \"urn:uuid:25c34350-1826-47c8-83a6-496012e13dae\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "1c99d641-395b-4900-8dc1-a25635721f25", + "id": "96157b2d-f239-4bf8-b43d-61c8dd4ffb13", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -204382,7 +204382,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9565e5e6-fdb5-4778-80a1-d01c230eeb96", + "id": "c9410139-9ed4-4acd-bf8a-b432573d29d5", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -204438,7 +204438,7 @@ "_postman_previewlanguage": "json" }, { - "id": "baa9d069-7577-4cd5-b6e0-122ac772f9d6", + "id": "67ea183d-ddd0-4684-9da1-60588ef598d3", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -204494,7 +204494,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6053ff1c-9b24-4287-9335-2ffb480a17f1", + "id": "f88469dc-3910-4ac3-9577-1d10740b789f", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -204550,7 +204550,7 @@ "_postman_previewlanguage": "json" }, { - "id": "54e73e0a-d6fe-43b8-985d-a7a6d95e0544", + "id": "0efb3fb3-cc90-448e-9dc0-9f9b2213a68c", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -204606,7 +204606,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a170ddce-4fc7-4dc9-918c-3831220d2bc6", + "id": "f76acf7e-5287-46fe-9af7-f72240b8f796", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -204668,7 +204668,7 @@ } }, { - "id": "2a083e14-458a-4127-ac5a-592825c81c3a", + "id": "1c959b03-72da-4add-8376-07102d1bce84", "name": "Submit Bulk Approval Request", "request": { "name": "Submit Bulk Approval Request", @@ -204699,7 +204699,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"items\": [\n \"urn:uuid:f38c69f9-14fb-42dd-470e-88bb7baa1224\",\n \"urn:uuid:866536dd-5bdc-9fd4-385b-033558f738f1\"\n ]\n },\n {\n \"items\": [\n \"d7eeaa99-cfb4-e181-b1f4-9c63ec341323\",\n \"fa13e5d5-3968-cdb1-91a7-283c27d85c82\"\n ]\n }\n]", + "raw": "[\n {\n \"items\": [\n \"urn:uuid:33c84d5c-c9ee-8a64-c37b-3a9fb4f2be9f\",\n \"1475906c-14b0-fe44-6e98-84cc3c4995b9\"\n ]\n },\n {\n \"items\": [\n \"urn:uuid:89bf1601-96a6-9ba8-c4d5-74e0757f7d89\",\n \"urn:uuid:b909475c-b744-53f6-d45c-a0709f039a45\"\n ]\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -204710,7 +204710,7 @@ }, "response": [ { - "id": "d5cfe498-336e-4fed-8bba-a2b28e6b6822", + "id": "d11d5b56-dbb0-4880-80d3-96d0daedef7c", "name": "List of SED Approval Status", "originalRequest": { "url": { @@ -204744,7 +204744,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"items\": [\n \"urn:uuid:f38c69f9-14fb-42dd-470e-88bb7baa1224\",\n \"urn:uuid:866536dd-5bdc-9fd4-385b-033558f738f1\"\n ]\n },\n {\n \"items\": [\n \"d7eeaa99-cfb4-e181-b1f4-9c63ec341323\",\n \"fa13e5d5-3968-cdb1-91a7-283c27d85c82\"\n ]\n }\n]", + "raw": "[\n {\n \"items\": [\n \"urn:uuid:33c84d5c-c9ee-8a64-c37b-3a9fb4f2be9f\",\n \"1475906c-14b0-fe44-6e98-84cc3c4995b9\"\n ]\n },\n {\n \"items\": [\n \"urn:uuid:89bf1601-96a6-9ba8-c4d5-74e0757f7d89\",\n \"urn:uuid:b909475c-b744-53f6-d45c-a0709f039a45\"\n ]\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -204761,12 +204761,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"failedReason\": \"invalid status\",\n \"id\": \"urn:uuid:15cef4a6-d71f-a046-e04a-4994b19352c5\",\n \"status\": \"SUCCESS\"\n },\n {\n \"failedReason\": \"invalid status\",\n \"id\": \"urn:uuid:95c24e32-2505-7438-4799-94168d756ff1\",\n \"status\": \"SUCCESS\"\n }\n]", + "body": "[\n {\n \"failedReason\": \"invalid status\",\n \"id\": \"urn:uuid:dd116800-a807-afdd-d028-5295abf152d6\",\n \"status\": \"SUCCESS\"\n },\n {\n \"failedReason\": \"invalid status\",\n \"id\": \"1a489597-154a-5801-019e-aa851082b23c\",\n \"status\": \"SUCCESS\"\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "7232aa4e-7abf-4695-8b49-7fa28898b962", + "id": "ae6c0a71-cf64-4a4f-a86e-21fa614248a1", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -204800,7 +204800,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"items\": [\n \"urn:uuid:f38c69f9-14fb-42dd-470e-88bb7baa1224\",\n \"urn:uuid:866536dd-5bdc-9fd4-385b-033558f738f1\"\n ]\n },\n {\n \"items\": [\n \"d7eeaa99-cfb4-e181-b1f4-9c63ec341323\",\n \"fa13e5d5-3968-cdb1-91a7-283c27d85c82\"\n ]\n }\n]", + "raw": "[\n {\n \"items\": [\n \"urn:uuid:33c84d5c-c9ee-8a64-c37b-3a9fb4f2be9f\",\n \"1475906c-14b0-fe44-6e98-84cc3c4995b9\"\n ]\n },\n {\n \"items\": [\n \"urn:uuid:89bf1601-96a6-9ba8-c4d5-74e0757f7d89\",\n \"urn:uuid:b909475c-b744-53f6-d45c-a0709f039a45\"\n ]\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -204822,7 +204822,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7b16e428-d4ef-4634-b2e7-d6eebe45d44d", + "id": "05e80505-3124-4c78-ab71-c3dc585829ba", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -204856,7 +204856,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"items\": [\n \"urn:uuid:f38c69f9-14fb-42dd-470e-88bb7baa1224\",\n \"urn:uuid:866536dd-5bdc-9fd4-385b-033558f738f1\"\n ]\n },\n {\n \"items\": [\n \"d7eeaa99-cfb4-e181-b1f4-9c63ec341323\",\n \"fa13e5d5-3968-cdb1-91a7-283c27d85c82\"\n ]\n }\n]", + "raw": "[\n {\n \"items\": [\n \"urn:uuid:33c84d5c-c9ee-8a64-c37b-3a9fb4f2be9f\",\n \"1475906c-14b0-fe44-6e98-84cc3c4995b9\"\n ]\n },\n {\n \"items\": [\n \"urn:uuid:89bf1601-96a6-9ba8-c4d5-74e0757f7d89\",\n \"urn:uuid:b909475c-b744-53f6-d45c-a0709f039a45\"\n ]\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -204878,7 +204878,7 @@ "_postman_previewlanguage": "json" }, { - "id": "15889dcb-8bb1-41b3-ab5c-e59a2e7ae778", + "id": "29809d7b-b70a-42a4-819d-43586e130a2e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -204912,7 +204912,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"items\": [\n \"urn:uuid:f38c69f9-14fb-42dd-470e-88bb7baa1224\",\n \"urn:uuid:866536dd-5bdc-9fd4-385b-033558f738f1\"\n ]\n },\n {\n \"items\": [\n \"d7eeaa99-cfb4-e181-b1f4-9c63ec341323\",\n \"fa13e5d5-3968-cdb1-91a7-283c27d85c82\"\n ]\n }\n]", + "raw": "[\n {\n \"items\": [\n \"urn:uuid:33c84d5c-c9ee-8a64-c37b-3a9fb4f2be9f\",\n \"1475906c-14b0-fe44-6e98-84cc3c4995b9\"\n ]\n },\n {\n \"items\": [\n \"urn:uuid:89bf1601-96a6-9ba8-c4d5-74e0757f7d89\",\n \"urn:uuid:b909475c-b744-53f6-d45c-a0709f039a45\"\n ]\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -204934,7 +204934,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bcdfd1bc-f302-42fd-91c3-d52b7484500e", + "id": "f8c57e11-9e73-41d1-9168-5d05d977262f", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -204968,7 +204968,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"items\": [\n \"urn:uuid:f38c69f9-14fb-42dd-470e-88bb7baa1224\",\n \"urn:uuid:866536dd-5bdc-9fd4-385b-033558f738f1\"\n ]\n },\n {\n \"items\": [\n \"d7eeaa99-cfb4-e181-b1f4-9c63ec341323\",\n \"fa13e5d5-3968-cdb1-91a7-283c27d85c82\"\n ]\n }\n]", + "raw": "[\n {\n \"items\": [\n \"urn:uuid:33c84d5c-c9ee-8a64-c37b-3a9fb4f2be9f\",\n \"1475906c-14b0-fe44-6e98-84cc3c4995b9\"\n ]\n },\n {\n \"items\": [\n \"urn:uuid:89bf1601-96a6-9ba8-c4d5-74e0757f7d89\",\n \"urn:uuid:b909475c-b744-53f6-d45c-a0709f039a45\"\n ]\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -204990,7 +204990,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a1b272ca-5d67-4d7a-958b-d41430db4c33", + "id": "5537ebe4-26e4-41e7-ab70-9c58bca85b84", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -205024,7 +205024,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"items\": [\n \"urn:uuid:f38c69f9-14fb-42dd-470e-88bb7baa1224\",\n \"urn:uuid:866536dd-5bdc-9fd4-385b-033558f738f1\"\n ]\n },\n {\n \"items\": [\n \"d7eeaa99-cfb4-e181-b1f4-9c63ec341323\",\n \"fa13e5d5-3968-cdb1-91a7-283c27d85c82\"\n ]\n }\n]", + "raw": "[\n {\n \"items\": [\n \"urn:uuid:33c84d5c-c9ee-8a64-c37b-3a9fb4f2be9f\",\n \"1475906c-14b0-fe44-6e98-84cc3c4995b9\"\n ]\n },\n {\n \"items\": [\n \"urn:uuid:89bf1601-96a6-9ba8-c4d5-74e0757f7d89\",\n \"urn:uuid:b909475c-b744-53f6-d45c-a0709f039a45\"\n ]\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -205046,7 +205046,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0675fc63-0e02-47e1-97d9-86570fa4e0bf", + "id": "88a9f222-b380-43c1-914c-ed1c69fbc49e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -205080,7 +205080,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"items\": [\n \"urn:uuid:f38c69f9-14fb-42dd-470e-88bb7baa1224\",\n \"urn:uuid:866536dd-5bdc-9fd4-385b-033558f738f1\"\n ]\n },\n {\n \"items\": [\n \"d7eeaa99-cfb4-e181-b1f4-9c63ec341323\",\n \"fa13e5d5-3968-cdb1-91a7-283c27d85c82\"\n ]\n }\n]", + "raw": "[\n {\n \"items\": [\n \"urn:uuid:33c84d5c-c9ee-8a64-c37b-3a9fb4f2be9f\",\n \"1475906c-14b0-fe44-6e98-84cc3c4995b9\"\n ]\n },\n {\n \"items\": [\n \"urn:uuid:89bf1601-96a6-9ba8-c4d5-74e0757f7d89\",\n \"urn:uuid:b909475c-b744-53f6-d45c-a0709f039a45\"\n ]\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -205108,7 +205108,7 @@ } }, { - "id": "5ace1780-ffde-4b2b-8b2e-c29aaa7b1124", + "id": "557a59ff-84e3-4e77-ab59-6300ebdf38ae", "name": "Submit Sed Assignment Request", "request": { "name": "Submit Sed Assignment Request", @@ -205139,7 +205139,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"assignee\": {\n \"type\": \"SOURCE_OWNER\",\n \"value\": \"016629d1-1d25-463f-97f3-c6686846650\"\n },\n \"items\": [\n \"urn:uuid:de19b7b3-cd9b-6cc4-7888-4cebb7e2c44f\",\n \"e54b6f2f-d05a-97e2-da2a-75c0dc9a0d62\"\n ]\n}", + "raw": "{\n \"assignee\": {\n \"type\": \"SOURCE_OWNER\",\n \"value\": \"016629d1-1d25-463f-97f3-c6686846650\"\n },\n \"items\": [\n \"urn:uuid:29b38501-fb88-6744-3cbe-d47927f717ae\",\n \"9a41153f-bcb2-8d01-f48d-6ad15f9b476e\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -205150,7 +205150,7 @@ }, "response": [ { - "id": "92acf639-b685-436b-a843-7a6c2857cf64", + "id": "53660542-fa8f-45d7-9d91-fa0fc5f4db7a", "name": "Sed Assignment Response", "originalRequest": { "url": { @@ -205184,7 +205184,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"assignee\": {\n \"type\": \"SOURCE_OWNER\",\n \"value\": \"016629d1-1d25-463f-97f3-c6686846650\"\n },\n \"items\": [\n \"urn:uuid:de19b7b3-cd9b-6cc4-7888-4cebb7e2c44f\",\n \"e54b6f2f-d05a-97e2-da2a-75c0dc9a0d62\"\n ]\n}", + "raw": "{\n \"assignee\": {\n \"type\": \"SOURCE_OWNER\",\n \"value\": \"016629d1-1d25-463f-97f3-c6686846650\"\n },\n \"items\": [\n \"urn:uuid:29b38501-fb88-6744-3cbe-d47927f717ae\",\n \"9a41153f-bcb2-8d01-f48d-6ad15f9b476e\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -205201,12 +205201,12 @@ "value": "application/json" } ], - "body": "{\n \"batchId\": \"32f81bb5-8e63-6a7f-fe86-29be366ac222\"\n}", + "body": "{\n \"batchId\": \"bf4d9d1a-7215-4dc2-f4e2-104b13559ea7\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "9025d972-daf1-4306-b0ac-62181cafee49", + "id": "d8f637ff-5069-41f0-8968-25fa55f5a374", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -205240,7 +205240,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"assignee\": {\n \"type\": \"SOURCE_OWNER\",\n \"value\": \"016629d1-1d25-463f-97f3-c6686846650\"\n },\n \"items\": [\n \"urn:uuid:de19b7b3-cd9b-6cc4-7888-4cebb7e2c44f\",\n \"e54b6f2f-d05a-97e2-da2a-75c0dc9a0d62\"\n ]\n}", + "raw": "{\n \"assignee\": {\n \"type\": \"SOURCE_OWNER\",\n \"value\": \"016629d1-1d25-463f-97f3-c6686846650\"\n },\n \"items\": [\n \"urn:uuid:29b38501-fb88-6744-3cbe-d47927f717ae\",\n \"9a41153f-bcb2-8d01-f48d-6ad15f9b476e\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -205262,7 +205262,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ce465872-a626-4ba9-be66-56c8cbd44f82", + "id": "fff2cb0d-cc57-4466-8dcf-6c03e4f0f614", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -205296,7 +205296,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"assignee\": {\n \"type\": \"SOURCE_OWNER\",\n \"value\": \"016629d1-1d25-463f-97f3-c6686846650\"\n },\n \"items\": [\n \"urn:uuid:de19b7b3-cd9b-6cc4-7888-4cebb7e2c44f\",\n \"e54b6f2f-d05a-97e2-da2a-75c0dc9a0d62\"\n ]\n}", + "raw": "{\n \"assignee\": {\n \"type\": \"SOURCE_OWNER\",\n \"value\": \"016629d1-1d25-463f-97f3-c6686846650\"\n },\n \"items\": [\n \"urn:uuid:29b38501-fb88-6744-3cbe-d47927f717ae\",\n \"9a41153f-bcb2-8d01-f48d-6ad15f9b476e\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -205318,7 +205318,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b931637a-2cd9-4817-9c5d-2a72d3fa0af8", + "id": "0b2eb5ba-98a1-406e-98fa-63aa69e34955", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -205352,7 +205352,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"assignee\": {\n \"type\": \"SOURCE_OWNER\",\n \"value\": \"016629d1-1d25-463f-97f3-c6686846650\"\n },\n \"items\": [\n \"urn:uuid:de19b7b3-cd9b-6cc4-7888-4cebb7e2c44f\",\n \"e54b6f2f-d05a-97e2-da2a-75c0dc9a0d62\"\n ]\n}", + "raw": "{\n \"assignee\": {\n \"type\": \"SOURCE_OWNER\",\n \"value\": \"016629d1-1d25-463f-97f3-c6686846650\"\n },\n \"items\": [\n \"urn:uuid:29b38501-fb88-6744-3cbe-d47927f717ae\",\n \"9a41153f-bcb2-8d01-f48d-6ad15f9b476e\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -205374,7 +205374,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9caed090-4ab8-49c2-ba40-5f837b0b7364", + "id": "20d8a5b4-454b-46ac-ace3-1ce8662374d1", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -205408,7 +205408,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"assignee\": {\n \"type\": \"SOURCE_OWNER\",\n \"value\": \"016629d1-1d25-463f-97f3-c6686846650\"\n },\n \"items\": [\n \"urn:uuid:de19b7b3-cd9b-6cc4-7888-4cebb7e2c44f\",\n \"e54b6f2f-d05a-97e2-da2a-75c0dc9a0d62\"\n ]\n}", + "raw": "{\n \"assignee\": {\n \"type\": \"SOURCE_OWNER\",\n \"value\": \"016629d1-1d25-463f-97f3-c6686846650\"\n },\n \"items\": [\n \"urn:uuid:29b38501-fb88-6744-3cbe-d47927f717ae\",\n \"9a41153f-bcb2-8d01-f48d-6ad15f9b476e\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -205430,7 +205430,7 @@ "_postman_previewlanguage": "json" }, { - "id": "66c2f327-223a-4748-8ac9-51557b4c1949", + "id": "2620f10e-5d20-4ff3-a6b6-d2c4a1f7ee7e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -205464,7 +205464,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"assignee\": {\n \"type\": \"SOURCE_OWNER\",\n \"value\": \"016629d1-1d25-463f-97f3-c6686846650\"\n },\n \"items\": [\n \"urn:uuid:de19b7b3-cd9b-6cc4-7888-4cebb7e2c44f\",\n \"e54b6f2f-d05a-97e2-da2a-75c0dc9a0d62\"\n ]\n}", + "raw": "{\n \"assignee\": {\n \"type\": \"SOURCE_OWNER\",\n \"value\": \"016629d1-1d25-463f-97f3-c6686846650\"\n },\n \"items\": [\n \"urn:uuid:29b38501-fb88-6744-3cbe-d47927f717ae\",\n \"9a41153f-bcb2-8d01-f48d-6ad15f9b476e\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -205486,7 +205486,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7b48c3a2-0389-4187-95dc-63110d3b95fa", + "id": "c44e7399-0226-4744-9457-d88b88455248", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -205520,7 +205520,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"assignee\": {\n \"type\": \"SOURCE_OWNER\",\n \"value\": \"016629d1-1d25-463f-97f3-c6686846650\"\n },\n \"items\": [\n \"urn:uuid:de19b7b3-cd9b-6cc4-7888-4cebb7e2c44f\",\n \"e54b6f2f-d05a-97e2-da2a-75c0dc9a0d62\"\n ]\n}", + "raw": "{\n \"assignee\": {\n \"type\": \"SOURCE_OWNER\",\n \"value\": \"016629d1-1d25-463f-97f3-c6686846650\"\n },\n \"items\": [\n \"urn:uuid:29b38501-fb88-6744-3cbe-d47927f717ae\",\n \"9a41153f-bcb2-8d01-f48d-6ad15f9b476e\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -205548,7 +205548,7 @@ } }, { - "id": "1f53c43b-4790-412a-bfe7-b18e19f1735e", + "id": "7bb4e4af-a582-4eab-8837-ee776283895f", "name": "List Suggested Entitlement Description", "request": { "name": "List Suggested Entitlement Description", @@ -205632,7 +205632,7 @@ }, "response": [ { - "id": "62e6bf68-13b3-453e-9507-cfcabd0a7aa7", + "id": "f5ce9aa0-ed98-4083-8a4b-c62017727fc7", "name": "List of Suggested Entitlement Details", "originalRequest": { "url": { @@ -205730,7 +205730,7 @@ "_postman_previewlanguage": "json" }, { - "id": "82d68f4f-632c-4ad2-a222-f82ee48fe02a", + "id": "81c55676-4a6b-4e3c-a9bf-938d6c7e8a74", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -205828,7 +205828,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e5fa70b4-193c-477b-b0e9-5c1b29accbc8", + "id": "02d6d7ca-cc76-49cc-a6ab-489d6c132e41", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -205926,7 +205926,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2574d334-5fff-4c8c-bb98-58089d5f4e26", + "id": "50a5d2cf-53aa-4a66-bce8-ead237c95362", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -206024,7 +206024,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3cfa957a-6693-44e8-8d8d-94b3835da2a5", + "id": "996b2cca-cf85-40c5-92b7-b2b5fad1d127", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -206122,7 +206122,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ce29a9d2-a481-4927-8112-8d63a702aa02", + "id": "01176ebb-0c13-4e5b-ae04-0cbcd5fc6b53", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -206220,7 +206220,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8fe9617d-bc06-4e86-a8e5-137275a1f427", + "id": "c846d0da-0f90-44e0-82a5-361beded051e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -206324,7 +206324,7 @@ } }, { - "id": "91548857-63c8-4103-94be-6f28e73baf80", + "id": "4ab22a2b-9bea-4a57-b4e8-75042c48b0d9", "name": "Patch Suggested Entitlement Description", "request": { "name": "Patch Suggested Entitlement Description", @@ -206377,7 +206377,7 @@ }, "response": [ { - "id": "9f0da437-daf1-41ac-80fc-ef0ad1d7dda9", + "id": "1145db44-52e9-43a9-a74d-75fcea841fee", "name": "detail of patched sed", "originalRequest": { "url": { @@ -206433,7 +206433,7 @@ "_postman_previewlanguage": "json" }, { - "id": "912b1eff-0e2a-4134-910a-92dd9202d442", + "id": "89845399-29de-48c0-80ed-280bf99a7ff1", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -206489,7 +206489,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0a21225b-829b-4bc9-aacf-1af1f13ec285", + "id": "32b54c20-149a-4dc6-a4bd-a5d5835b4c81", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -206545,7 +206545,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9345728b-dfd7-4716-acad-27a6152b0374", + "id": "ea1f9df0-f2b0-4979-9d53-01598d030dc9", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -206601,7 +206601,7 @@ "_postman_previewlanguage": "json" }, { - "id": "446e3fbf-1b27-4442-a1c7-48757b45d71e", + "id": "3ab24675-317d-462d-b5fd-029693bcaa1b", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -206657,7 +206657,7 @@ "_postman_previewlanguage": "json" }, { - "id": "61a08603-25e3-47ca-8956-ce38934abb62", + "id": "bb4d9432-46b4-43b2-a541-b350db8ee854", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -206713,7 +206713,7 @@ "_postman_previewlanguage": "json" }, { - "id": "18441a77-2da4-4460-bfd8-c55f1fbf006c", + "id": "2e022a4a-0bf4-4d5b-b82c-b1aae92d01da", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -206781,7 +206781,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": "c102d6d9-85bb-466e-9b16-4d85894427f3", + "id": "862698cd-1a54-4e9f-87b9-431c91b3a323", "name": "List Tagged Objects", "request": { "name": "List Tagged Objects", @@ -206847,7 +206847,7 @@ }, "response": [ { - "id": "2c0d8b47-688f-4df3-8308-889bbc682c82", + "id": "0b3c66bb-d3b0-4a26-b5a9-d758d1e37ab6", "name": "List of all tagged objects.", "originalRequest": { "url": { @@ -206927,7 +206927,7 @@ "_postman_previewlanguage": "json" }, { - "id": "817c5a52-5934-46de-abd7-b3c8d83b2c7b", + "id": "e7e8ab86-631c-4de5-86c9-e2b4f9be2f3c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -207007,7 +207007,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a499fba9-3f25-4426-8ce4-b58e03ea2191", + "id": "52c2f08e-8d11-412b-9db3-9a008a1db4df", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -207087,7 +207087,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a2e90f0b-0549-4bf1-a84f-dab8d98d5f83", + "id": "f8ae23f9-02db-408f-9023-b76fd27d8bb0", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -207167,7 +207167,7 @@ "_postman_previewlanguage": "json" }, { - "id": "45c2f6fa-3480-4677-84e7-505334103c3c", + "id": "4da376f9-0536-462c-887d-81b491c92804", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -207247,7 +207247,7 @@ "_postman_previewlanguage": "json" }, { - "id": "46a70c12-2afe-4384-b21d-9700b374b12e", + "id": "460a9ae9-0248-4cd3-8f1f-e6818d284783", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -207333,7 +207333,7 @@ } }, { - "id": "48536ad3-206a-40c5-938d-e5d1b53d4211", + "id": "64ed29c0-475f-4b2d-8da3-0abbfcc589f8", "name": "Add Tag to Object", "request": { "name": "Add Tag to Object", @@ -207375,7 +207375,7 @@ }, "response": [ { - "id": "e401ed1c-3c55-422f-ad56-b142c24df0c9", + "id": "b54e525d-2ec7-4cc4-abf0-6c0d777aba68", "name": "Created.", "originalRequest": { "url": { @@ -207421,7 +207421,7 @@ "_postman_previewlanguage": "text" }, { - "id": "e4827e59-9d75-44bd-84e8-5275151e0295", + "id": "225b8035-618b-4c6b-a483-e4c37e34e801", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -207477,7 +207477,7 @@ "_postman_previewlanguage": "json" }, { - "id": "41eabcfe-bcae-4594-a8e9-e4161e4aea7b", + "id": "c709b02e-dbc8-4b29-880f-c9b5e8a8d15d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -207533,7 +207533,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6201e4e6-3157-4cc7-899c-52c35026eac2", + "id": "940d7c80-0c2d-46d1-8ff0-695f59a57b97", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -207589,7 +207589,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5bfbec24-4bd7-4a36-a1e8-e3ad46219172", + "id": "46940a94-9221-4d5d-b8b2-41516573797c", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -207645,7 +207645,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2fc79bed-3a37-4b18-ba17-3dc2383d10ed", + "id": "dc575eb2-6629-4d7f-99fc-6587c7cb3358", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -207707,7 +207707,7 @@ } }, { - "id": "a810fe1d-3ead-4ea5-887e-d7d24958bfa7", + "id": "85f5f1f4-245c-417b-806f-a92456d0ca62", "name": "List Tagged Objects by Type", "request": { "name": "List Tagged Objects by Type", @@ -207785,7 +207785,7 @@ }, "response": [ { - "id": "2c8fde3f-0014-410e-a992-847e2d4ef2c0", + "id": "19d7078c-dcc3-4fc8-8329-48da29aa0780", "name": "List of all tagged objects for specified type.", "originalRequest": { "url": { @@ -207866,7 +207866,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0641b6e0-a433-493d-843c-4bd15dc5b9b5", + "id": "5744e00e-4775-492d-80a9-356cecf4224d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -207947,7 +207947,7 @@ "_postman_previewlanguage": "json" }, { - "id": "25baf3b3-ce10-4505-8ba7-9700cd9ff0c1", + "id": "bcd7c8d2-55ad-4be5-9901-0ad06d8bf3a9", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -208028,7 +208028,7 @@ "_postman_previewlanguage": "json" }, { - "id": "85aaa309-9517-48dc-b1b7-b89891fc4c34", + "id": "8379d913-2b42-4212-a917-cee49e7d8f24", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -208109,7 +208109,7 @@ "_postman_previewlanguage": "json" }, { - "id": "afff3de0-cb02-4fd2-816e-836b43929bd1", + "id": "3f61bab1-bc21-4d73-90c1-433ecdf1d673", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -208190,7 +208190,7 @@ "_postman_previewlanguage": "json" }, { - "id": "24991a25-c6eb-4051-a28a-ce37af880abf", + "id": "3b66fae2-5700-4a7b-b222-f92bdd2dd8ac", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -208277,7 +208277,7 @@ } }, { - "id": "9df290fd-2856-48f1-a85b-989cc052502d", + "id": "7874a7d4-8351-4ad6-84c3-ebe335358aeb", "name": "Get Tagged Object", "request": { "name": "Get Tagged Object", @@ -208329,7 +208329,7 @@ }, "response": [ { - "id": "b2006147-28d1-4403-b22b-0092e1627c80", + "id": "7873e9cd-cae0-4c76-ba4f-df7a894ed9df", "name": "Tagged object by type and ID.", "originalRequest": { "url": { @@ -208374,7 +208374,7 @@ "_postman_previewlanguage": "json" }, { - "id": "142395c4-ac7f-4663-9765-c3d1206781d4", + "id": "63f9b551-c231-4c43-b141-ebc6871994bf", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -208419,7 +208419,7 @@ "_postman_previewlanguage": "json" }, { - "id": "57eb94b0-d9b2-47b2-aff9-093bd50dc05c", + "id": "286c3196-7d96-4ac2-8ab0-fd0cd9e218d0", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -208464,7 +208464,7 @@ "_postman_previewlanguage": "json" }, { - "id": "84b909df-aadd-49be-9137-25c7a9ecabe2", + "id": "e012e8eb-093e-46c4-9436-809f6b8d9a6d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -208509,7 +208509,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cf5f947e-bdbf-4a65-82c9-66afea0a4ffd", + "id": "8d292d3a-6c41-4455-8d99-1757c07e6be1", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -208554,7 +208554,7 @@ "_postman_previewlanguage": "json" }, { - "id": "18f50c84-756d-4804-982e-d7992db36119", + "id": "3b14dad5-9da8-44bd-999f-bf5f6327fc99", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -208605,7 +208605,7 @@ } }, { - "id": "d19ca78c-5493-422f-a334-adf1c5130d7b", + "id": "3e580c9b-4469-49f6-8bef-d2043845848d", "name": "Update Tagged Object", "request": { "name": "Update Tagged Object", @@ -208670,7 +208670,7 @@ }, "response": [ { - "id": "c966fbf3-d36c-48a9-ae50-cedd5bb1057f", + "id": "394b0ca5-dc44-45db-aa30-244086ebf3f8", "name": "Tagged object by type and ID.", "originalRequest": { "url": { @@ -208728,7 +208728,7 @@ "_postman_previewlanguage": "json" }, { - "id": "56956a49-1611-4ce3-9c24-44ff37db8459", + "id": "076d2ffb-ef92-4a15-b3f2-e9826bbe1d85", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -208786,7 +208786,7 @@ "_postman_previewlanguage": "json" }, { - "id": "00b73a2c-8e14-4386-9619-2af30929c8d2", + "id": "45bf2d8d-988d-492a-9e9b-85eccf53e573", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -208844,7 +208844,7 @@ "_postman_previewlanguage": "json" }, { - "id": "df8a10a5-ee39-48cb-974f-b4102660d766", + "id": "310c4b29-4fc8-44a9-878a-74550d8adfaf", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -208902,7 +208902,7 @@ "_postman_previewlanguage": "json" }, { - "id": "646a0789-905d-4f97-937d-04b577117136", + "id": "22e7b884-a8fb-40c4-b081-2eb166804a55", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -208960,7 +208960,7 @@ "_postman_previewlanguage": "json" }, { - "id": "804e8697-a413-4a59-b123-bbf8695103f0", + "id": "eaf400ce-8fd6-4a21-b2dc-e6b7e60d6545", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -209024,7 +209024,7 @@ } }, { - "id": "b31267cb-049c-410a-88ef-ec4c43f8e000", + "id": "3c062458-90d1-4280-9490-1dcff05e4ea8", "name": "Delete Tagged Object", "request": { "name": "Delete Tagged Object", @@ -209076,7 +209076,7 @@ }, "response": [ { - "id": "97089b53-cfbf-4475-a712-41a2fce63066", + "id": "d41eb53a-3ebc-425b-acb3-d8eb4d1b4ff8", "name": "No content.", "originalRequest": { "url": { @@ -209111,7 +209111,7 @@ "_postman_previewlanguage": "text" }, { - "id": "aff3f816-a526-404d-9a8e-a40d778e5076", + "id": "6d4a55a0-9b92-49c0-8a52-0ff1a0558416", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -209156,7 +209156,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0f8401db-a781-44c8-83a5-2b209b0f9d11", + "id": "ad61412e-8e35-4008-9703-536d0c83a119", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -209201,7 +209201,7 @@ "_postman_previewlanguage": "json" }, { - "id": "944ea1fc-087d-4440-ada0-71ba0c0d05fe", + "id": "3ac9659e-4cf8-404e-be9c-f73f78454fac", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -209246,7 +209246,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4fb2c7b5-db00-43a6-844b-5bc17229e92a", + "id": "2e8955ea-e78e-49c0-8904-2f6a3cdb9cdd", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -209291,7 +209291,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a0f3056f-fbaf-4336-afb5-88f89e29b5d3", + "id": "045ed927-c41c-4069-b5da-e05424fd2e05", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -209342,7 +209342,7 @@ } }, { - "id": "5cf5dccd-ac1b-470b-b928-d58f26c2c515", + "id": "272b2201-d989-4284-aec7-a1f852dddae2", "name": "Tag Multiple Objects", "request": { "name": "Tag Multiple Objects", @@ -209385,7 +209385,7 @@ }, "response": [ { - "id": "b906bb70-6c50-492f-9b53-5a3ad54b3f75", + "id": "44090070-5127-46ac-af18-8dab11d2b848", "name": "Request succeeded.", "originalRequest": { "url": { @@ -209442,7 +209442,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a794bf12-0ef1-4ed5-aa36-b1d783f6729c", + "id": "c96ef323-9bfa-40e9-8a48-b2193333eb77", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -209499,7 +209499,7 @@ "_postman_previewlanguage": "json" }, { - "id": "03064216-3ce8-4d29-ab4e-68eb344cc091", + "id": "80654d31-8a1b-4269-93d1-324a9b144d5f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -209556,7 +209556,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f8d0c6c7-ad7f-41bb-894b-5e79e45193ee", + "id": "94f4be75-5c11-41d0-b54a-7abbd26d73e3", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -209613,7 +209613,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d00e3ea8-8b5e-466b-ade9-e33284ee0b61", + "id": "022b87e5-d9c0-4954-94cb-c312a123207d", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -209670,7 +209670,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dd7c0cc6-e635-4db7-aced-cb53d5ddae5e", + "id": "1d881939-91e0-4f17-b787-75db9b6d5d77", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -209733,7 +209733,7 @@ } }, { - "id": "47053c98-51ec-469a-965a-b44c1f0513c7", + "id": "08c17021-42f7-4db6-a102-7a70865ae2a9", "name": "Remove Tags from Multiple Objects", "request": { "name": "Remove Tags from Multiple Objects", @@ -209776,7 +209776,7 @@ }, "response": [ { - "id": "72eafad2-429e-4ea7-a357-4bbcf48ef6fe", + "id": "c0c30665-830e-4ef6-8149-5d7b20dcf683", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -209823,7 +209823,7 @@ "_postman_previewlanguage": "text" }, { - "id": "2db7d48c-6736-4613-8138-cdaff6de71e9", + "id": "79b5bd70-af30-4cf6-b3bf-fb9e22084983", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -209880,7 +209880,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e87e6fa4-8b68-456b-90c0-0d09fccee2b1", + "id": "f85eeb11-e37d-491d-b10e-7efbd4ef6c03", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -209937,7 +209937,7 @@ "_postman_previewlanguage": "json" }, { - "id": "704ef0ce-9db8-4a4f-b88a-ff32161389bd", + "id": "780aefb4-9d62-4019-84ed-6264cd78c157", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -209994,7 +209994,7 @@ "_postman_previewlanguage": "json" }, { - "id": "05893844-1d5a-4557-9253-5864c245f861", + "id": "8dc5a854-dc38-4b4b-b058-ebb0446b624e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -210051,7 +210051,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d65a4d0f-573a-4d88-b6f9-23caa493b389", + "id": "3255471e-0ef0-4caa-ae17-f124544fe7ee", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -210120,7 +210120,7 @@ "description": "", "item": [ { - "id": "143613d1-5ab4-4930-8fbe-4e1c9d4ba24d", + "id": "05a7e2a1-58f6-45f2-a78d-2e0f353d09d1", "name": "Get task status by ID.", "request": { "name": "Get task status by ID.", @@ -210161,7 +210161,7 @@ }, "response": [ { - "id": "f02b226e-ed80-49ea-8c28-b5636bbcb733", + "id": "a7df44a3-4536-4263-9fab-d173c8e8930e", "name": "Responds with a TaskStatus for the task with the given task ID.", "originalRequest": { "url": { @@ -210200,12 +210200,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 \"enim8\": -98771837.64861956,\n \"in2\": 11884556.145661935,\n \"temporb31\": 44689326,\n \"eu_1ed\": \"ut mollit veniam a\"\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 \"voluptate01\": -47111608\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": "35b8137e-9d71-4c55-a860-1a84df0a590a", + "id": "0b3e9769-2f79-477e-8398-c1c105e1318a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -210249,7 +210249,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3645a52f-3f8f-4a8b-a590-8b1ad4e40a63", + "id": "37ec2644-f950-4534-8c5a-d54808b77098", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -210293,7 +210293,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1d1de144-5d76-48b8-ac8c-05ad7cb597d9", + "id": "dbc4676b-4f44-45e9-88e5-6ab990cc5437", "name": "Forbidden, generally due to a lack of security rights", "originalRequest": { "url": { @@ -210327,7 +210327,7 @@ "_postman_previewlanguage": "text" }, { - "id": "9d767905-d393-46ed-bc42-8b28aaa9940d", + "id": "4177817e-0f13-4588-9b6d-0c9bf4eab5e2", "name": "TaskStatus with the given id was not found.", "originalRequest": { "url": { @@ -210361,7 +210361,7 @@ "_postman_previewlanguage": "text" }, { - "id": "ba74a722-3f35-43b1-9a0a-823de5a7d3d6", + "id": "b1102a9b-5869-4397-8029-e34f1e9860dc", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -210405,7 +210405,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3e1f52a4-2f96-4afc-906f-29f9aee82914", + "id": "bf4f26b7-3994-4d73-a005-ba90aca58c7c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -210455,7 +210455,7 @@ } }, { - "id": "8f6e2921-d96b-4214-88ca-7c5bf0b37b47", + "id": "6e66da45-4848-47c4-a572-8e450dda56c2", "name": "Update task status by ID", "request": { "name": "Update task status by ID", @@ -210509,7 +210509,7 @@ }, "response": [ { - "id": "b62e4cdc-d209-4c1a-b1c0-f522ef831045", + "id": "1d282555-71cc-4d6b-97e3-7a0fd794e33c", "name": "This response indicates the PATCH operation succeeded, and the API returns the updated task object.", "originalRequest": { "url": { @@ -210561,12 +210561,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 \"enim8\": -98771837.64861956,\n \"in2\": 11884556.145661935,\n \"temporb31\": 44689326,\n \"eu_1ed\": \"ut mollit veniam a\"\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 \"voluptate01\": -47111608\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": "520139f4-a358-4ae0-97a2-2d29aa747f88", + "id": "5c66b6b3-4750-4e64-8b80-407c6fb78850", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -210623,7 +210623,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e01d3699-f27f-4a2c-9ace-49bae368746e", + "id": "cbd311fe-fe26-4f49-89b0-d2d9d52e5209", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -210680,7 +210680,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2c984fe7-30f1-43cf-8464-361a291dd3bf", + "id": "01552351-a349-4d76-a31b-d1a7b5fdfbc0", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -210737,7 +210737,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f28a47da-7143-465b-8323-54b609eaad1c", + "id": "ae488f77-ccc3-4430-8db6-46c5dc795b4f", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -210794,7 +210794,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a5cb6942-6f3e-4fa0-8117-9d031c2d9b0b", + "id": "c5b75683-09ea-4618-b16b-cde41b65cbbb", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -210851,7 +210851,7 @@ "_postman_previewlanguage": "json" }, { - "id": "34c835b5-a944-4263-8058-382fd606d0e9", + "id": "066afa70-f670-4e4e-8186-fbd2f4d45d34", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -210914,7 +210914,7 @@ } }, { - "id": "8d812038-9678-455d-97b2-e50366c30cb5", + "id": "f97850e2-65d7-4e4c-b8d4-5a6179d2df0b", "name": "Retrieve a task status list.", "request": { "name": "Retrieve a task status list.", @@ -210989,7 +210989,7 @@ }, "response": [ { - "id": "d439d1b2-c31c-4df8-a5b6-6f9e4d87c533", + "id": "8c9b35cb-5d1d-4df4-b8ee-8adbdaa0d796", "name": "Responds with a TaskStatus for the task with the given task ID.", "originalRequest": { "url": { @@ -211073,12 +211073,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 \"doloref\": \"occaecat irure ut\"\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 \"ex_6b3\": 574502.0338240564,\n \"mollit_35\": 45628002,\n \"exercitation_fc4\": 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 \"aliqua985\": \"consectetur do aute\",\n \"in3c6\": \"in ad tempor\"\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 \"esse3aa\": true,\n \"quia2c\": -79383830,\n \"ad101\": 26899173.900464207,\n \"adipisicing14c\": -29467937\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": "a51b237e-a21a-4477-b39c-7779a17034d6", + "id": "b7340d2e-20fe-4b81-8e30-54b5e8908bf8", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -211167,7 +211167,7 @@ "_postman_previewlanguage": "json" }, { - "id": "513cacce-3f27-4d2d-bcff-4b94cfc0fb80", + "id": "17aab1b7-26a3-4eed-b64a-fde91dbbc870", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -211256,7 +211256,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f6ebe6d2-25b9-4a27-a208-c9ebb9523d0d", + "id": "45f5b2c2-fbf8-4a52-9df3-572185b2dab7", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -211345,7 +211345,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e047acef-1e7d-4f13-a79b-077ba3ebb86b", + "id": "89028cee-e49f-482a-85cf-3efd81af2003", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -211434,7 +211434,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f561e684-cf35-40bc-80f8-c2ef94b8e2a9", + "id": "6876e8cf-c96a-4e0f-a106-10ba7f0d908f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -211523,7 +211523,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7be72cbc-5679-42e0-b4e5-3ad8dd76b347", + "id": "7363b7d8-7bea-4d2c-ae60-e26879a755e1", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -211618,7 +211618,7 @@ } }, { - "id": "fbebff59-4df4-4d0c-adf2-8b5f3f1a9235", + "id": "0438949c-03fb-4b37-8cce-d2b9c0422d65", "name": "Retrieve a pending task list.", "request": { "name": "Retrieve a pending task list.", @@ -211676,7 +211676,7 @@ }, "response": [ { - "id": "ed902d7e-df32-44c8-93a4-5a1757a18bd7", + "id": "7e0e6dca-bbfe-4a35-96e9-2dd9a3642933", "name": "Responds with a list of TaskStatus for pending tasks.", "originalRequest": { "url": { @@ -211743,12 +211743,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 \"doloref\": \"occaecat irure ut\"\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 \"ex_6b3\": 574502.0338240564,\n \"mollit_35\": 45628002,\n \"exercitation_fc4\": 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 \"aliqua985\": \"consectetur do aute\",\n \"in3c6\": \"in ad tempor\"\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 \"esse3aa\": true,\n \"quia2c\": -79383830,\n \"ad101\": 26899173.900464207,\n \"adipisicing14c\": -29467937\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": "fba2fef4-ca49-4e47-a3cb-bbcadbdb1a19", + "id": "368155cf-0a96-4eae-bcde-89a4117efe5c", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -211810,7 +211810,7 @@ "_postman_previewlanguage": "text" }, { - "id": "7268d608-6f6b-4fd2-902c-89a33ded0ea9", + "id": "07324966-ff1e-4c96-937f-d623824df098", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -211882,7 +211882,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5f3ab2f1-4334-4ae4-a937-62e3de12306b", + "id": "f2306a09-f7d1-4be6-abc2-759956018fbd", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -211960,7 +211960,7 @@ } }, { - "id": "c21c5cf1-8cb4-4112-9ffb-6ade684e0241", + "id": "47622925-b6c8-4e11-8058-cbb64800cef5", "name": "Retrieve headers only for pending task list.", "request": { "name": "Retrieve headers only for pending task list.", @@ -212018,7 +212018,7 @@ }, "response": [ { - "id": "50170f15-d433-4050-a16a-0633eaaaf56b", + "id": "f4630643-2223-4a55-b6cf-8cc3e0b663b9", "name": "Responds with headers for List of TaskStatus for pending tasks.", "originalRequest": { "url": { @@ -212080,7 +212080,7 @@ "_postman_previewlanguage": "text" }, { - "id": "4db74944-7882-4923-b89b-ef549c951377", + "id": "83b3a37e-df34-4436-93ce-4ae604785ee2", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -212142,7 +212142,7 @@ "_postman_previewlanguage": "text" }, { - "id": "233f0c48-ae64-47cc-a3cb-af478ab31615", + "id": "c21acb72-7486-4b6a-9427-746d9b9204c5", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -212214,7 +212214,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6852f7bf-9413-4bf2-b36d-ac7c5e50eab2", + "id": "f08b18c8-478d-4f4c-bdf0-189f6e555996", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -212298,7 +212298,7 @@ "description": "API for reading tenant details.", "item": [ { - "id": "41d17582-93e2-4939-ad9c-5a42ac1961f6", + "id": "1eebdd21-ab76-45c2-a625-d650b72d4424", "name": "Get Tenant Information.", "request": { "name": "Get Tenant Information.", @@ -212327,7 +212327,7 @@ }, "response": [ { - "id": "4540ecfd-de0d-49b0-850f-2b5eaf9d0b50", + "id": "577110ef-c9e7-4682-85e9-dc5b787263ad", "name": "Tenant Info", "originalRequest": { "url": { @@ -212370,7 +212370,7 @@ "_postman_previewlanguage": "json" }, { - "id": "50297e53-0603-4013-a724-7ad76aca41e2", + "id": "468d2ff8-f407-4fee-88d5-318242c86b75", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -212413,7 +212413,7 @@ "_postman_previewlanguage": "json" }, { - "id": "abcffdc1-2056-4cc7-adb7-31309ee7cc57", + "id": "e24db278-90a2-4fc4-9ea5-9d8acc0ceeb9", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -212456,7 +212456,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cd9770c1-94fd-4d23-850e-c4ed833ce73a", + "id": "191ec339-a52e-4233-892b-90858e7e86cc", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -212499,7 +212499,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d3f7e2d2-f0dc-4ff9-86bc-74eec53dde36", + "id": "e3057d22-9ccc-4e38-8128-350a4aff1fa8", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -212542,7 +212542,7 @@ "_postman_previewlanguage": "json" }, { - "id": "409e3672-2ff1-460a-ba73-0ef587833402", + "id": "da3385b9-9713-415b-aeab-9d71f17b3925", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -212585,7 +212585,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6d50fb9d-9479-46ab-bde7-81fc4c1ce9a6", + "id": "b90d76a0-9125-4025-a2f7-3a6bb9c26e6f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -212640,7 +212640,7 @@ "description": "Operations for creating, managing, and deleting transforms.", "item": [ { - "id": "daa80e47-5370-4f4e-af77-93ba4ee03133", + "id": "a0fe67ed-8348-4019-90f2-c6195ac2ff49", "name": "List transforms", "request": { "name": "List transforms", @@ -212715,7 +212715,7 @@ }, "response": [ { - "id": "b288a36e-9718-4c8a-98fa-e57fe889a5de", + "id": "3705c723-6bc1-49e9-878f-2c52e8cbb943", "name": "A list of transforms matching the given criteria.", "originalRequest": { "url": { @@ -212804,7 +212804,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f1bc6710-4fe2-4786-b12d-27f652a65da8", + "id": "178fc2cc-b37f-465b-9101-f403ebbdfc79", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -212893,7 +212893,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c9ad007e-aa43-4b41-ab6f-d103ca9c7511", + "id": "afa1abb1-5ab0-447a-9d1d-fa9ae7747cfc", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -212982,7 +212982,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1007c8e0-f4ad-4fa7-9725-8884a49138aa", + "id": "848addf0-aa76-4072-b27b-575524fb35f5", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -213071,7 +213071,7 @@ "_postman_previewlanguage": "json" }, { - "id": "017af730-c1e2-4739-bec9-5e4453e07a79", + "id": "6785e198-6614-4711-be80-40093cf61fee", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -213160,7 +213160,7 @@ "_postman_previewlanguage": "json" }, { - "id": "31aede1d-db92-4147-a4ff-d52be243aacb", + "id": "0e5e3936-f2ce-4318-812b-5f469a915b9a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -213249,7 +213249,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4a25ad51-307b-46e5-8e83-41c17d506f13", + "id": "4b72fe1c-2c99-4e20-b41b-c23c2bf57d4d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -213344,7 +213344,7 @@ } }, { - "id": "e88d3494-2c2f-445b-bb6d-84753ba11478", + "id": "e3f4309b-f5e7-49a3-9829-ace0591c938a", "name": "Create transform", "request": { "name": "Create transform", @@ -213386,7 +213386,7 @@ }, "response": [ { - "id": "c47e4c11-7c61-4d47-a572-715a33c3ace4", + "id": "c1b3a086-6932-43ac-8c13-60aac3cc4d8e", "name": "Indicates the transform was successfully created and returns its representation.", "originalRequest": { "url": { @@ -213442,7 +213442,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9a26008e-5f57-47cd-ae43-b5ca0b76c66a", + "id": "a163c91f-a67b-43ec-9681-c3a23cfdffac", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -213498,7 +213498,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c1a68af3-c29e-4771-ac2e-23d3ac6930a9", + "id": "48b98998-9899-4120-b078-58adb3f180f0", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -213554,7 +213554,7 @@ "_postman_previewlanguage": "json" }, { - "id": "69fc435c-085e-4a80-85ec-363af3f43f67", + "id": "e97392de-9919-43dc-b050-6d2bec69589e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -213610,7 +213610,7 @@ "_postman_previewlanguage": "json" }, { - "id": "10f27537-dae1-4050-bd52-8172ded0e5fe", + "id": "d8a54b97-7432-414e-a16e-ade0699edc82", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -213666,7 +213666,7 @@ "_postman_previewlanguage": "json" }, { - "id": "68da2398-df50-48c2-bcb8-21a1538a5960", + "id": "37184c85-36fa-4010-92f9-ed4b69dab0d0", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -213722,7 +213722,7 @@ "_postman_previewlanguage": "json" }, { - "id": "847970b3-d50f-4bba-9574-3c8e344cdb84", + "id": "8649123a-74d0-4ba8-a857-52406a9f1a60", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -213784,7 +213784,7 @@ } }, { - "id": "17246cc1-e374-47b3-b5d9-94a14f4d024a", + "id": "7a0fc02d-6346-4667-8c3c-4020733edf52", "name": "Transform by ID", "request": { "name": "Transform by ID", @@ -213825,7 +213825,7 @@ }, "response": [ { - "id": "c53c489b-095c-43d8-95c4-7c28ab8df245", + "id": "bfcdcce5-d96e-407c-b571-09ebdb2c0f6c", "name": "Transform with the given ID", "originalRequest": { "url": { @@ -213869,7 +213869,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4fd55f8f-cac5-461f-b114-cfe163d920f5", + "id": "40b3f4b6-8f4d-423d-9569-8836c5dd2c4f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -213913,7 +213913,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a06e5ba2-4496-400b-8930-8fd12c852087", + "id": "e6a342c3-df09-4247-b37d-96fce144d685", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -213957,7 +213957,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c4afad2a-4992-4a82-841a-a55ade657430", + "id": "09e041cb-f0dd-4ef7-b97c-f0a6cbc2337e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -214001,7 +214001,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7e2a0194-e7e2-4f23-b880-654262fc6a0d", + "id": "71f04fe3-fe35-4bff-b08e-e82abdc251bc", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -214045,7 +214045,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8981394c-5cda-4a41-be6d-cf8afc005014", + "id": "02af4475-21c8-4971-9faa-95b45ecd6d8c", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -214089,7 +214089,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a53820ee-f6b8-45a1-b08e-3af8624f3bda", + "id": "4dbf4170-287d-4030-968d-d18c840999f2", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -214139,7 +214139,7 @@ } }, { - "id": "5178d899-306e-439e-8e67-6b5e20ec03ef", + "id": "ed9f4b7b-ff1e-45d5-823e-24af5894a511", "name": "Update a transform", "request": { "name": "Update a transform", @@ -214193,7 +214193,7 @@ }, "response": [ { - "id": "840b38a9-9bf4-4ec8-8492-09a5e0473b4f", + "id": "ce7fb40c-ed93-4a40-b148-20c827709ad7", "name": "Indicates the transform was successfully updated and returns its new representation.", "originalRequest": { "url": { @@ -214250,7 +214250,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7b0e2d29-d222-4d19-a7c1-4cca162a135c", + "id": "30cdeef8-c7c7-433b-8add-75f09ee89e6f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -214307,7 +214307,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c031cc19-67e0-4577-a197-eae88f09da98", + "id": "37a2cbe9-1a28-4380-9ced-13ad0b40ab86", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -214364,7 +214364,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e37e5c7a-2e83-402e-8bbe-799c71386c29", + "id": "871675b8-68ff-4e60-899d-be100cc41c2f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -214421,7 +214421,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3f05aaf1-d5ff-42df-94ea-7c23aedd73df", + "id": "069230bb-9e99-4579-aed2-afc71e3edc54", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -214478,7 +214478,7 @@ "_postman_previewlanguage": "json" }, { - "id": "775aaf38-d52b-4361-a1d7-8dc09c97eeaf", + "id": "a9dffa7c-5d64-469d-8c66-833eaf04c332", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -214535,7 +214535,7 @@ "_postman_previewlanguage": "json" }, { - "id": "196ef0a8-3be9-499f-80d8-a42fff245158", + "id": "3fde85a7-bb67-4292-ba24-66f09386ed70", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -214598,7 +214598,7 @@ } }, { - "id": "75eb79c7-7c47-4482-bfb5-54a00520246b", + "id": "80937928-d4b5-4688-ae85-6844cb0c8143", "name": "Delete a transform", "request": { "name": "Delete a transform", @@ -214639,7 +214639,7 @@ }, "response": [ { - "id": "619c29bd-bd56-45b9-a5ec-df2808380ae8", + "id": "a0c34bb8-e015-43cc-832f-b378cc926ce6", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -214673,7 +214673,7 @@ "_postman_previewlanguage": "text" }, { - "id": "49493e6b-4acd-4287-b0b1-d22254506031", + "id": "471d40a3-6f8b-42a2-9c33-ce6eb75ba117", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -214717,7 +214717,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bd1f19ca-05eb-455d-b312-2cd7816d91bd", + "id": "b1cc8037-02ab-40ca-ad15-8d74d1c9dae6", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -214761,7 +214761,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b889e9f7-a5c7-4de0-8b27-abbe575f4df8", + "id": "a8cac2d5-a862-4313-ac6c-429fce3d32d2", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -214805,7 +214805,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e385a2cb-adc5-49b5-ae50-23b388a9da02", + "id": "df1bbcfe-11fc-416a-92ab-4295deda9279", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -214849,7 +214849,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2930ce5d-ceaf-4f66-a56c-084cf0e961ee", + "id": "df067a5d-6e80-42c1-b290-927739b08e82", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -214893,7 +214893,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4e55181e-f7a4-4067-831a-16e8c4a14ed7", + "id": "346687f1-14cf-4d91-a31a-58a133316442", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -214949,7 +214949,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": "62bdab76-6cf4-401c-924f-b848047a0a8d", + "id": "9512d19c-a4a8-4010-bc53-fa500629a38f", "name": "List Triggers", "request": { "name": "List Triggers", @@ -215024,7 +215024,7 @@ }, "response": [ { - "id": "504bd229-9392-4f96-814a-c13b17745eaa", + "id": "66cccc3b-0407-415f-b2da-3c2311a7254c", "name": "List of triggers.", "originalRequest": { "url": { @@ -215113,7 +215113,7 @@ "_postman_previewlanguage": "json" }, { - "id": "59617198-1d16-4b9b-a41e-a763046a2d58", + "id": "54a18309-a1d3-4441-b4f4-83545f3cb237", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -215202,7 +215202,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f0418a7c-8227-417e-bbc0-cbde1962f4c7", + "id": "e0ca40ad-ff3f-493f-91ea-00aaf5be1ad3", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -215291,7 +215291,7 @@ "_postman_previewlanguage": "json" }, { - "id": "105c7856-6a28-48e4-9ebf-9ece6fdfd250", + "id": "ae45dcb3-3d01-4552-9a63-91c176e70d67", "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": "91cb7584-1e8a-4993-962b-7088d70f2e8e", + "id": "7c3cb305-15e0-4470-a04b-48f0666367d6", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -215469,7 +215469,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fed3f467-6fc5-4469-9dd6-00832a05b8fd", + "id": "0cba46ee-3bab-41cd-98f3-af1834bcfc29", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -215564,7 +215564,7 @@ } }, { - "id": "b253d51d-0c07-44df-97bf-ee3d69650121", + "id": "aae01cd9-9940-48fb-815e-d3df95739b0d", "name": "Create a Subscription", "request": { "name": "Create a Subscription", @@ -215606,7 +215606,7 @@ }, "response": [ { - "id": "f5cef617-20e1-4e18-a9ae-d6f4ae2587a1", + "id": "8e131b34-c8d0-40c3-954d-d1c962ff1d2f", "name": "HTTP Subscription", "originalRequest": { "url": { @@ -215662,7 +215662,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7419b46c-c77e-49bb-905d-7fd7963267cf", + "id": "84508f40-06e6-4d88-9425-82537dd13c9d", "name": "HTTP Async Subscription", "originalRequest": { "url": { @@ -215718,7 +215718,7 @@ "_postman_previewlanguage": "json" }, { - "id": "84ff9371-9e5e-4b0c-8c8a-e2e15568df2e", + "id": "84b9752e-9f4a-4c35-8a26-53deca3dc1f7", "name": "EventBridge Subscription", "originalRequest": { "url": { @@ -215774,7 +215774,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0a6834cd-fbca-4d0c-aa41-ec31164cb05c", + "id": "18a5ffc6-2304-492f-94c2-4e3bc2aa263b", "name": "HTTP Subscription", "originalRequest": { "url": { @@ -215830,7 +215830,7 @@ "_postman_previewlanguage": "json" }, { - "id": "af10e930-ec06-4ca7-9a89-545ee523387f", + "id": "d0973005-0b27-45f4-bfd7-d940f130e27a", "name": "HTTP Async Subscription", "originalRequest": { "url": { @@ -215886,7 +215886,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c93f5c2c-d436-4a23-ab14-fb312314618a", + "id": "01de87bc-a074-451f-b37b-c22450c7dfb9", "name": "EventBridge Subscription", "originalRequest": { "url": { @@ -215942,7 +215942,7 @@ "_postman_previewlanguage": "json" }, { - "id": "531b59c7-2271-4d44-a527-443ec298de9e", + "id": "90c7578e-220a-410d-8074-81540655a0be", "name": "HTTP Subscription", "originalRequest": { "url": { @@ -215998,7 +215998,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7c91f166-5458-4eb9-ae0b-a61a87f9be7e", + "id": "a94d31c5-5073-4e71-9d80-dbe8478e057d", "name": "HTTP Async Subscription", "originalRequest": { "url": { @@ -216054,7 +216054,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3400a916-0129-44a3-8a8c-842b0fba126b", + "id": "777bcece-2132-4768-91fb-c59c6461c917", "name": "EventBridge Subscription", "originalRequest": { "url": { @@ -216110,7 +216110,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0d41f2dd-3d13-4547-a238-4ad9dcf26b32", + "id": "3c0cc974-678d-46f2-96a0-51a90ea13874", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -216166,7 +216166,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a5ec9ccd-d30c-476d-8e9c-4c56224777d3", + "id": "e127f507-0caa-4b87-8fcc-d78522a51625", "name": "HTTP Async Subscription", "originalRequest": { "url": { @@ -216222,7 +216222,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cb7c3b63-4262-4eef-8c91-5df507a2008c", + "id": "b2e1a640-a98e-4ef2-a829-b05f04e7b6a7", "name": "EventBridge Subscription", "originalRequest": { "url": { @@ -216278,7 +216278,7 @@ "_postman_previewlanguage": "json" }, { - "id": "281f1a9c-7cad-4839-88c1-78959c26c49d", + "id": "9ac027f6-1717-4e7a-bfac-8dfd980dbcc4", "name": "HTTP Subscription", "originalRequest": { "url": { @@ -216334,7 +216334,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a90fe1a8-b46b-425d-af71-69f89f1e1d19", + "id": "2e6ce7b5-ab22-4f88-b416-7e2796e20903", "name": "HTTP Async Subscription", "originalRequest": { "url": { @@ -216390,7 +216390,7 @@ "_postman_previewlanguage": "json" }, { - "id": "91650d31-dfe0-4d9a-ba40-1c70b4814ea8", + "id": "49b2cfdb-2fe9-4eed-8832-04d17ee7f97a", "name": "EventBridge Subscription", "originalRequest": { "url": { @@ -216446,7 +216446,7 @@ "_postman_previewlanguage": "json" }, { - "id": "297acffa-3a5d-4caa-ac3b-f1c3fae77460", + "id": "3c5915a4-13b1-4400-a331-2c8b2d69efc9", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -216502,7 +216502,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5304fcdd-8dc1-4a42-9d18-b58b18393003", + "id": "f3463e33-7f14-49e0-a3f7-7f68fbaa0e4b", "name": "HTTP Async Subscription", "originalRequest": { "url": { @@ -216558,7 +216558,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c844da83-81c3-49be-ad1f-7ed6770a6200", + "id": "a42bf105-a2b6-4dc5-9e27-891c8731e27e", "name": "EventBridge Subscription", "originalRequest": { "url": { @@ -216620,7 +216620,7 @@ } }, { - "id": "2951dccf-0c07-4f5e-9b37-e67f974ca04c", + "id": "cbe03294-ac84-4091-8cc6-f01e57e02d78", "name": "List Subscriptions", "request": { "name": "List Subscriptions", @@ -216695,7 +216695,7 @@ }, "response": [ { - "id": "5e7090a9-e8f2-4d02-983c-f93eb7798484", + "id": "53550cb4-29e5-4a41-a528-42146c8cba07", "name": "HTTP Subscription", "originalRequest": { "url": { @@ -216784,7 +216784,7 @@ "_postman_previewlanguage": "json" }, { - "id": "99f2b95e-0a7c-476a-a0f9-d65cddaa5a13", + "id": "2e72879a-1baa-4bec-8fd2-cc099518005f", "name": "HTTP Async Subscription", "originalRequest": { "url": { @@ -216873,7 +216873,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3a4d0391-0074-483d-bdc1-55ac4513d615", + "id": "a218ae38-8c9f-450e-b974-f520e63210b0", "name": "EventBridge Subscription", "originalRequest": { "url": { @@ -216962,7 +216962,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a6120bba-0efc-4a79-aa85-8b0852ffa3f1", + "id": "3b2485d3-d94d-4c3e-8eb7-66fd7c4ae828", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -217051,7 +217051,7 @@ "_postman_previewlanguage": "json" }, { - "id": "732d36a4-f96f-4d50-91b6-00b9af58d22b", + "id": "11d92659-4e8a-41f0-bb7c-9fed351cc24e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -217140,7 +217140,7 @@ "_postman_previewlanguage": "json" }, { - "id": "933368b2-025d-4267-b343-c2008bc5b00c", + "id": "74877348-9a53-4767-94ea-da24b071c3bc", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -217229,7 +217229,7 @@ "_postman_previewlanguage": "json" }, { - "id": "509415d4-b029-400b-af45-63b63223c8c5", + "id": "cda6de0e-91bd-4111-bd86-a41404d631fd", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -217318,7 +217318,7 @@ "_postman_previewlanguage": "json" }, { - "id": "28cc7591-4cfc-4bcf-b9a8-8aaaa7330e9e", + "id": "a3a215a0-bf10-4eb6-9383-f2974039925f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -217413,7 +217413,7 @@ } }, { - "id": "3a328144-2de0-4339-b5ca-26cc599c7511", + "id": "89da0077-eefc-4173-a98a-9afb8085d2b0", "name": "Update a Subscription", "request": { "name": "Update a Subscription", @@ -217467,7 +217467,7 @@ }, "response": [ { - "id": "067f59c2-2f65-4414-ade1-cffe9a0a025a", + "id": "db00ff13-362b-4774-a1b3-6a752f6dccf3", "name": "HTTP Subscription", "originalRequest": { "url": { @@ -217524,7 +217524,7 @@ "_postman_previewlanguage": "json" }, { - "id": "95169c65-ce8d-4502-8e9e-a745e4f42cb3", + "id": "d1e0a58c-8b38-45cc-bbda-7ba1b5a19c07", "name": "HTTP Async Subscription", "originalRequest": { "url": { @@ -217581,7 +217581,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ca9a5cd3-c772-4de6-8d2a-c676bafe0277", + "id": "4985ced7-2648-48cb-8107-56d053616ee1", "name": "EventBridge Subscription", "originalRequest": { "url": { @@ -217638,7 +217638,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4ff74c4d-c64f-4863-9c86-330b333e0cb7", + "id": "34963de5-d997-4d69-995c-a0388d3e02d2", "name": "HTTP Subscription", "originalRequest": { "url": { @@ -217695,7 +217695,7 @@ "_postman_previewlanguage": "json" }, { - "id": "73632689-35fa-44f6-a11a-0670cfe886b4", + "id": "64f2cb15-139f-4cfc-afa1-0b1285e93003", "name": "HTTP Async Subscription", "originalRequest": { "url": { @@ -217752,7 +217752,7 @@ "_postman_previewlanguage": "json" }, { - "id": "83b349a3-0325-466f-b7cd-74661164f971", + "id": "4ad22a9f-a767-47d4-8782-bff7ec72d723", "name": "EventBridge Subscription", "originalRequest": { "url": { @@ -217809,7 +217809,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8489225b-08fa-4513-900d-6a028da52063", + "id": "245bf0d1-c343-426e-9d9b-b006449b536f", "name": "HTTP Subscription", "originalRequest": { "url": { @@ -217866,7 +217866,7 @@ "_postman_previewlanguage": "json" }, { - "id": "61ef183d-bb14-4eda-b19f-91e1ab00c20f", + "id": "c145dda3-4591-4ffa-96ea-393627574f63", "name": "HTTP Async Subscription", "originalRequest": { "url": { @@ -217923,7 +217923,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d661d618-b025-4fd3-8cad-009e014d61f2", + "id": "d2882128-ebaa-4318-adcc-cd22a1f1cc78", "name": "EventBridge Subscription", "originalRequest": { "url": { @@ -217980,7 +217980,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9b50f021-41b9-429a-b862-738425158222", + "id": "686e3690-7365-4f1e-be22-b82c0d39f2f6", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -218037,7 +218037,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ae10b623-dab1-4b3d-8d1e-820c6566b7d2", + "id": "1dc61f67-7004-46de-be57-4c1da9c765ec", "name": "HTTP Async Subscription", "originalRequest": { "url": { @@ -218094,7 +218094,7 @@ "_postman_previewlanguage": "json" }, { - "id": "679b6907-4b9d-4535-8fd7-05506ca62ec0", + "id": "2410a641-6e87-44b1-a637-de09fd5988fd", "name": "EventBridge Subscription", "originalRequest": { "url": { @@ -218151,7 +218151,7 @@ "_postman_previewlanguage": "json" }, { - "id": "84aab84b-64e2-47bb-85d6-2da2546552d1", + "id": "b847a0d3-bcdf-4b35-9e2b-e958ddb692ed", "name": "An example of a 404 response object", "originalRequest": { "url": { @@ -218208,7 +218208,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6ff06d2e-e71e-49f7-bb3d-6c3745fde630", + "id": "017758ee-f4b0-48e6-8092-458869488078", "name": "HTTP Async Subscription", "originalRequest": { "url": { @@ -218265,7 +218265,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fad4b294-2557-4f4b-a19e-c76a5d384398", + "id": "e533334d-2d97-4a1c-9ca7-0914a0973490", "name": "EventBridge Subscription", "originalRequest": { "url": { @@ -218322,7 +218322,7 @@ "_postman_previewlanguage": "json" }, { - "id": "090d9175-ae52-4310-a199-8a98e7eed638", + "id": "aeac8e6a-8945-4aa6-86f4-e8facf7f2545", "name": "HTTP Subscription", "originalRequest": { "url": { @@ -218379,7 +218379,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7b2fb8ad-e677-4585-a61c-e99a1452030e", + "id": "229c1b28-48d4-4e7d-b823-69b03f80ef93", "name": "HTTP Async Subscription", "originalRequest": { "url": { @@ -218436,7 +218436,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f450fefd-b167-422c-ae1b-76ea36040202", + "id": "e3f54b69-23cc-4305-82d7-9b93de63cc92", "name": "EventBridge Subscription", "originalRequest": { "url": { @@ -218493,7 +218493,7 @@ "_postman_previewlanguage": "json" }, { - "id": "aaaa2a76-3b27-42e9-a474-4bdcd03145a7", + "id": "353faee0-8991-4fad-b06e-ba56da0d87ca", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -218550,7 +218550,7 @@ "_postman_previewlanguage": "json" }, { - "id": "91ca80e4-199c-4c2b-b2b1-a3f5464e86b5", + "id": "3ecd8873-bf49-40fb-b775-e5191e45d569", "name": "HTTP Async Subscription", "originalRequest": { "url": { @@ -218607,7 +218607,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5710c7c4-357c-4eff-aab0-5a020b67c981", + "id": "c5fe7820-b0db-4cc9-95b7-c3fc7888851f", "name": "EventBridge Subscription", "originalRequest": { "url": { @@ -218670,7 +218670,7 @@ } }, { - "id": "ee37bdb9-11b1-4506-bdc0-6daecaab6517", + "id": "6d767680-eb8f-4168-94ed-0a9eb177b4e2", "name": "Patch a Subscription", "request": { "name": "Patch a Subscription", @@ -218724,7 +218724,7 @@ }, "response": [ { - "id": "b28ba6ec-00cc-46b0-a7d8-eae107246532", + "id": "22c7321d-575e-4e53-9fc4-b60ee0fec213", "name": "Updated subscription.", "originalRequest": { "url": { @@ -218781,7 +218781,7 @@ "_postman_previewlanguage": "json" }, { - "id": "64c2b50f-3439-4d1e-b407-59f8bbb41c8b", + "id": "eb8e8d8c-7afb-4e4b-aeac-ec292a7730c9", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -218838,7 +218838,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5bf562be-c51f-4cd6-9a21-06a3e3dd5834", + "id": "d039d1ca-b992-4a7a-8727-97c0fe20faa9", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -218895,7 +218895,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c003c382-6748-4587-a331-7b9d93c2f83c", + "id": "6a6409df-9eb9-4e42-b8cc-feac114a3909", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -218952,7 +218952,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e37c1996-883e-44b8-98cc-68c205927aac", + "id": "727f3984-dfcd-4793-ac3f-300590611063", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -219009,7 +219009,7 @@ "_postman_previewlanguage": "json" }, { - "id": "96884a11-0f32-471b-90f3-7596a75bbe1e", + "id": "99f5607c-8d66-4e02-9df0-91f76e16bc71", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -219066,7 +219066,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3b3cd517-4427-407a-82c9-456b26bea2f0", + "id": "e91f649f-8bbe-4867-8d7c-992d0556f072", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -219129,7 +219129,7 @@ } }, { - "id": "7be9e880-0e09-407a-85ae-d4d33f82b7ed", + "id": "bad15136-90ab-426e-bfc2-d992304524cf", "name": "Delete a Subscription", "request": { "name": "Delete a Subscription", @@ -219170,7 +219170,7 @@ }, "response": [ { - "id": "6703be42-1a5b-4f3a-8180-2357ea84e05d", + "id": "f138b451-cfb4-4651-8d54-7462fd57c834", "name": "Subscription is deleted successfully.", "originalRequest": { "url": { @@ -219204,7 +219204,7 @@ "_postman_previewlanguage": "text" }, { - "id": "639692c6-68b1-4381-bda4-ee01734109ee", + "id": "dcf51444-8906-4b1e-afb3-960379620239", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -219248,7 +219248,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a529ca8a-b531-49bc-975a-c8b189842f41", + "id": "d5dd2f29-3fd7-435b-96fb-37a1dffddcce", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -219292,7 +219292,7 @@ "_postman_previewlanguage": "json" }, { - "id": "282d4ff7-1b7a-4e84-be20-e09e025ac82f", + "id": "4043b9a9-9593-48c3-8a56-afe267de538f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -219336,7 +219336,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4722fd93-468d-4e63-9d6d-ef3d0ed156e1", + "id": "70d69f79-d2c5-44a6-b0dd-9f6c877565d6", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -219380,7 +219380,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0f4fa1ee-5cce-4cfe-b9f9-5e8ae3a4780d", + "id": "bc7ae558-7b21-4f32-890e-5997a06d0dca", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -219424,7 +219424,7 @@ "_postman_previewlanguage": "json" }, { - "id": "87e3de1a-93d1-4657-a6ac-e791dddc6d86", + "id": "548f0828-791a-493f-9ca4-5db708311bda", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -219474,7 +219474,7 @@ } }, { - "id": "d899481d-ea5a-42f2-b0fb-6888191cde6d", + "id": "62258a1e-df73-42ca-b0eb-27708246786b", "name": "Validate a Subscription Filter", "request": { "name": "Validate a Subscription Filter", @@ -219517,7 +219517,7 @@ }, "response": [ { - "id": "676b2e54-92c5-4e47-87a6-2727c0ddcb91", + "id": "1980d455-d010-4082-9d93-8b7c3b7e993a", "name": "Boolean whether specified filter expression is valid against the input.", "originalRequest": { "url": { @@ -219574,7 +219574,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5f28d28f-7106-4a1e-ba29-920cfde26027", + "id": "f4aeb684-d9cf-487a-880a-96cee985d17c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -219631,7 +219631,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8e279fac-db16-4bb1-85d1-edbc7b54913c", + "id": "0d24c5ae-112a-490f-a78a-d482cef2fc2a", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -219688,7 +219688,7 @@ "_postman_previewlanguage": "json" }, { - "id": "50505efe-7b07-4e7c-ac80-81a89381a0d3", + "id": "fa8816ce-19e7-44ad-99bb-f6d8a7185666", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -219745,7 +219745,7 @@ "_postman_previewlanguage": "json" }, { - "id": "17e87052-4f25-4532-a27a-2e4c4bbde356", + "id": "8ba6999b-451b-4ebe-abcd-880d9e6d231c", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -219802,7 +219802,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f4e02ee4-21cc-403f-b8c1-89be16fff927", + "id": "47a93077-75c0-4dbe-9522-a7a8389449a4", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -219865,7 +219865,7 @@ } }, { - "id": "3cd765ad-3be9-4bb1-afa0-5d220c02659d", + "id": "1254a871-016b-47fd-9411-e765854505db", "name": "List Latest Invocation Statuses", "request": { "name": "List Latest Invocation Statuses", @@ -219941,7 +219941,7 @@ }, "response": [ { - "id": "7758cdad-9a98-4638-8a3b-bb68f11ad9df", + "id": "aec95e58-c4e9-411a-9021-772a6b598bd1", "name": "List of latest invocation statuses.", "originalRequest": { "url": { @@ -220031,7 +220031,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5919dba9-8c3d-4571-aaad-6296afa0fca2", + "id": "39e3b717-3efa-4298-a3f0-7c0eaf3d418c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -220121,7 +220121,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5e8a00ea-fe9c-45ea-a9dc-eeb04e3a70a7", + "id": "a003f4a4-6d24-4e45-a3d7-777eb32ce56a", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -220211,7 +220211,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b0743ce4-55d8-411a-85b2-6ac057cae01d", + "id": "888c2756-8fa8-484c-87e8-6ef73683223b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -220301,7 +220301,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d6bcd3c3-571e-472c-9a49-270b23200e4d", + "id": "e12100eb-1dc0-4b32-8a9d-fa633a8a2dca", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -220391,7 +220391,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5a623139-e759-439d-a872-a5b2fdaa9a18", + "id": "ea131320-b323-4962-9b95-6f7c74bfb746", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -220487,7 +220487,7 @@ } }, { - "id": "1fa8883e-c66d-45f1-a428-6ef8fae2b9e4", + "id": "346fe17a-70e9-4745-9b6a-89125d47e169", "name": "Complete Trigger Invocation", "request": { "name": "Complete Trigger Invocation", @@ -220542,7 +220542,7 @@ }, "response": [ { - "id": "cf5b744f-40c0-4b47-ac1e-af92d70683dc", + "id": "d00ef3bf-5deb-4f3f-9d97-4fe738717866", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -220590,7 +220590,7 @@ "_postman_previewlanguage": "text" }, { - "id": "e5108928-418b-48b1-8c9d-7dfab2f7e183", + "id": "91da7a2c-683a-405a-ac16-e92c09d19812", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -220648,7 +220648,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7c697568-cd41-410e-912a-c8bb42f5bd19", + "id": "acb0ac43-afc0-4fc2-b48a-2fd0f8fb53ca", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -220706,7 +220706,7 @@ "_postman_previewlanguage": "json" }, { - "id": "db05b16c-ff25-4740-af74-9b8ad04f7d4b", + "id": "2b34355b-b54f-486a-bb73-2f5a8ca9f8af", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -220764,7 +220764,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1eb5fcd0-4b47-44aa-9c08-fcb0f65e9f13", + "id": "db66e86b-ed09-4eaa-bb62-583458925794", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -220822,7 +220822,7 @@ "_postman_previewlanguage": "json" }, { - "id": "aaa56960-0114-41a5-988c-29f260bc4b24", + "id": "99200507-6963-43b3-a536-56d9b2597fd1", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -220886,7 +220886,7 @@ } }, { - "id": "1fe32d7d-7474-473b-9e32-558c1702f848", + "id": "9f1d0d2a-f581-422a-b7d6-11f31273a19e", "name": "Start a Test Invocation", "request": { "name": "Start a Test Invocation", @@ -220929,7 +220929,7 @@ }, "response": [ { - "id": "0a9eab00-2e26-423a-89a1-f0255e5f35dc", + "id": "ecc55462-363e-432d-a86a-12364119f768", "name": "Test Trigger with Mock Input", "originalRequest": { "url": { @@ -220986,7 +220986,7 @@ "_postman_previewlanguage": "json" }, { - "id": "009cb1b6-bb2f-4ebe-8496-acd69f6b1781", + "id": "4f203f00-ee53-4078-9b3e-7f9f1647686f", "name": "Send Test to only One Subscriber", "originalRequest": { "url": { @@ -221043,7 +221043,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0bdf5226-d141-4ceb-930c-b20e52e70ff0", + "id": "768d0a0f-eb0c-4efc-9e01-17cff2293efd", "name": "Trigger invocation is skipped, because tenant has not subscribed to the specified trigger.", "originalRequest": { "url": { @@ -221090,7 +221090,7 @@ "_postman_previewlanguage": "text" }, { - "id": "c80d63eb-56fc-4a39-b4d1-85712173b640", + "id": "4e25a4b3-466f-405a-8fc5-76c29d83b5fa", "name": "Test Trigger with Mock Input", "originalRequest": { "url": { @@ -221147,7 +221147,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ee2c120d-3207-4d02-849d-80de68fca14e", + "id": "eac6caa2-76cc-4e02-993d-0ef6c1a37162", "name": "Send Test to only One Subscriber", "originalRequest": { "url": { @@ -221204,7 +221204,7 @@ "_postman_previewlanguage": "json" }, { - "id": "00ae36ba-9b4c-491a-865f-f98e514741c4", + "id": "13bbfe60-2ce4-4331-9e39-8af6a091c59a", "name": "Test Trigger with Mock Input", "originalRequest": { "url": { @@ -221261,7 +221261,7 @@ "_postman_previewlanguage": "json" }, { - "id": "18460160-3586-4499-b932-d64530cbf6a2", + "id": "7b3d6f3f-d3d1-4f72-8a3d-f59c4ca3169d", "name": "Send Test to only One Subscriber", "originalRequest": { "url": { @@ -221318,7 +221318,7 @@ "_postman_previewlanguage": "json" }, { - "id": "61e849ff-1ae8-478b-98cf-20b639f17cf0", + "id": "32a17065-d357-44e5-b04b-29ee6e0bd01e", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -221375,7 +221375,7 @@ "_postman_previewlanguage": "json" }, { - "id": "28204625-a05b-4d1f-9027-07762a3ed248", + "id": "af52b6da-5f21-4db7-b649-fa69130a00cb", "name": "Send Test to only One Subscriber", "originalRequest": { "url": { @@ -221432,7 +221432,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2a4cb93b-9ab2-4355-9c05-ad25fc471857", + "id": "f22a4c5a-bd6d-44c3-871e-c0bfb3eec1d8", "name": "Test Trigger with Mock Input", "originalRequest": { "url": { @@ -221489,7 +221489,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3f0ac6fc-8e7e-4e4c-afa2-f8ef7bfa814b", + "id": "059f2fa7-a24f-4cef-8d17-8c5f82d833c2", "name": "Send Test to only One Subscriber", "originalRequest": { "url": { @@ -221546,7 +221546,7 @@ "_postman_previewlanguage": "json" }, { - "id": "64531c2e-e9f2-4e88-b4ef-ed12930cc17b", + "id": "590ddbce-d120-426a-9188-670c8db2ba9a", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -221603,7 +221603,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c51fdd0c-141c-481a-87a0-898b86d69700", + "id": "348d3e56-6563-4e88-8a07-160d2dcf767a", "name": "Send Test to only One Subscriber", "originalRequest": { "url": { @@ -221672,7 +221672,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": "1d0e28b0-3fb2-436d-ad1b-d3e10b007d46", + "id": "dfd5ca60-869a-4d9d-a1be-bf6fe2d02ad5", "name": "Get a tenant UI metadata", "request": { "name": "Get a tenant UI metadata", @@ -221702,7 +221702,7 @@ }, "response": [ { - "id": "e12db64e-d133-43f2-b7f1-ace68db8a3ad", + "id": "699a368d-8124-40ed-945b-97270ae9d0ff", "name": "A tenant UI metadata object", "originalRequest": { "url": { @@ -221746,7 +221746,7 @@ "_postman_previewlanguage": "json" }, { - "id": "df3bf53a-2556-40af-b535-30a0add9fafb", + "id": "ce1b399f-3200-48fb-8b5c-6b9a46ea12c8", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -221790,7 +221790,7 @@ "_postman_previewlanguage": "json" }, { - "id": "358f04b8-44b5-49c3-8517-eb3688430556", + "id": "aeb55ebc-42d4-42d1-85c0-34bf4f71fbcf", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -221834,7 +221834,7 @@ "_postman_previewlanguage": "json" }, { - "id": "555c99d5-b76a-4555-b750-dd11c59f572b", + "id": "c35c9ab0-446f-4dcb-9798-72f0428dfd83", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -221878,7 +221878,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b484b614-5f4a-44a9-803e-f0a9da902ffc", + "id": "09f6bf37-9d1f-45dc-9f36-7e73034b259e", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -221922,7 +221922,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e909c725-9d22-42e4-b26c-12b289ee64c5", + "id": "fe97d46d-b1da-435a-8653-1885a706fffa", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -221966,7 +221966,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9bd44b1c-76bb-4fa6-9376-3cad4b04e684", + "id": "0b7142c6-8be4-4940-a0ed-fceb24298f6d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -222016,7 +222016,7 @@ } }, { - "id": "998aef53-03aa-4ee7-8bd8-c3d15fcee5a2", + "id": "270ec8af-e7f4-4e3b-a9b2-094e7541edc2", "name": "Update tenant UI metadata", "request": { "name": "Update tenant UI metadata", @@ -222059,7 +222059,7 @@ }, "response": [ { - "id": "be943d18-4391-4f23-ae36-1e47cd770dae", + "id": "8cf8ffe9-9331-41b0-931d-bbf30b18fb62", "name": "A tenant UI metadata object", "originalRequest": { "url": { @@ -222116,7 +222116,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bc3a71f8-dcc3-4675-a620-c4ac9a14c967", + "id": "66a15b59-e872-4b0e-84ee-8f4b32217c25", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -222173,7 +222173,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0131920e-11f1-4ff4-aad1-706ee8e9fd76", + "id": "f340a3f3-4187-4c58-9881-dfec53430106", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -222230,7 +222230,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d78dcc80-08dd-45f6-b368-9e730c0db0ea", + "id": "d2a2b612-6fc8-4d83-b92d-f9650877d6c7", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -222287,7 +222287,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b8990dff-2f6d-4c2b-9bd9-fcd3d34a7fd8", + "id": "19f4d3d3-e938-4f8c-af2f-335851ffc8fd", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -222344,7 +222344,7 @@ "_postman_previewlanguage": "json" }, { - "id": "55a420b8-7c78-44d3-ae02-6eb92b82d140", + "id": "56e66f84-6df8-4167-b7ef-5d2d68ca3943", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -222401,7 +222401,7 @@ "_postman_previewlanguage": "json" }, { - "id": "01275f7e-3e11-4933-937d-7866369738b1", + "id": "1eda24ce-3c21-42d3-a2a2-de3e9d94e1d6", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -222470,7 +222470,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": "600d9130-836d-4ba3-9193-f8e9000d85d8", + "id": "60c214a9-7c4c-42ec-9b16-58ae16e4c0d0", "name": "List Work Items", "request": { "name": "List Work Items", @@ -222520,7 +222520,7 @@ "type": "text/plain" }, "key": "ownerId", - "value": "labore" + "value": "laborum qui aliquip irure" } ], "variable": [] @@ -222536,7 +222536,7 @@ }, "response": [ { - "id": "9999362b-3caf-4975-bbba-b4f24a48276e", + "id": "351b749b-ed5e-44d5-8c1a-f01284efd4f3", "name": "List of work items", "originalRequest": { "url": { @@ -222581,7 +222581,7 @@ "type": "text/plain" }, "key": "ownerId", - "value": "labore" + "value": "laborum qui aliquip irure" } ], "variable": [] @@ -222616,7 +222616,7 @@ "_postman_previewlanguage": "json" }, { - "id": "82523cc7-1df5-4ff6-bb58-e6c6a020aaa1", + "id": "6b787b6d-8313-4220-b631-efde05b2e5f6", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -222661,7 +222661,7 @@ "type": "text/plain" }, "key": "ownerId", - "value": "labore" + "value": "laborum qui aliquip irure" } ], "variable": [] @@ -222696,7 +222696,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f3d7b585-03b6-4ef6-b43d-5c27d643d58d", + "id": "ce5a7595-5ff0-4293-b606-a8ddae83b46f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -222741,7 +222741,7 @@ "type": "text/plain" }, "key": "ownerId", - "value": "labore" + "value": "laborum qui aliquip irure" } ], "variable": [] @@ -222776,7 +222776,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d903b858-675f-4b8d-b382-c65f4f36e15e", + "id": "58fdd7ec-d4e2-43c1-8ce5-b266371ac764", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -222821,7 +222821,7 @@ "type": "text/plain" }, "key": "ownerId", - "value": "labore" + "value": "laborum qui aliquip irure" } ], "variable": [] @@ -222862,7 +222862,7 @@ } }, { - "id": "19187e1e-ca86-4375-8c0c-02b056464b46", + "id": "e7b104e8-fb32-4b87-a8d5-8e0c43099792", "name": "Completed Work Items", "request": { "name": "Completed Work Items", @@ -222886,7 +222886,7 @@ "type": "text/plain" }, "key": "ownerId", - "value": "labore" + "value": "laborum qui aliquip irure" }, { "disabled": true, @@ -222929,7 +222929,7 @@ }, "response": [ { - "id": "d52e1b7a-e388-4272-8345-de6f2d998e1e", + "id": "40c97229-4bed-4eb2-9d09-591d09e3fd16", "name": "List of completed work items.", "originalRequest": { "url": { @@ -222948,7 +222948,7 @@ "type": "text/plain" }, "key": "ownerId", - "value": "labore" + "value": "laborum qui aliquip irure" }, { "disabled": true, @@ -223010,7 +223010,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8a68fa9c-eae8-4ccb-b2ba-0f1cacc47590", + "id": "35625608-e20d-4a29-9c16-036e2a406d2e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -223029,7 +223029,7 @@ "type": "text/plain" }, "key": "ownerId", - "value": "labore" + "value": "laborum qui aliquip irure" }, { "disabled": true, @@ -223091,7 +223091,7 @@ "_postman_previewlanguage": "json" }, { - "id": "45adcd2c-0c9a-4fcc-b5bd-df5c6da25110", + "id": "cb214a8f-39fb-4c2b-81e6-11040a1edd58", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -223110,7 +223110,7 @@ "type": "text/plain" }, "key": "ownerId", - "value": "labore" + "value": "laborum qui aliquip irure" }, { "disabled": true, @@ -223172,7 +223172,7 @@ "_postman_previewlanguage": "json" }, { - "id": "becd7d5a-e038-418d-89fa-df25e511958f", + "id": "b65aebfa-2b35-44e9-8bb9-3fe8912b86b4", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -223191,7 +223191,7 @@ "type": "text/plain" }, "key": "ownerId", - "value": "labore" + "value": "laborum qui aliquip irure" }, { "disabled": true, @@ -223259,7 +223259,7 @@ } }, { - "id": "d8ed9738-5bf5-4844-a18a-3dbc1bcc4a35", + "id": "730c18f7-a297-42a1-8b36-9d80fec77c93", "name": "Count Work Items", "request": { "name": "Count Work Items", @@ -223283,7 +223283,7 @@ "type": "text/plain" }, "key": "ownerId", - "value": "labore" + "value": "laborum qui aliquip irure" } ], "variable": [] @@ -223299,7 +223299,7 @@ }, "response": [ { - "id": "67ca89b6-c12c-4a2c-b99c-ba88e9b46c76", + "id": "9564a33d-cb03-4b26-8480-c7e228e283e6", "name": "List of work items", "originalRequest": { "url": { @@ -223318,7 +223318,7 @@ "type": "text/plain" }, "key": "ownerId", - "value": "labore" + "value": "laborum qui aliquip irure" } ], "variable": [] @@ -223353,7 +223353,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eb10e65d-cc30-4105-9d0d-60adca5c1401", + "id": "6ec0c778-002e-40c2-9992-67228fdcfadb", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -223372,7 +223372,7 @@ "type": "text/plain" }, "key": "ownerId", - "value": "labore" + "value": "laborum qui aliquip irure" } ], "variable": [] @@ -223407,7 +223407,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e22de441-ae31-48ce-962b-685b64faf00c", + "id": "fac29c09-bdd1-4fdd-a458-a0c701f276b1", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -223426,7 +223426,7 @@ "type": "text/plain" }, "key": "ownerId", - "value": "labore" + "value": "laborum qui aliquip irure" } ], "variable": [] @@ -223461,7 +223461,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5d9d8bf4-c857-4328-8cb2-bec664502b00", + "id": "85c4972a-6298-4825-95c3-8a37419e0ab9", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -223480,7 +223480,7 @@ "type": "text/plain" }, "key": "ownerId", - "value": "labore" + "value": "laborum qui aliquip irure" } ], "variable": [] @@ -223521,7 +223521,7 @@ } }, { - "id": "5a6d5b33-340a-441a-b69f-e60a676b4562", + "id": "b119f066-daeb-412b-996a-0526f910f5c1", "name": "Count Completed Work Items", "request": { "name": "Count Completed Work Items", @@ -223546,7 +223546,7 @@ "type": "text/plain" }, "key": "ownerId", - "value": "labore" + "value": "laborum qui aliquip irure" } ], "variable": [] @@ -223562,7 +223562,7 @@ }, "response": [ { - "id": "42725742-c211-408e-9ac4-574f0d49c998", + "id": "53e896ed-8c9d-4c52-b77a-6049d573ab4e", "name": "List of work items", "originalRequest": { "url": { @@ -223582,7 +223582,7 @@ "type": "text/plain" }, "key": "ownerId", - "value": "labore" + "value": "laborum qui aliquip irure" } ], "variable": [] @@ -223617,7 +223617,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ea99df81-da55-4669-a323-9f3dc7600019", + "id": "c8c79254-fb2c-444a-bd65-888f9949516b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -223637,7 +223637,7 @@ "type": "text/plain" }, "key": "ownerId", - "value": "labore" + "value": "laborum qui aliquip irure" } ], "variable": [] @@ -223672,7 +223672,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2757e343-0952-40ab-a84a-c57f54c0656f", + "id": "883f94f6-b531-41f4-8346-386ae711f14a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -223692,7 +223692,7 @@ "type": "text/plain" }, "key": "ownerId", - "value": "labore" + "value": "laborum qui aliquip irure" } ], "variable": [] @@ -223727,7 +223727,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bec86d06-618d-4eb6-989f-e737ae1248e5", + "id": "856e22cd-34c8-4212-b435-83e1b6750abe", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -223747,7 +223747,7 @@ "type": "text/plain" }, "key": "ownerId", - "value": "labore" + "value": "laborum qui aliquip irure" } ], "variable": [] @@ -223788,7 +223788,7 @@ } }, { - "id": "793e8840-13ef-43e5-89f8-6c56816cd0e3", + "id": "3bf96108-a7e5-4336-81d4-55eff50fc66d", "name": "Work Items Summary", "request": { "name": "Work Items Summary", @@ -223812,7 +223812,7 @@ "type": "text/plain" }, "key": "ownerId", - "value": "labore" + "value": "laborum qui aliquip irure" } ], "variable": [] @@ -223828,7 +223828,7 @@ }, "response": [ { - "id": "56e6b0f6-e21e-4fa4-8e04-4a982fdd5508", + "id": "ecd38cbd-8c56-41b2-9e42-f2385619ce65", "name": "List of work items", "originalRequest": { "url": { @@ -223847,7 +223847,7 @@ "type": "text/plain" }, "key": "ownerId", - "value": "labore" + "value": "laborum qui aliquip irure" } ], "variable": [] @@ -223882,7 +223882,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d783a1ab-80c7-46b3-b134-e6213b0f4df4", + "id": "e30d67d4-8185-468c-bf2d-bbdf7b99d005", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -223901,7 +223901,7 @@ "type": "text/plain" }, "key": "ownerId", - "value": "labore" + "value": "laborum qui aliquip irure" } ], "variable": [] @@ -223936,7 +223936,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dddcd76c-c8a2-4429-b482-edd1297cc347", + "id": "a7f73c3b-94ff-40cd-bd0f-4319561bc300", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -223955,7 +223955,7 @@ "type": "text/plain" }, "key": "ownerId", - "value": "labore" + "value": "laborum qui aliquip irure" } ], "variable": [] @@ -223990,7 +223990,7 @@ "_postman_previewlanguage": "json" }, { - "id": "019e5ac6-84a1-4eb4-bab7-2413a494d96c", + "id": "fb3d1b93-0879-4e8b-8ab5-d474830e6db7", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -224009,7 +224009,7 @@ "type": "text/plain" }, "key": "ownerId", - "value": "labore" + "value": "laborum qui aliquip irure" } ], "variable": [] @@ -224050,7 +224050,7 @@ } }, { - "id": "5c86d6f1-cbf2-4c27-9309-64616a08dbc4", + "id": "1107dbf0-d94d-4e21-b41b-23c75ef99b40", "name": "Get a Work Item", "request": { "name": "Get a Work Item", @@ -224074,13 +224074,13 @@ "type": "text/plain" }, "key": "ownerId", - "value": "labore" + "value": "laborum qui aliquip irure" } ], "variable": [ { "type": "any", - "value": "labore", + "value": "laborum qui aliquip irure", "key": "id", "disabled": true, "description": { @@ -224101,7 +224101,7 @@ }, "response": [ { - "id": "a69b19ec-ea5b-461c-8fe0-b4455778db58", + "id": "230a92b1-a8f6-4484-b54b-81d655fba4b8", "name": "The work item with the given ID.", "originalRequest": { "url": { @@ -224120,7 +224120,7 @@ "type": "text/plain" }, "key": "ownerId", - "value": "labore" + "value": "laborum qui aliquip irure" } ], "variable": [] @@ -224155,7 +224155,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2ad73bc2-b04e-4e2e-a7e6-f081482a13db", + "id": "5969fc24-94e7-40eb-835a-6f61a5bddf51", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -224174,7 +224174,7 @@ "type": "text/plain" }, "key": "ownerId", - "value": "labore" + "value": "laborum qui aliquip irure" } ], "variable": [] @@ -224209,7 +224209,7 @@ "_postman_previewlanguage": "json" }, { - "id": "139fa07c-122a-40b4-b16c-5b53216cd606", + "id": "b000503d-d2ed-4f90-ba91-2956b7476130", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -224228,7 +224228,7 @@ "type": "text/plain" }, "key": "ownerId", - "value": "labore" + "value": "laborum qui aliquip irure" } ], "variable": [] @@ -224263,7 +224263,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b2c57662-87ee-4801-930d-8090d608d9a6", + "id": "f547e610-32c6-4716-bae8-46f9c5a2c4bd", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -224282,7 +224282,7 @@ "type": "text/plain" }, "key": "ownerId", - "value": "labore" + "value": "laborum qui aliquip irure" } ], "variable": [] @@ -224323,7 +224323,7 @@ } }, { - "id": "e5f0921d-d271-4fa7-824d-05c26199b29a", + "id": "e047debc-7578-451a-9ff0-b7ff6c374eca", "name": "Complete a Work Item", "request": { "name": "Complete a Work Item", @@ -224364,7 +224364,7 @@ }, "response": [ { - "id": "68740ee8-53a0-43ac-905d-9a3468767d64", + "id": "ffa0bdfe-870e-4988-9023-e3938003798e", "name": "A WorkItems object", "originalRequest": { "url": { @@ -224408,7 +224408,7 @@ "_postman_previewlanguage": "json" }, { - "id": "769e7bbb-e177-456f-baf3-7c1b709b4714", + "id": "33db06cd-ec3b-4a86-87fb-2342c1ffb153", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -224452,7 +224452,7 @@ "_postman_previewlanguage": "json" }, { - "id": "51327123-ec5b-4341-b4ae-220cc0abf78f", + "id": "7adadc0b-1cae-4eac-9275-2a585234d0ce", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -224496,7 +224496,7 @@ "_postman_previewlanguage": "json" }, { - "id": "aa53951a-b494-47ba-90cf-b39007d3b9d8", + "id": "789e423b-8a87-480a-bc0f-9526d9be42ca", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -224546,7 +224546,7 @@ } }, { - "id": "58e58f7b-22f3-4b82-a3da-4c80bff86bb2", + "id": "208f00f5-f81a-4fcd-b2c7-93d903f21a21", "name": "Forward a Work Item", "request": { "name": "Forward a Work Item", @@ -224601,7 +224601,7 @@ }, "response": [ { - "id": "2f297d4e-1934-457e-8189-76193e33ac64", + "id": "ff50a1ba-927d-489b-aced-1986bc1cc5b2", "name": "Success, but no data is returned.", "originalRequest": { "url": { @@ -224649,7 +224649,7 @@ "_postman_previewlanguage": "text" }, { - "id": "493560f4-5d29-4340-9dc0-03dee592905b", + "id": "aa92ac80-a2fe-48f6-8e54-5e28316794cb", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -224707,7 +224707,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3e71946f-4521-494d-8172-cb1c4202693e", + "id": "3dfe5dd2-a78f-4aa8-9301-f3f90fa31c42", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -224765,7 +224765,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a2b8f9bd-df07-4504-9baa-abc0064f35ee", + "id": "b7f5d534-1b5b-4301-ae8a-188f70b8a4fa", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -224823,7 +224823,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6ea6b81c-1e1e-46b8-a1ff-ae2710203673", + "id": "d7e919de-ddf3-4179-b027-42ba3fed4d49", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -224881,7 +224881,7 @@ "_postman_previewlanguage": "json" }, { - "id": "db146c31-9b6a-4bca-8fd4-9daaf0ff37f0", + "id": "c73bbe13-bebc-4706-b967-bf7417a8b5e3", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -224945,7 +224945,7 @@ } }, { - "id": "f908e45a-8f13-4a87-b4d4-fdeb63a3a3cb", + "id": "04c0acea-768d-425c-a6c3-378ed23f632c", "name": "Approve an Approval Item", "request": { "name": "Approve an Approval Item", @@ -224998,7 +224998,7 @@ }, "response": [ { - "id": "3570af73-a315-4e06-af79-eddca9a1bf9e", + "id": "3bde9ca7-c98d-4da0-977b-c80b185e2b6e", "name": "A work items details object.", "originalRequest": { "url": { @@ -225044,7 +225044,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3eef5325-bda9-459e-8152-2783b27fdc08", + "id": "86996725-5186-4039-9c00-0764ce2f145d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -225090,7 +225090,7 @@ "_postman_previewlanguage": "json" }, { - "id": "27394bfd-bda3-4cc7-a9c6-15ad64c2e9b8", + "id": "41f0129d-23d7-4c8f-81e4-fa7cb7c392bc", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -225136,7 +225136,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5607869c-49d0-47b3-852a-9cff30b8f877", + "id": "d47efada-3fd3-4489-b607-67f0f21741a7", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -225188,7 +225188,7 @@ } }, { - "id": "6f4d1e4b-b562-4ea1-9c1f-443a11c0992d", + "id": "b9bb2d21-c6b2-4cbb-8880-48df3036b673", "name": "Reject an Approval Item", "request": { "name": "Reject an Approval Item", @@ -225241,7 +225241,7 @@ }, "response": [ { - "id": "8d1e117c-ed3e-44ef-bbf7-5033d8633cd0", + "id": "7fa1369d-55d6-4219-9df5-da6178cdf67e", "name": "A work items details object.", "originalRequest": { "url": { @@ -225287,7 +225287,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ba7ff7b0-d16d-4b32-a48f-d0362d69f604", + "id": "5bd901dc-e451-4ab2-997c-a8346a7f7bfd", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -225333,7 +225333,7 @@ "_postman_previewlanguage": "json" }, { - "id": "631a60e4-71c9-4624-954c-a61e0033641f", + "id": "bd42bfb5-df05-43dd-8728-c06229b5a829", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -225379,7 +225379,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a5f481e5-6183-405e-bd52-85dba5c79cb7", + "id": "6f80eb6a-5b36-4cf5-b3bd-6b7e49045f67", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -225431,7 +225431,7 @@ } }, { - "id": "168dc170-97f4-42fd-9d1b-991446365136", + "id": "d77673f7-5739-4c75-a04a-6dc41a09c73a", "name": "Bulk approve Approval Items", "request": { "name": "Bulk approve Approval Items", @@ -225473,7 +225473,7 @@ }, "response": [ { - "id": "131cc9f2-e880-415a-8ed2-f4a7e88b27e3", + "id": "a14a13fe-eec8-472e-8f43-7cf2c75bafc6", "name": "A work items details object.", "originalRequest": { "url": { @@ -225518,7 +225518,7 @@ "_postman_previewlanguage": "json" }, { - "id": "44b26cc8-e316-4f6d-8e6a-816030b751b9", + "id": "df2234d9-831d-4912-a398-5f65b91a0eed", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -225563,7 +225563,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bcedc482-39e4-4f5a-9c06-c34d7164aa6b", + "id": "e3c9ff0f-da43-4544-9476-7dd8542a89ab", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -225608,7 +225608,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a498eb8a-d122-41ec-beff-30613878155c", + "id": "fe5d1f59-21aa-4d84-bc3e-77b1cca28a2a", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -225659,7 +225659,7 @@ } }, { - "id": "bd26499a-935b-4c12-bacf-dd4a6fcdd7dc", + "id": "332efb91-aa1e-4b16-9e8c-5027c65d9dea", "name": "Bulk reject Approval Items", "request": { "name": "Bulk reject Approval Items", @@ -225701,7 +225701,7 @@ }, "response": [ { - "id": "b7ee1b73-74bc-468a-9b63-aad5909b23a6", + "id": "ad877aa4-fcdc-482b-a1f2-85bc4adeb7e4", "name": "A work items details object.", "originalRequest": { "url": { @@ -225746,7 +225746,7 @@ "_postman_previewlanguage": "json" }, { - "id": "35e7b4db-becd-47f3-ae1d-61836d96b227", + "id": "def364c5-50df-46db-8b61-f971e9e4f229", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -225791,7 +225791,7 @@ "_postman_previewlanguage": "json" }, { - "id": "18af13e0-3215-41c6-afc8-b9c249d8cb5a", + "id": "66b15910-1668-4d21-b89e-bfead7facfe2", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -225836,7 +225836,7 @@ "_postman_previewlanguage": "json" }, { - "id": "86792c9d-54eb-490e-a8d5-460b27cd1e2d", + "id": "d8c5d61e-19d6-486f-80a2-b3b62606d7bc", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -225887,7 +225887,7 @@ } }, { - "id": "a6bc506d-2d52-4e51-8432-d9a01d0faddb", + "id": "ca4e8daa-bebf-4ac3-b171-1b27e46b6f02", "name": "Submit Account Selections", "request": { "name": "Submit Account Selections", @@ -225942,7 +225942,7 @@ }, "response": [ { - "id": "50a37bba-1114-4e25-a475-b980b5e81605", + "id": "69220ac2-1535-4dcf-91ed-315ad60d634a", "name": "A work items details object.", "originalRequest": { "url": { @@ -226000,7 +226000,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2453041c-d303-4d05-9897-928f5879c09a", + "id": "85e40bd4-63b0-4b72-b5c8-70a8a2889533", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -226058,7 +226058,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cea3ecb5-1d5d-4915-a8b7-1a66f2b60ecb", + "id": "193e35b1-a207-44ba-aaba-acb11352cf5b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -226116,7 +226116,7 @@ "_postman_previewlanguage": "json" }, { - "id": "381d9fa7-f0f0-4394-a933-de2079f9186f", + "id": "673b053b-b175-481a-8151-6b4fd11d9808", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -226186,7 +226186,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": "ec838423-2e9c-47f1-8c4c-5db2a846f1b1", + "id": "95c5bb78-403b-4451-a73d-840f4b8016d3", "name": "List Reassignment Config Types", "request": { "name": "List Reassignment Config Types", @@ -226216,7 +226216,7 @@ }, "response": [ { - "id": "143f6d66-26d2-4123-aa10-2be30ab425c7", + "id": "41ee0b5e-e516-42b3-8d62-041a707b0a18", "name": "List of Reassignment Configuration Types", "originalRequest": { "url": { @@ -226260,7 +226260,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e104ec2c-8e49-4297-a668-313a102be40d", + "id": "0e77ae98-49b7-452d-930d-cd45ca0ff3b1", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -226304,7 +226304,7 @@ "_postman_previewlanguage": "json" }, { - "id": "68d40883-9eb3-496d-a252-bd57f650b296", + "id": "cca5f1b8-0544-48bd-b8df-000c771c909e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -226348,7 +226348,7 @@ "_postman_previewlanguage": "json" }, { - "id": "61b3509d-18f6-4711-a8d2-af624c853b02", + "id": "901090dd-b122-4220-be80-62c5bdf752d4", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -226392,7 +226392,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fcc3aeae-b527-4bf4-b86c-59c6ce437258", + "id": "b70e62a6-a105-41c9-909b-f0cd6be090ff", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -226436,7 +226436,7 @@ "_postman_previewlanguage": "json" }, { - "id": "47471a14-b270-4f8f-b181-4fdd4e039174", + "id": "3d724528-6c95-41fc-a941-18e9a331f0c9", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -226486,7 +226486,7 @@ } }, { - "id": "5ee85a81-01c8-434d-b55f-7eca1d04db8f", + "id": "559d2d16-ce29-4f20-9de5-dabf223fa492", "name": "List Reassignment Configurations", "request": { "name": "List Reassignment Configurations", @@ -226515,7 +226515,7 @@ }, "response": [ { - "id": "187c3d32-d12f-4a6f-9c4d-42527f43dc79", + "id": "8b6be102-00f6-41f1-ab08-fb9b55672209", "name": "A list of Reassignment Configurations for an org", "originalRequest": { "url": { @@ -226558,7 +226558,7 @@ "_postman_previewlanguage": "json" }, { - "id": "380be6ea-301a-4449-907a-22ce98492135", + "id": "f0be2775-8edd-4784-81bb-da7f5b79633a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -226601,7 +226601,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ba266ebe-c552-49a2-b60f-1d4108c40a1c", + "id": "92a57cab-502e-4a45-aa55-db6113b78b75", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -226644,7 +226644,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c9f03089-3d90-4fbf-b6e7-6a09a0f78fe9", + "id": "3d0b4f16-74d3-4e3c-9724-d6bd2ba361e5", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -226687,7 +226687,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4749a2b2-0e0a-489b-8e8f-f2739642cdbc", + "id": "4d1d4079-cc30-4e3f-b6a7-8fdfd3d660b4", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -226730,7 +226730,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3057e416-eb5a-4438-a90e-beec1176c589", + "id": "d4886b2b-9874-4ebe-aad8-dc91179d9218", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -226773,7 +226773,7 @@ "_postman_previewlanguage": "json" }, { - "id": "82533a35-7dcf-47c6-b16b-7c2af378c4e8", + "id": "d57035c8-70c6-4116-a69a-3c8ec040f65e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -226822,7 +226822,7 @@ } }, { - "id": "e08943c1-2e79-49ef-973f-7b1dc9899629", + "id": "a6b83809-b7e6-4d92-b8af-e1b5243fa32f", "name": "Create a Reassignment Configuration", "request": { "name": "Create a Reassignment Configuration", @@ -226864,7 +226864,7 @@ }, "response": [ { - "id": "e8086297-83b1-4201-9e18-fe19a1e4f64d", + "id": "52eb021b-d18a-4df0-b6af-2feb3eddd7d9", "name": "The newly created Reassignment Configuration object", "originalRequest": { "url": { @@ -226920,7 +226920,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4cb6ca8a-1c10-4b90-8f29-77fc3e11992c", + "id": "2d9e5a4a-b3a8-4db8-9a7b-9f276d6d2424", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -226976,7 +226976,7 @@ "_postman_previewlanguage": "json" }, { - "id": "00735caf-ed47-4d2d-b18d-3300f614b90a", + "id": "27f2b88f-5b9c-40a7-af5d-017d74884884", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -227032,7 +227032,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b3d15b72-3e6a-44df-8d4d-8200cf445ba4", + "id": "939cf824-9232-4de6-99a2-b53b022ca033", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -227088,7 +227088,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8749fc28-b339-47a8-ad2c-71bd66271788", + "id": "2226fd21-f0df-4ea1-a5e4-3ae6752843f3", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -227144,7 +227144,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f8ee9c3b-4548-4732-8eac-a72e4354bc47", + "id": "4d7fb06f-06f5-416f-8558-4acee247c626", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -227206,7 +227206,7 @@ } }, { - "id": "2fba7b37-6adb-4bc1-bafe-b33cff988b14", + "id": "5551ca50-5fdc-419c-ac3d-8f5ebc731a91", "name": "Get Reassignment Configuration", "request": { "name": "Get Reassignment Configuration", @@ -227247,7 +227247,7 @@ }, "response": [ { - "id": "fead1fb8-08b7-4675-a7a1-479dd78df980", + "id": "512b8a2f-2b93-4b26-9c4f-3989c8d1b7d6", "name": "Reassignment Configuration for an identity", "originalRequest": { "url": { @@ -227291,7 +227291,7 @@ "_postman_previewlanguage": "json" }, { - "id": "74346595-365a-4bbd-ba04-6a7095b682b2", + "id": "a7b11e2a-273c-4132-8a41-3ecf09347e6c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -227335,7 +227335,7 @@ "_postman_previewlanguage": "json" }, { - "id": "188639e4-a6ed-492f-85bb-70ae13aaca03", + "id": "d9b7469d-a633-4b2d-8f0a-64c52bcbcb75", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -227379,7 +227379,7 @@ "_postman_previewlanguage": "json" }, { - "id": "aa089916-4f89-4601-82f3-59409bddd945", + "id": "250fd833-4660-44e3-b2cd-04ca59a6a42e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -227423,7 +227423,7 @@ "_postman_previewlanguage": "json" }, { - "id": "44143f86-f30b-463d-82a0-c9985025e070", + "id": "ae36da64-293d-4b28-b88a-01ba8487a568", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -227467,7 +227467,7 @@ "_postman_previewlanguage": "json" }, { - "id": "912e174d-72dd-4c0f-a936-1d0fdb57dce7", + "id": "31a476fb-87e8-4afc-87be-ec26120be47e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -227511,7 +227511,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c5e28745-bc5c-4082-bafc-66a5eae4f3f3", + "id": "56ed33e4-03e9-4368-9c9e-4cdb02af122c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -227561,7 +227561,7 @@ } }, { - "id": "fefa0e36-91b2-464c-ae92-e04dd8af5ef3", + "id": "dc8535c0-a17f-4729-b8f4-4570f53e41b2", "name": "Update Reassignment Configuration", "request": { "name": "Update Reassignment Configuration", @@ -227615,7 +227615,7 @@ }, "response": [ { - "id": "17462aed-c67a-4d65-ad6e-3d9f993227b2", + "id": "a184358b-a67b-434b-98a3-b1b5f4c453e5", "name": "Reassignment Configuration updated", "originalRequest": { "url": { @@ -227672,7 +227672,7 @@ "_postman_previewlanguage": "json" }, { - "id": "70a2b2b6-c8c2-4809-bf2f-d1ada97f0fe0", + "id": "4a6df5c1-59a2-4121-a737-af24868fec75", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -227729,7 +227729,7 @@ "_postman_previewlanguage": "json" }, { - "id": "95ba80bb-0ad7-4964-9feb-72f067489073", + "id": "4de74fac-b621-4d1a-b497-5fd9924c3bce", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -227786,7 +227786,7 @@ "_postman_previewlanguage": "json" }, { - "id": "93678231-a9b7-4255-a3e9-bc06a6922caf", + "id": "182619d0-e60a-4850-844e-41deb64ead39", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -227843,7 +227843,7 @@ "_postman_previewlanguage": "json" }, { - "id": "27fadecf-5595-4983-a02c-f2fec4a8d2e6", + "id": "a1726ef8-e0a8-4a69-945b-0deb91472b3f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -227900,7 +227900,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4b0574c1-6f00-4795-9b21-15bb63e38431", + "id": "c2742a9d-8ed0-40c0-a40b-bd91c7b05c4b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -227963,7 +227963,7 @@ } }, { - "id": "eb928fea-568e-4fda-a8b3-cfd2183d85af", + "id": "0c610907-e190-41e8-a5ea-2f88b9a89e16", "name": "Delete Reassignment Configuration", "request": { "name": "Delete Reassignment Configuration", @@ -228004,7 +228004,7 @@ }, "response": [ { - "id": "30c2d5c3-2c63-4275-8396-ab51ede5ebda", + "id": "4c5bc663-7ec8-4ab7-b929-1edb7e469533", "name": "Reassignment Configuration deleted", "originalRequest": { "url": { @@ -228038,7 +228038,7 @@ "_postman_previewlanguage": "text" }, { - "id": "a28ec0f0-e46d-4d6a-98b2-c0894c30f22a", + "id": "f027b61a-6b26-476a-9a2b-9d182e264f10", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -228082,7 +228082,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9dc886cc-83fc-49d2-8ee3-29fdfcdd8478", + "id": "1e6b9ae8-b862-4e9b-99d7-57abcdfe2c41", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -228126,7 +228126,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fe790df9-826f-4a77-8de8-82e7422359c8", + "id": "735acfc9-91e3-4209-858c-ad1eb22af881", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -228170,7 +228170,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7e9d5663-5ddd-47d6-86e7-1a3d59ff1420", + "id": "e5461670-a565-4742-9f1b-98127ca15d1b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -228214,7 +228214,7 @@ "_postman_previewlanguage": "json" }, { - "id": "edbd9fd7-5620-4acc-91b5-7fd1d467cf38", + "id": "50def51b-85e8-4a45-a969-a438e7a26f25", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -228264,7 +228264,7 @@ } }, { - "id": "f1faec74-7f0c-4d43-8833-45004d28d305", + "id": "71418970-c000-4709-9be6-84d055dd3bc2", "name": "Evaluate Reassignment Configuration", "request": { "name": "Evaluate Reassignment Configuration", @@ -228327,7 +228327,7 @@ }, "response": [ { - "id": "9ef9c123-7802-4e95-b272-f2c9b3e20367", + "id": "418195eb-5cc7-494d-8608-5d31db12d70e", "name": "Evaluate response when no Reassignment Configuration is found", "originalRequest": { "url": { @@ -228383,7 +228383,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e69acef7-f4e8-428b-be5e-33b6a67bc315", + "id": "c749c7ec-9c7e-40f9-b716-5dbc95b09786", "name": "Evaluate response when a long Reassignment trail is found", "originalRequest": { "url": { @@ -228439,7 +228439,7 @@ "_postman_previewlanguage": "json" }, { - "id": "81d11095-23bf-4b1f-ae9e-9184859f7df6", + "id": "2a73085d-08d7-48f8-a638-5253e2daaf24", "name": "Evaluate response when a self-review is found and manager or org admin escalation is applied", "originalRequest": { "url": { @@ -228495,7 +228495,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b689cc74-6fed-481c-bbaf-24eaada8be0e", + "id": "49ab8bb8-4f24-4056-8dfe-85816016ec7e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -228551,7 +228551,7 @@ "_postman_previewlanguage": "json" }, { - "id": "98066d3d-35d5-4902-985f-ec5f4199f54b", + "id": "a829e0ca-04eb-45e5-90a0-c77c19a3fc98", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -228607,7 +228607,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bdbdd1ac-8d54-4de0-aad1-11e97fbf3d0f", + "id": "9bb7fa18-d888-4971-b268-ee6f9d756864", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -228663,7 +228663,7 @@ "_postman_previewlanguage": "json" }, { - "id": "78683e3e-57ff-48c3-9f28-91180ddf46ae", + "id": "f147bf30-f523-4b4a-9408-42335d8b1b2c", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -228719,7 +228719,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5371441a-f730-44db-a755-d5754447abd2", + "id": "58b0abde-7e9b-49c5-89a1-2d5ff6ec2238", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -228781,7 +228781,7 @@ } }, { - "id": "fa6f187d-a48b-4307-92f7-c3f2cc974aac", + "id": "2d1fc05a-21eb-432f-bc2f-0c12dd417b46", "name": "Get Tenant-wide Reassignment Configuration settings", "request": { "name": "Get Tenant-wide Reassignment Configuration settings", @@ -228811,7 +228811,7 @@ }, "response": [ { - "id": "91e8673d-a162-460c-8140-b8ce85a5e115", + "id": "626ef203-73fe-4600-a3ec-ca13cf852793", "name": "Tenant-wide Reassignment Configuration settings", "originalRequest": { "url": { @@ -228855,7 +228855,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cd7be9f2-7bf8-495e-85ff-1906d7c39f31", + "id": "3ff1f28a-b854-411e-8792-82cf9a17f3d1", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -228899,7 +228899,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cc13d65d-6261-45c0-8f2c-fa90ac8eae43", + "id": "771896d2-1765-486d-a5d5-033804aebf00", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -228943,7 +228943,7 @@ "_postman_previewlanguage": "json" }, { - "id": "28fe9b93-4cf8-41d4-ab8e-abb97a99457b", + "id": "7754d28d-8f89-4c40-b5d7-4edb9e095bc8", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -228987,7 +228987,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c6d991fe-833f-4f63-9a58-de2041de479e", + "id": "8f6d2741-17b7-44a1-b5b9-a2ae7e62f9e8", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -229031,7 +229031,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8eaa498a-f709-4fa5-888c-d1fcd3973246", + "id": "f2e399e9-511f-46c0-a473-4e914cb71b42", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -229075,7 +229075,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a34d49d4-78c7-4768-b3e0-47b4f1e7e215", + "id": "141ee5d4-a0c7-41cf-882c-600e341acf00", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -229125,7 +229125,7 @@ } }, { - "id": "db92b6c5-d587-450f-b1ce-04f8d15acf52", + "id": "e8bbba48-d4c5-4eb1-a6e3-4bc108d48a2d", "name": "Update Tenant-wide Reassignment Configuration settings", "request": { "name": "Update Tenant-wide Reassignment Configuration settings", @@ -229168,7 +229168,7 @@ }, "response": [ { - "id": "b1808c77-793b-4532-93b7-c3c1f6e937dc", + "id": "1262e069-dca8-4725-a7a1-657486d7d138", "name": "Tenant-wide Reassignment Configuration settings", "originalRequest": { "url": { @@ -229225,7 +229225,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6f9cd6c6-5d7a-4596-90b4-aeec2628d70e", + "id": "43213d47-2aa7-48c8-a46a-dbc926073487", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -229282,7 +229282,7 @@ "_postman_previewlanguage": "json" }, { - "id": "003c9ebe-f82f-4c6c-97a9-8bf9b7f8e47c", + "id": "2fdb5ec6-f3e2-48fb-880c-bb9ef6178254", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -229339,7 +229339,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5c18db84-630e-4e6d-a669-80910f506836", + "id": "b5297a6a-aa14-4216-8692-160dd244bd50", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -229396,7 +229396,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3c248f66-dee0-471e-9e29-fe5eb75a3cef", + "id": "b1bdacc5-018d-4aef-a27b-30c01d7dec88", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -229453,7 +229453,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ec495fd8-aef8-4021-8687-2ca07ca0d088", + "id": "a49b48d2-a5de-481c-b245-397241b70121", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -229522,7 +229522,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": "89e9ce69-0240-403d-808d-625a19f8485a", + "id": "0bb9b120-417f-4817-bbf7-1d9fd0418ccf", "name": "Create Workflow", "request": { "name": "Create Workflow", @@ -229564,7 +229564,7 @@ }, "response": [ { - "id": "8b0a39eb-2893-424d-8492-d114f8fccdcf", + "id": "0c0977fc-5317-41e4-a340-d6bd21a48caf", "name": "Event Trigger", "originalRequest": { "url": { @@ -229615,12 +229615,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\": \"dolor laborum\"\n },\n \"displayName\": \"consequat deserunt exercitation\"\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\": \"eiusmod ad quis in\"\n },\n \"displayName\": \"occaecat eu sit\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "0123ea5f-ccc1-4f8a-b5ee-0ecefdb3c076", + "id": "63cfb831-0e92-409b-96a4-6dcf2230d3ae", "name": "Scheduled Trigger", "originalRequest": { "url": { @@ -229671,12 +229671,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\": \"dolor laborum\"\n },\n \"displayName\": \"consequat deserunt exercitation\"\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\": \"eiusmod ad quis in\"\n },\n \"displayName\": \"occaecat eu sit\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "46add94e-fc90-4182-8866-a4c287d2793a", + "id": "979799fa-f36a-4e26-abb7-9f74b0c87d0a", "name": "Event Trigger", "originalRequest": { "url": { @@ -229732,7 +229732,7 @@ "_postman_previewlanguage": "json" }, { - "id": "758f05f8-f4de-4834-854b-b2dacfffe85b", + "id": "f218c04e-6feb-48f4-b85f-8eb3cef5efb0", "name": "Scheduled Trigger", "originalRequest": { "url": { @@ -229788,7 +229788,7 @@ "_postman_previewlanguage": "json" }, { - "id": "21868745-5e57-4598-967d-cce15791a193", + "id": "8495befd-1355-413d-8708-beb5c45f8e59", "name": "Event Trigger", "originalRequest": { "url": { @@ -229844,7 +229844,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e28055e8-ab62-4ab5-bca8-85796dd5d6c4", + "id": "925f8505-ee2c-43a3-bb07-347ba31b1cf6", "name": "Scheduled Trigger", "originalRequest": { "url": { @@ -229900,7 +229900,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d208a7c5-e41e-4d7a-ab68-1c2749b5126f", + "id": "c2f521d6-e26c-4d6e-a459-7f385a4b5757", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -229956,7 +229956,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0fc26570-0561-45ae-94fd-84321bb18f8d", + "id": "34c430d1-59a3-43f2-98ae-a53e8dcf1d42", "name": "Scheduled Trigger", "originalRequest": { "url": { @@ -230012,7 +230012,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a6f77b51-74e8-4e04-9308-65e608145068", + "id": "05dd9f62-8fd4-4dd6-b646-583492534254", "name": "Event Trigger", "originalRequest": { "url": { @@ -230068,7 +230068,7 @@ "_postman_previewlanguage": "json" }, { - "id": "280cd350-e27c-4e3c-9c65-6005002bd6f3", + "id": "95f82219-9e19-4aa3-aeef-fa44414faed6", "name": "Scheduled Trigger", "originalRequest": { "url": { @@ -230124,7 +230124,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c46e9df6-ae07-4a58-8110-b8a0470d746d", + "id": "28326961-f89b-47f8-8c85-21fea59a165d", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -230180,7 +230180,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6a6f01c4-c108-47a9-8f17-ad724306e5ef", + "id": "d4020380-e9ae-45a6-ac49-bc604333e359", "name": "Scheduled Trigger", "originalRequest": { "url": { @@ -230242,7 +230242,7 @@ } }, { - "id": "f91290b9-b8fc-442b-92f2-dc71923959a4", + "id": "c75ef18d-4f1a-4fa9-8784-8c96da759727", "name": "List Workflows", "request": { "name": "List Workflows", @@ -230271,7 +230271,7 @@ }, "response": [ { - "id": "38e4e1bb-de1d-4f6b-aba3-72188cc083dc", + "id": "89422404-2367-4c8f-9a4a-a2c2b7a2c589", "name": "List of workflows", "originalRequest": { "url": { @@ -230309,12 +230309,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\": \"aliquip \"\n },\n \"displayName\": \"Lorem culpa dolore ipsum ex\"\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\": \"officia\"\n },\n \"displayName\": \"dolor\"\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\": \"quis proident Excepteur commodo\"\n },\n \"displayName\": \"aute ex 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\": \"consectetur\"\n },\n \"displayName\": \"nisi anim qui proident consectetur\"\n }\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "1a015485-73f7-4524-b11b-2c53dd5ed222", + "id": "bf8b8dbb-9a38-4123-b473-ad1201adbbbc", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -230357,7 +230357,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a74c28a0-8d0c-4d99-ae6e-efec16d3e994", + "id": "0516cb86-c927-417a-879a-2b7b556a7439", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -230400,7 +230400,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5032e913-a92d-4b85-82cb-1cb8bde00512", + "id": "a17a1adb-3b16-4cf0-8c20-bd6771db7125", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -230443,7 +230443,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fe294f86-bd1c-41a1-ace8-015ab2749cfd", + "id": "7bc367eb-a24e-49fa-9b12-6c9cecf552fa", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -230486,7 +230486,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8c88a9c8-eb5e-42f0-9bdc-9ca7e39d177a", + "id": "eb7bfdfa-a24c-4317-bcd9-1db3f67eaad0", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -230535,7 +230535,7 @@ } }, { - "id": "11354453-0745-4cd3-9432-abf946e3c114", + "id": "bc5dcfb8-97f5-4e14-9fe6-eff1e2543423", "name": "Get Workflow By Id", "request": { "name": "Get Workflow By Id", @@ -230576,7 +230576,7 @@ }, "response": [ { - "id": "ad39383d-bc13-4432-88f8-10a2ce1fdcb6", + "id": "a0f7bbf2-4230-4a29-a5e0-ed12150a4301", "name": "The workflow object", "originalRequest": { "url": { @@ -230615,12 +230615,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\": \"dolor laborum\"\n },\n \"displayName\": \"consequat deserunt exercitation\"\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\": \"eiusmod ad quis in\"\n },\n \"displayName\": \"occaecat eu sit\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "3a1c7177-d230-4dd8-be29-aaf0ac805b40", + "id": "436e4e22-63ef-49e1-848c-da3eb2925488", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -230664,7 +230664,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ad64a91c-7a89-42fd-8e02-cbadd86d2817", + "id": "b598adf5-226f-40a7-9ef3-e6e42c34db0d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -230708,7 +230708,7 @@ "_postman_previewlanguage": "json" }, { - "id": "044b8fad-1348-482d-9e36-b941f21afa98", + "id": "e1704bf0-8a99-492c-a3dd-e4bb1708fcfa", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -230752,7 +230752,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1b9358fa-47aa-4e6a-b8c3-40ab78ab2edb", + "id": "99e30d3f-37e7-467e-b6cf-ee19751c4408", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -230796,7 +230796,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c3d78821-22fc-497a-b83c-bbb4b3c2a40f", + "id": "e09925b7-8479-4365-a2f0-9ac7616fa6ff", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -230846,7 +230846,7 @@ } }, { - "id": "80ae310c-060d-407d-8c47-ac3da2a1d5cb", + "id": "78f23452-d667-4afc-a76b-beb5e0a1a6ac", "name": "Update Workflow", "request": { "name": "Update Workflow", @@ -230889,7 +230889,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\": \"qui velit ex dolore\"\n },\n \"displayName\": \"dolor\"\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\": \"mollit minim consequat quis\"\n },\n \"displayName\": \"adipisicing et deserunt nostrud\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -230900,7 +230900,7 @@ }, "response": [ { - "id": "7e76ce94-90b8-407c-9764-9be7d89db507", + "id": "39658fe8-c165-474b-8fbf-126a818ffb9c", "name": "The Workflow object", "originalRequest": { "url": { @@ -230935,7 +230935,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\": \"qui velit ex dolore\"\n },\n \"displayName\": \"dolor\"\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\": \"mollit minim consequat quis\"\n },\n \"displayName\": \"adipisicing et deserunt nostrud\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -230952,12 +230952,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\": \"dolor laborum\"\n },\n \"displayName\": \"consequat deserunt exercitation\"\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\": \"eiusmod ad quis in\"\n },\n \"displayName\": \"occaecat eu sit\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a21a3d96-9a98-44bf-8d58-7eb7e9347ee9", + "id": "7934be2e-f3a0-4b55-8e3b-6a76cc4635d4", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -230992,7 +230992,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\": \"qui velit ex dolore\"\n },\n \"displayName\": \"dolor\"\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\": \"mollit minim consequat quis\"\n },\n \"displayName\": \"adipisicing et deserunt nostrud\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -231014,7 +231014,7 @@ "_postman_previewlanguage": "json" }, { - "id": "99fd4ef5-28f6-4cc7-b1f4-80860a50fae0", + "id": "ed9d851c-2398-4f08-b57e-d9136de6eada", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -231049,7 +231049,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\": \"qui velit ex dolore\"\n },\n \"displayName\": \"dolor\"\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\": \"mollit minim consequat quis\"\n },\n \"displayName\": \"adipisicing et deserunt nostrud\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -231071,7 +231071,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5b229a5e-58ca-4aa8-815b-55ae8ff50bb2", + "id": "cec7eee5-ea37-40ff-bff7-faa52d87ad83", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -231106,7 +231106,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\": \"qui velit ex dolore\"\n },\n \"displayName\": \"dolor\"\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\": \"mollit minim consequat quis\"\n },\n \"displayName\": \"adipisicing et deserunt nostrud\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -231128,7 +231128,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9d20a23f-f216-4e8f-b5b1-5e313acd29dd", + "id": "d251ca71-d5ae-4446-aba5-6bdcbdcd8111", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -231163,7 +231163,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\": \"qui velit ex dolore\"\n },\n \"displayName\": \"dolor\"\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\": \"mollit minim consequat quis\"\n },\n \"displayName\": \"adipisicing et deserunt nostrud\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -231185,7 +231185,7 @@ "_postman_previewlanguage": "json" }, { - "id": "77b04c32-aa0f-4156-8530-5589a23440f1", + "id": "b008c61c-d368-4887-a252-9b86a8b029e7", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -231220,7 +231220,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\": \"qui velit ex dolore\"\n },\n \"displayName\": \"dolor\"\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\": \"mollit minim consequat quis\"\n },\n \"displayName\": \"adipisicing et deserunt nostrud\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -231248,7 +231248,7 @@ } }, { - "id": "40b06c75-c12b-4bcd-b6ba-e37556d1d626", + "id": "decc0ce1-1330-4759-b05b-ee76d445c1be", "name": "Patch Workflow", "request": { "name": "Patch Workflow", @@ -231302,7 +231302,7 @@ }, "response": [ { - "id": "acec5e29-9cb6-4e8d-bcf1-0d80c248e2f0", + "id": "b496a1e0-831c-439b-9fc5-a2d6c197bbd5", "name": "The Workflow object", "originalRequest": { "url": { @@ -231354,12 +231354,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\": \"dolor laborum\"\n },\n \"displayName\": \"consequat deserunt exercitation\"\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\": \"eiusmod ad quis in\"\n },\n \"displayName\": \"occaecat eu sit\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "203d4f63-7b80-4f5f-874c-3974d334a603", + "id": "dda8f92f-adba-47a2-a60a-7ba38e5cf585", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -231416,7 +231416,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7b5d5509-1737-4221-85dd-02bcfcabad6e", + "id": "b1351ebd-5193-4120-8869-419ad7497a60", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -231473,7 +231473,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5d105b2a-33d1-4405-adaa-894f90ce9dde", + "id": "70355d79-9dc4-4c24-a45e-8733b92d0c5d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -231530,7 +231530,7 @@ "_postman_previewlanguage": "json" }, { - "id": "aee2240b-e88d-4915-bbf2-555391ff29b8", + "id": "9d0b066b-e1cf-44a6-bd66-e0cbd59d63ff", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -231587,7 +231587,7 @@ "_postman_previewlanguage": "json" }, { - "id": "754fe740-a8a3-4e91-8b6b-2ea6b66d73e9", + "id": "d7c5903b-dc8c-4569-9833-9653bc712248", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -231650,7 +231650,7 @@ } }, { - "id": "9f7d18ff-3244-489e-8ada-48d59a91a6c4", + "id": "7d6a5f30-3e14-4174-8bf9-3c6a8d9194f9", "name": "Delete Workflow By Id", "request": { "name": "Delete Workflow By Id", @@ -231691,7 +231691,7 @@ }, "response": [ { - "id": "d442b57a-491a-4250-9fa8-d1a784b1eb2d", + "id": "f1e53038-83f8-481a-a763-cc43bab34f96", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -231725,7 +231725,7 @@ "_postman_previewlanguage": "text" }, { - "id": "911cd736-f4cf-4f1d-a06d-bb0bbe11c735", + "id": "9dbfaf1b-6a65-4991-8a62-58eca33a17b6", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -231769,7 +231769,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a512905e-b5b1-41e8-8257-77a9fb2cbefb", + "id": "c1013810-2080-4180-9c7a-26cd328c0697", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -231813,7 +231813,7 @@ "_postman_previewlanguage": "json" }, { - "id": "77ef01ff-64b3-4458-a8ed-1779ae767998", + "id": "84750383-cb2f-422a-b787-92e63685e81b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -231857,7 +231857,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0118fdd0-fff6-4489-8f9e-5b6216b5c91d", + "id": "170f3191-b42a-4243-8838-18494372870d", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -231901,7 +231901,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a7d70ed3-bdd9-4658-8fb3-0ee529e4d426", + "id": "ce9afdc0-1918-4856-a6f3-ad7c0c94b81a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -231951,7 +231951,7 @@ } }, { - "id": "5fab8cfe-8933-4d87-b718-192bf31021a4", + "id": "5fb40fce-332e-4fcf-b5c1-40df60dccb81", "name": "Test Workflow By Id", "request": { "name": "Test Workflow By Id", @@ -232006,7 +232006,7 @@ }, "response": [ { - "id": "941ab690-5269-4abe-a1f5-b8b15537b5b2", + "id": "7b632cdb-daa0-4cd1-983a-5258dae27e04", "name": "The Workflow object", "originalRequest": { "url": { @@ -232064,7 +232064,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a8beb39c-ce84-47b9-8fa9-69a179726194", + "id": "cc36827c-fc45-4cdc-a6c4-0761fafe55c1", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -232122,7 +232122,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ad043be8-620f-4e6a-97ec-98dc7a1ee1b4", + "id": "6a386a77-f210-4585-a509-3f86874155c3", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -232180,7 +232180,7 @@ "_postman_previewlanguage": "json" }, { - "id": "db39309e-97b4-4c7f-adb6-23894b023981", + "id": "bbfb8509-9a51-4159-8816-0d017d73622e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -232238,7 +232238,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5d3553b7-6a45-470a-8052-72ed9b31fd2e", + "id": "16b5c65d-6cf3-40c6-9702-afab24742c5c", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -232296,7 +232296,7 @@ "_postman_previewlanguage": "json" }, { - "id": "20291049-d7a1-4a0d-bbc0-bfe8ad0b2679", + "id": "945251d6-ef3e-40ff-a88c-c7a74c9c1493", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -232360,7 +232360,7 @@ } }, { - "id": "c8d4d333-03c7-4457-8098-30cd449660f5", + "id": "442073da-337c-4f95-987c-8d0fe7082552", "name": "List Workflow Executions", "request": { "name": "List Workflow Executions", @@ -232439,7 +232439,7 @@ }, "response": [ { - "id": "d57cb6fa-8aaf-4593-99be-dd2ec8595bcc", + "id": "916ec5f0-6c94-4e22-af70-27ba68eef6e8", "name": "List of workflow executions for the specified workflow. ", "originalRequest": { "url": { @@ -232521,7 +232521,7 @@ "_postman_previewlanguage": "json" }, { - "id": "75547c81-773d-4d3e-af4a-9b93cbb80e18", + "id": "722e2387-9b9e-4a1c-bcf2-6b12a28facd5", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -232603,7 +232603,7 @@ "_postman_previewlanguage": "json" }, { - "id": "684e902b-23e6-4d44-bc03-3893f0422b7a", + "id": "0ebee241-bc1e-4f1a-b38b-813bcbdcb18d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -232685,7 +232685,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d957f229-7859-4f4d-b15c-eeb63a9f020a", + "id": "fd0509a4-0015-46cf-be5e-84a5d2979e20", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -232767,7 +232767,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7e9a955f-ec2b-46ef-889d-3d01a467c366", + "id": "e750b9f4-4c4b-4a29-b1cd-f8a9df9de4e5", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -232849,7 +232849,7 @@ "_postman_previewlanguage": "json" }, { - "id": "364d71e9-4e2a-4493-89fd-a0ad621842b9", + "id": "f6e9a6a7-2075-4b6b-8f65-5e9be8c56a0f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -232931,7 +232931,7 @@ "_postman_previewlanguage": "json" }, { - "id": "508f9fe1-a6dc-4b9b-affc-09598ea8d408", + "id": "b367464b-8d50-4e73-9d22-ce0a8c0303de", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -233019,7 +233019,7 @@ } }, { - "id": "7cdcd12d-f363-4c97-8119-fd39850deeab", + "id": "9dcc58c1-f43b-4f21-a062-aba7a23915e8", "name": "Get Workflow Execution", "request": { "name": "Get Workflow Execution", @@ -233060,7 +233060,7 @@ }, "response": [ { - "id": "dd3cb512-026e-4c7d-8327-f88d1c25f5ab", + "id": "56c53ce3-b021-4a8a-aaaf-bb8b38367dec", "name": "Workflow execution.", "originalRequest": { "url": { @@ -233104,7 +233104,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2fe7abba-4faf-4ff2-a642-7d448677e296", + "id": "39f38a27-ae5d-408d-9d85-96ea568adb09", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -233148,7 +233148,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4ac156b5-3479-41c0-8673-4e15308d9e20", + "id": "0f35961c-25e7-426a-a5f5-e1da9fed5eb4", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -233192,7 +233192,7 @@ "_postman_previewlanguage": "json" }, { - "id": "def4a020-4701-47c7-ac79-f1f14791ab88", + "id": "404ef533-cb5e-4a9d-9dc0-8418dd6442fd", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -233236,7 +233236,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1516f3ea-1e9e-4869-b1a8-305bd896557f", + "id": "52aa8d59-750f-46ee-8756-726b44d87145", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -233280,7 +233280,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d62cda0f-7e82-4ed8-87b8-7e2dd794297e", + "id": "76d0c816-9234-401b-9b16-dcf82e9a024f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -233324,7 +233324,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f3d7f58e-fe8b-4a87-b068-571039baa153", + "id": "bef73cda-be45-4501-885e-1d527c28282f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -233374,7 +233374,7 @@ } }, { - "id": "862c9898-c190-4a5d-8252-cd4684ddd746", + "id": "5211044a-bfe0-451f-9072-98c00a10f45c", "name": "Get Workflow Execution History", "request": { "name": "Get Workflow Execution History", @@ -233416,7 +233416,7 @@ }, "response": [ { - "id": "0786e749-c598-42d8-9f36-327818b0f8c1", + "id": "0d4d1b63-c3e8-4a41-b65e-dee68e8fe294", "name": "List of workflow execution events for the given workflow execution", "originalRequest": { "url": { @@ -233461,7 +233461,7 @@ "_postman_previewlanguage": "json" }, { - "id": "aaa9fc70-5a3f-443b-9f6c-f4c4ac490eba", + "id": "36979510-024e-4ef6-8fb2-c6531934a547", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -233506,7 +233506,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c8ebe465-5baf-4ae8-bea1-11504849357b", + "id": "57a99555-122a-495f-ad11-27058e31c68d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -233551,7 +233551,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c15a48f4-92ef-446f-8516-10e1fb6afde8", + "id": "7fada178-42ab-4433-9633-50963a916481", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -233596,7 +233596,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1f041bbb-fdab-487a-b6af-133e8cc823f3", + "id": "304efcbf-1d71-4fd3-be58-9cf78ae7e020", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -233641,7 +233641,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ec84af2d-342a-4f28-ad00-d336b84919a2", + "id": "922f782d-adbf-43e9-9c7b-9c4796c07d7f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -233686,7 +233686,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e2419e81-c369-460e-8efc-1fcae31598f7", + "id": "7bad59f5-eccf-4729-ad09-61786eaa1b16", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -233737,7 +233737,7 @@ } }, { - "id": "ca7ee4f2-4cd5-473d-b43f-5eba30bc1f42", + "id": "436aa802-e56e-4277-9950-96483faaf1f6", "name": "Cancel Workflow Execution by ID", "request": { "name": "Cancel Workflow Execution by ID", @@ -233779,7 +233779,7 @@ }, "response": [ { - "id": "1453a639-84ff-4adc-ac6e-90d5d4d75298", + "id": "0266380d-7582-404f-89dd-aee483af1868", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -233814,7 +233814,7 @@ "_postman_previewlanguage": "text" }, { - "id": "adf5ec88-bd01-4809-9381-681ccad582ac", + "id": "eb9a26d5-bafe-4886-a624-196daeee03ab", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -233859,7 +233859,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b5b27309-7f7d-41d0-8822-af17ca9e401f", + "id": "d5380d3a-fe66-4d15-a42d-0e37afb65eda", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -233904,7 +233904,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d525c7a3-020c-4c00-b99d-fb6805785227", + "id": "75d7c5c7-0b39-4a92-bf37-a6451206e0d5", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -233949,7 +233949,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e912a1a0-90a6-4a5b-afc6-a552d8db1516", + "id": "1e5643c3-02af-4f46-813a-cfd55adab462", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -233994,7 +233994,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2c28b1eb-b791-45fa-9c25-104febdad8b1", + "id": "f4148db9-46a4-4dbb-a777-7549fe21c409", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -234039,7 +234039,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a877ce27-6669-485b-bd93-9ec8d840b84b", + "id": "94162d5b-95d2-4d98-bdfb-c7183ef590fd", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -234090,7 +234090,7 @@ } }, { - "id": "38669b8c-632f-49c1-bd2e-91dc01eedde9", + "id": "f16e8345-080e-4d8e-ae71-8d184cb07847", "name": "List Complete Workflow Library", "request": { "name": "List Complete Workflow Library", @@ -234138,7 +234138,7 @@ }, "response": [ { - "id": "62c817c6-f60f-4cdc-a8cd-b255795c11ce", + "id": "42d336c0-84bf-4cf1-ab01-404c768fe9c2", "name": "List of workflow steps", "originalRequest": { "url": { @@ -234195,12 +234195,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\": \"1948-08-16T00:23:09.311Z\",\n \"versionNumber\": 94744174,\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\": \"2001-07-14T21:26:03.861Z\",\n \"versionNumber\": 11702601,\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\": \"2017-12-27T08:44:22.769Z\",\n \"versionNumber\": -69267518,\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\": \"2020-01-15T06:22:16.406Z\",\n \"versionNumber\": -3011071,\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": "09c8f1be-5b00-4183-972d-e2d0441aef4c", + "id": "d225a2fa-02f9-4c70-84d7-7fa14843edec", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -234262,7 +234262,7 @@ "_postman_previewlanguage": "json" }, { - "id": "570ac3eb-cae7-44fb-a84a-c2694233e1e2", + "id": "7aa0371e-d362-44db-aecd-a55170af3fdb", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -234324,7 +234324,7 @@ "_postman_previewlanguage": "json" }, { - "id": "741dda44-5292-4173-be86-a53d16599aa4", + "id": "ce3152e6-44fd-44af-91e2-308cd23a359b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -234386,7 +234386,7 @@ "_postman_previewlanguage": "json" }, { - "id": "885e788e-47b4-4e33-9b6e-ebb145fffd87", + "id": "9012ed39-18b2-403f-8335-60373668fb24", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -234448,7 +234448,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8e31536d-c021-49b2-a20e-d63bc6af3890", + "id": "7466dcc8-c54a-4fd9-a876-0027b3a80ec0", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -234516,7 +234516,7 @@ } }, { - "id": "8d49b593-e99f-4d7c-9f40-c71b324408ca", + "id": "5a422323-0d70-41d2-9674-b55c6b01fe8d", "name": "List Workflow Library Actions", "request": { "name": "List Workflow Library Actions", @@ -234574,7 +234574,7 @@ }, "response": [ { - "id": "a2097c21-4c94-4731-9ec2-1675b3986c0d", + "id": "57616f0a-87b5-4b76-bb5e-907042e904f8", "name": "List of workflow actions", "originalRequest": { "url": { @@ -234641,12 +234641,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\": \"1948-08-16T00:23:09.311Z\",\n \"versionNumber\": 94744174,\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\": \"2001-07-14T21:26:03.861Z\",\n \"versionNumber\": 11702601,\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\": \"2017-12-27T08:44:22.769Z\",\n \"versionNumber\": -69267518,\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\": \"2020-01-15T06:22:16.406Z\",\n \"versionNumber\": -3011071,\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": "2b303bc9-e565-47bf-8c9c-f4c0aab1688a", + "id": "a84381dc-2949-406d-88b6-e0f273bc6f6c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -234718,7 +234718,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a9923a65-1aea-4d6c-ae84-7699e1a43e14", + "id": "4a4494b2-cb2e-4d9a-bcb7-dc4757b9c7a3", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -234790,7 +234790,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5932b6a2-241f-41cb-ad8d-28dd673bddff", + "id": "2e13c84d-cba9-4b6f-b46a-cae63e9d2362", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -234862,7 +234862,7 @@ "_postman_previewlanguage": "json" }, { - "id": "166d27c0-645e-4798-b928-6ac4f0e20f56", + "id": "ecb59ed9-91c6-4d4c-a3ce-2c1141590471", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -234934,7 +234934,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c8a98dbe-61a9-49b6-9c09-fce52f503ab6", + "id": "5fcf1fc7-15eb-401e-9c4c-107dc1599a21", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -235012,7 +235012,7 @@ } }, { - "id": "a8d8130e-1ff8-47f4-8246-30bd5d8e47f6", + "id": "59e0a4b8-7b06-4a32-9209-4390ca61a669", "name": "List Workflow Library Triggers", "request": { "name": "List Workflow Library Triggers", @@ -235070,7 +235070,7 @@ }, "response": [ { - "id": "19e4104b-f90f-4328-be90-8ad318a613cb", + "id": "37b5e971-819a-46b1-9a93-ec13e010a082", "name": "List of workflow triggers", "originalRequest": { "url": { @@ -235137,12 +235137,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"idn:identity-attributes-changed\",\n \"type\": \"EVENT\",\n \"deprecated\": true,\n \"deprecatedBy\": \"1956-08-02T23:04:45.677Z\",\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\": \"2021-09-01T14:04:42.260Z\",\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\": false,\n \"deprecatedBy\": \"2010-09-06T07:20:56.787Z\",\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\": \"1987-01-17T09:26:44.657Z\",\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": "0df6aba5-dedf-4c65-b422-dd087a69ba9b", + "id": "c6107f2b-0582-42bc-bef2-28b0c2d74cd8", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -235214,7 +235214,7 @@ "_postman_previewlanguage": "json" }, { - "id": "38179131-2642-4577-b930-3f1b07be7323", + "id": "fa13a012-3a7d-4537-b70f-d88895562545", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -235286,7 +235286,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0487a4cb-8a8c-4d51-9161-6104beabf130", + "id": "c273408f-3826-4c3f-a921-1bf8a36234e8", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -235358,7 +235358,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bf2c1a24-913f-47a4-a40d-1bc8015bc28d", + "id": "da1fd04f-2cf9-4931-9d19-60690a7f3471", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -235430,7 +235430,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a7ec101a-c9f3-494c-a2cd-cbc431741e99", + "id": "de2e7bd2-d60c-4c93-9caa-2ddf21dc9046", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -235508,7 +235508,7 @@ } }, { - "id": "3a96fca5-748e-40f9-9363-8a54123fb8d1", + "id": "99422033-7a78-4bdd-a207-e5d84c4c684f", "name": "List Workflow Library Operators", "request": { "name": "List Workflow Library Operators", @@ -235538,7 +235538,7 @@ }, "response": [ { - "id": "9f76037c-608f-422f-8661-2dc48dadefb3", + "id": "94fae994-3def-4317-824a-ba17a8be7988", "name": "List of workflow operators", "originalRequest": { "url": { @@ -235577,12 +235577,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\": \"1973-05-14T10:50:06.007Z\",\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\": \"1948-07-02T23:31:45.344Z\",\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\": false,\n \"deprecatedBy\": \"2003-06-23T15:21:50.643Z\",\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\": \"1946-11-08T16:54:30.618Z\",\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": "1b6dc9a4-3f90-4017-9295-08129bfa91d3", + "id": "e0a5ef4c-29b5-4196-b5d8-bc3a13e5bf54", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -235626,7 +235626,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e9eed902-5f7f-432b-910f-bb01bb5bfef9", + "id": "4deb4d4c-d3b1-4daf-a2a6-8700f0f3ab8e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -235670,7 +235670,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f7224793-6166-4f6f-a09e-8fad48706a12", + "id": "5d13f7c2-00a7-4ef3-b58e-1e2fa2c3a3c7", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -235714,7 +235714,7 @@ "_postman_previewlanguage": "json" }, { - "id": "48fce16c-6e7f-4267-b664-14ddac661dba", + "id": "6405f55d-9ab7-4459-aeb3-ba6f9baf3601", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -235758,7 +235758,7 @@ "_postman_previewlanguage": "json" }, { - "id": "949367f7-f6a6-44e1-8771-f6a615401a3b", + "id": "ecd06957-442b-4646-b589-86c7ab2999d7", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -235808,7 +235808,7 @@ } }, { - "id": "08395e9f-280e-4bcd-a101-e6c915082d54", + "id": "3eaf7e7d-bd14-4926-90ee-7d5dedf6b08c", "name": "Generate External Trigger OAuth Client", "request": { "name": "Generate External Trigger OAuth Client", @@ -235851,7 +235851,7 @@ }, "response": [ { - "id": "f47710fe-b8d8-4d67-aa8d-3bda42821223", + "id": "646a1ebd-e403-42df-9ed1-ee488dcd5677", "name": "The OAuth Client object", "originalRequest": { "url": { @@ -235897,7 +235897,7 @@ "_postman_previewlanguage": "json" }, { - "id": "11a29b3d-3e06-415d-afb0-08eeecab58ff", + "id": "cd9c2895-7a19-4334-a2b6-9f872dab5313", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -235943,7 +235943,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6f4d0176-827c-48d3-9206-205ed4b1ba5a", + "id": "e302b944-5563-4d48-a599-63e11c5c45e2", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -235989,7 +235989,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fbc4c8ef-4b1e-4bf4-a0b4-24972d6ad6bb", + "id": "ea37547e-9aba-4c10-8006-c63393ec77bd", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -236035,7 +236035,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bf39d12a-3e5e-4507-a4c8-2268b53792e9", + "id": "3f99912f-e42c-41c2-8789-ec7b394eb4f0", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -236081,7 +236081,7 @@ "_postman_previewlanguage": "json" }, { - "id": "98f8cd7c-caa6-4f21-a977-0eb121dc7c5a", + "id": "5a7b0920-d939-4542-9f1d-b1c487743f2b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -236133,7 +236133,7 @@ } }, { - "id": "0e6b01cb-22bd-4e3e-bb51-0763d8c7e201", + "id": "7138a856-086a-411e-a8a1-8c7d816a80a7", "name": "Execute Workflow via External Trigger", "request": { "name": "Execute Workflow via External Trigger", @@ -236189,7 +236189,7 @@ }, "response": [ { - "id": "d65dc682-b433-4c93-962b-e8e46149a17e", + "id": "a88722cd-f9f5-4b1e-ab2d-10e1d54d9d8d", "name": "The Workflow object", "originalRequest": { "url": { @@ -236248,7 +236248,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4f214dda-6bda-4036-96e1-fbc3eed8f88d", + "id": "9152a5bd-0d20-4e62-a465-29c891884065", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -236307,7 +236307,7 @@ "_postman_previewlanguage": "json" }, { - "id": "301bc06e-8a47-4c14-9f94-99abf51e25f8", + "id": "33414802-1d62-49e5-a9d5-63c2fbc319cf", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -236366,7 +236366,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ce2d9141-4313-4066-b94d-c57343e05675", + "id": "413af7e2-c1e1-43e5-b619-ce0f3e78b552", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -236425,7 +236425,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8aec2989-7a35-4b93-9c8a-03154c912c9a", + "id": "b960f4af-edd5-4234-ba7e-f8a4379bafb0", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -236484,7 +236484,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4c608ad8-95f3-44dd-a0ae-e801c8b9189d", + "id": "ca0403b4-9cf8-4c0c-985a-e9dc996e027b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -236549,7 +236549,7 @@ } }, { - "id": "7aa7550d-e840-4b49-96a9-d870964e9e11", + "id": "3be94f07-1839-4c16-b6ae-f4b4cb4ae6d9", "name": "Test Workflow via External Trigger", "request": { "name": "Test Workflow via External Trigger", @@ -236606,7 +236606,7 @@ }, "response": [ { - "id": "9227a7d6-d37b-4bd0-a1ce-bfe449132ea3", + "id": "2f3da8be-4321-4f2f-bebc-a6d04aae3ec5", "name": "Responds with the test input", "originalRequest": { "url": { @@ -236666,7 +236666,7 @@ "_postman_previewlanguage": "json" }, { - "id": "153415b2-66de-4916-b81d-828cd754fb83", + "id": "81246fc8-9897-40f1-8178-6359dba45936", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -236726,7 +236726,7 @@ "_postman_previewlanguage": "json" }, { - "id": "41493e39-0a22-4709-a6d9-1e8abca45748", + "id": "ab47a91f-2450-43ee-a4cf-e534227a050b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -236786,7 +236786,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fbf510f9-5dfc-4aec-a0bd-c2b1bb4c0f70", + "id": "9568d622-5d43-4088-baf7-9d6c0355f665", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -236846,7 +236846,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cb59818d-9a5a-477a-b570-06451641501b", + "id": "419d3a82-9cd9-440d-9493-bd503a95a0c6", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -236906,7 +236906,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8ac26308-47ae-4c24-95c1-6a1ed97e9d81", + "id": "a52314e0-04c6-4e03-8d63-796b20a3b5a7", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -236978,7 +236978,7 @@ "description": "", "item": [ { - "id": "d3be6c46-16d5-4f4a-89a0-b85b436b7a32", + "id": "2fad3691-a58d-4154-809d-b4c91af52371", "name": "Get Approvals", "request": { "name": "Get Approvals", @@ -237035,7 +237035,7 @@ }, "response": [ { - "id": "883cf2d4-6318-4035-b11a-df51485a3938", + "id": "e1eca3df-28d9-4a42-bc8b-01061eb573c6", "name": "List of Approvals", "originalRequest": { "url": { @@ -237106,7 +237106,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cb38a831-2d0b-4995-8ef1-03b3f5f03136", + "id": "1280232a-345f-4ad3-ae3f-3b75f7b0f2c4", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -237177,7 +237177,7 @@ "_postman_previewlanguage": "json" }, { - "id": "77d7b669-ff6b-45fa-a3ad-723319c2b05d", + "id": "e8412d0c-de36-46c0-8cc1-a3246d9fa836", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -237248,7 +237248,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a5bf2752-3d58-4162-a31a-08f0491f1f0c", + "id": "b9efe21f-d1c0-4931-8d93-ca19636ba1f7", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -237319,7 +237319,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cf18a737-eeec-4600-8d30-d8e741d93108", + "id": "8ec8bfa9-9135-4823-8a87-484e80406a34", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -237390,7 +237390,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1eeca53b-205f-49e1-b5df-e8695a172398", + "id": "d1d5daa9-a78b-44ae-b648-f15558022438", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -237467,7 +237467,7 @@ } }, { - "id": "f1d181f8-6644-431a-bc70-c3a17c17b3f6", + "id": "59628eb1-d0e8-4a4f-875c-d41d0b9104fd", "name": "Get an approval", "request": { "name": "Get an approval", @@ -237508,7 +237508,7 @@ }, "response": [ { - "id": "7d2f2619-f776-4fc1-8873-869efdbd4e1c", + "id": "26f5b08a-633b-4ddb-8abb-4819998b6cfb", "name": "Approval object", "originalRequest": { "url": { @@ -237552,7 +237552,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a00bf51b-5d01-4fa5-af22-5385cccad4cc", + "id": "0e0484a5-02df-4ba9-a506-7242ed417131", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -237596,7 +237596,7 @@ "_postman_previewlanguage": "json" }, { - "id": "85fd4e09-d023-4a0a-892c-5ca6c17ec1e0", + "id": "f546fca6-ffb4-4a90-b83d-d481c7b72dc9", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -237640,7 +237640,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c1e6934e-284b-4dfe-b6ec-786a2479a28e", + "id": "054d87fb-709c-44ff-99ba-ef50e8977522", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -237684,7 +237684,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2aa768ca-8e09-41dc-b140-1adf0d4991f8", + "id": "1b018313-861b-40ec-9998-351eb4ffd2ee", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -237728,7 +237728,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5f5b5f8a-e2f8-4ed5-8232-85354809a1e3", + "id": "dd7a1838-e539-4830-9a7d-92d1f1ae9aa2", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -237778,7 +237778,7 @@ } }, { - "id": "28333ca3-442a-407c-92a5-819f773b49fe", + "id": "68e3a003-bd87-4072-8e7d-8278ed0fb11a", "name": "Change an approval", "request": { "name": "Change an approval", @@ -237826,7 +237826,7 @@ }, "response": [ { - "id": "d78ddbd8-dbdf-4e16-95d8-383b9b09ec01", + "id": "fb9cfd0e-0f37-46ef-91cb-98fb01f04807", "name": "Approval object", "originalRequest": { "url": { @@ -237883,7 +237883,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e36c891e-11ad-4212-b2c9-f6bb1790ed4d", + "id": "9e06f38f-f675-4225-ac38-a477c61dc54f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -237940,7 +237940,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7779b27b-3db9-48af-8e7f-15b593894181", + "id": "d155fad5-f9dd-4cce-bafd-60fff01df27a", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -237997,7 +237997,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b7ccfcb1-7258-4a38-b643-fe25ed063c5a", + "id": "2583a889-4691-4d6b-ba1d-f6ae3879309d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -238054,7 +238054,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1ed6a78b-9ed9-4f5f-83f1-de6fc30dfbec", + "id": "dc814aa5-2586-4773-9db0-fdc421498c3c", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -238111,7 +238111,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d4db35b5-f707-452f-9f3a-daf0891dbedf", + "id": "c66fa3a5-19a7-4500-a05a-2c427f02ca29", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -238180,7 +238180,7 @@ "description": "", "item": [ { - "id": "3391ee11-1a37-45b2-b6ab-83872389adb2", + "id": "30408119-a041-4a95-b0e0-943d0430ad1d", "name": "Create a vendor connector mapping", "request": { "name": "Create a vendor connector mapping", @@ -238222,7 +238222,7 @@ }, "response": [ { - "id": "8d70c8c0-0cdb-4803-bf8f-fba5f9f1d5c0", + "id": "7990a92e-0feb-4414-9cc2-ea174b0fc516", "name": "Successfully created a new vendor connector mapping.", "originalRequest": { "url": { @@ -238278,7 +238278,7 @@ "_postman_previewlanguage": "json" }, { - "id": "17bd0eaf-0df8-414e-a2f4-668982b5dc8b", + "id": "8bbd7b3a-c3c2-4895-8f1c-cfb6dc302d67", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -238334,7 +238334,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0968b18a-0555-4e23-8c26-eb8efe3b0454", + "id": "b53b7427-8749-4e59-8e2d-73d570556a5d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -238390,7 +238390,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1be4bd21-12aa-4aed-9a58-5086a698a5af", + "id": "b9a2ebb6-ff5e-40b9-b177-fe05d7e70121", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -238446,7 +238446,7 @@ "_postman_previewlanguage": "json" }, { - "id": "31e176b8-9281-4e69-85c1-6f1c2dc3b164", + "id": "1d5fb9c6-29be-488e-ad88-8fe2f1aac2ff", "name": "Method Not Allowed - indicates that the server knows the request method, but the target resource doesn't support this method.", "originalRequest": { "url": { @@ -238502,7 +238502,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ecfc5f66-f84f-4af1-b60d-bf18d2c05151", + "id": "4113c327-5250-4f6f-8353-4322e25e24dd", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -238558,7 +238558,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3ed7ff98-43fc-490e-9b39-0fa4cd899a3b", + "id": "96dca816-4231-40f0-926e-5ff93bbb37c2", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -238620,7 +238620,7 @@ } }, { - "id": "56c5cf4b-14a3-4ef3-a5bb-aa5642f75ee2", + "id": "e790c04c-ac46-422f-a267-e16c8f36309d", "name": "Delete a vendor connector mapping", "request": { "name": "Delete a vendor connector mapping", @@ -238662,7 +238662,7 @@ }, "response": [ { - "id": "5888bd50-20b7-400f-9076-9acd174bd002", + "id": "d0f24eaf-7b46-42aa-9a03-c75e98c208e3", "name": "Successfully deleted the specified vendor connector mapping.", "originalRequest": { "url": { @@ -238718,7 +238718,7 @@ "_postman_previewlanguage": "json" }, { - "id": "67e1d32d-87b5-4927-93ad-2309b4f85a94", + "id": "c9488ca1-4d7b-4a91-859c-92057a83fb21", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -238774,7 +238774,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a0c0e80a-8d6a-449b-a9eb-1d17068674ef", + "id": "3670103e-f29a-40c4-895e-32fc937f560d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -238830,7 +238830,7 @@ "_postman_previewlanguage": "json" }, { - "id": "43130893-15f5-421a-bafa-b86d7377ca84", + "id": "37673d08-9a8e-4b25-80cf-ba8cf3127f67", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -238886,7 +238886,7 @@ "_postman_previewlanguage": "json" }, { - "id": "69e359d3-fb6e-4c6d-8cfa-31f5fc16e5bf", + "id": "bc1eadb2-02c1-444a-9117-6560cc0da75c", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -238942,7 +238942,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dd9560b2-9e41-47ca-8e0e-f8a9a9e89f6c", + "id": "57b56acf-2497-4b3d-ad7d-56a3004a9936", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -238998,7 +238998,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1d051917-c40f-41cc-975d-689551ac3f0c", + "id": "361b5df5-7861-4346-8c2c-fb258f2b7cfe", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -239140,7 +239140,7 @@ } ], "info": { - "_postman_id": "c2c342e6-3300-4090-b344-040150d6e64b", + "_postman_id": "208491ad-bf8a-4ff6-80a2-c5a32557af32", "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 d5e027ad..f4f2ee11 100644 --- a/postman/collections/sailpoint-api-nerm.json +++ b/postman/collections/sailpoint-api-nerm.json @@ -5,7 +5,7 @@ "description": "", "item": [ { - "id": "5713ff37-983f-4ad9-b28b-87794f4b0ac8", + "id": "93641379-9f16-4246-991a-73123cea5bc9", "name": "Create a new user", "request": { "name": "Create a new user", @@ -48,7 +48,7 @@ }, "response": [ { - "id": "ef0394b9-f5e6-44b7-82ac-8fc5bac054fb", + "id": "da722190-8160-458f-84fc-6294ee0047ad", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -99,12 +99,12 @@ "value": "application/json" } ], - "body": "{\n \"user\": {\n \"id\": \"db6f8e8b-65c2-47d5-a0db-90bcc4e9df9e\",\n \"uid\": \"doloreirure sitest officialabore\",\n \"name\": \"myusername\",\n \"email\": \"test@sailpoint.com\",\n \"type\": \"NeprofileUser\",\n \"title\": \"Director\",\n \"status\": \"Active\",\n \"login\": \"myLogin\",\n \"last_login\": \"1983-03-29T00:17:47.094Z\",\n \"cookies_accepted_at\": \"2017-07-06T15:06:50.121Z\",\n \"preferred_language\": \"fr-CA\",\n \"locale\": \"fr-CA\"\n }\n}", + "body": "{\n \"user\": {\n \"id\": \"db6f8e8b-65c2-47d5-a0db-90bcc4e9df9e\",\n \"uid\": \"mollit Duis dolor doloresit veli\",\n \"name\": \"myusername\",\n \"email\": \"test@sailpoint.com\",\n \"type\": \"NeprofileUser\",\n \"title\": \"Director\",\n \"status\": \"Active\",\n \"login\": \"myLogin\",\n \"last_login\": \"1973-11-04T06:04:37.600Z\",\n \"cookies_accepted_at\": \"2003-02-04T20:02:11.501Z\",\n \"preferred_language\": \"fr-CA\",\n \"locale\": \"fr-CA\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d73a32eb-f702-4899-ad6d-706968a6d30d", + "id": "1a124d98-a4f4-48d4-947b-7b4632c7b9a4", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -160,7 +160,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f025b8d2-7d93-4659-87a4-1bfa929b0cee", + "id": "2e51d667-6de5-489a-822c-260d65425e1a", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -222,7 +222,7 @@ } }, { - "id": "ce725fdc-fc4b-40c7-a489-6a4b56b1fa52", + "id": "a86b1139-77d0-4db2-b586-1f40eb10c4c6", "name": "Get users", "request": { "name": "Get users", @@ -272,7 +272,7 @@ "type": "text/plain" }, "key": "name", - "value": "esse in in tempor" + "value": "ullamco reprehenderit exercitation velit " }, { "disabled": false, @@ -281,7 +281,7 @@ "type": "text/plain" }, "key": "login", - "value": "esse in in tempor" + "value": "ullamco reprehenderit exercitation velit " }, { "disabled": false, @@ -290,7 +290,7 @@ "type": "text/plain" }, "key": "title", - "value": "esse in in tempor" + "value": "ullamco reprehenderit exercitation velit " }, { "disabled": false, @@ -299,7 +299,7 @@ "type": "text/plain" }, "key": "status", - "value": "Active" + "value": "On Leave" }, { "disabled": false, @@ -308,7 +308,7 @@ "type": "text/plain" }, "key": "email", - "value": "cedRtAJPQk@VRynRAmjsPzTyMYksnEQljcNe.ofk" + "value": "aFnhrcRjYF5@yVYzwXGSvvdJTtQPkupdWjEtDx.zxtu" }, { "disabled": false, @@ -334,7 +334,7 @@ }, "response": [ { - "id": "15c0689e-cc39-4b50-bd05-1b78cd253227", + "id": "314eaf74-850c-4340-be10-ecc372944b58", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -379,7 +379,7 @@ "type": "text/plain" }, "key": "name", - "value": "esse in in tempor" + "value": "ullamco reprehenderit exercitation velit " }, { "disabled": false, @@ -388,7 +388,7 @@ "type": "text/plain" }, "key": "login", - "value": "esse in in tempor" + "value": "ullamco reprehenderit exercitation velit " }, { "disabled": false, @@ -397,7 +397,7 @@ "type": "text/plain" }, "key": "title", - "value": "esse in in tempor" + "value": "ullamco reprehenderit exercitation velit " }, { "disabled": false, @@ -406,7 +406,7 @@ "type": "text/plain" }, "key": "status", - "value": "Active" + "value": "On Leave" }, { "disabled": false, @@ -415,7 +415,7 @@ "type": "text/plain" }, "key": "email", - "value": "cedRtAJPQk@VRynRAmjsPzTyMYksnEQljcNe.ofk" + "value": "aFnhrcRjYF5@yVYzwXGSvvdJTtQPkupdWjEtDx.zxtu" }, { "disabled": false, @@ -454,12 +454,12 @@ "value": "application/json" } ], - "body": "{\n \"users\": [\n {\n \"id\": \"db6f8e8b-65c2-47d5-a0db-90bcc4e9df9e\",\n \"uid\": \"consectetur temporExcepteur nisi\",\n \"name\": \"myusername\",\n \"email\": \"test@sailpoint.com\",\n \"type\": \"NeprofileUser\",\n \"title\": \"Director\",\n \"status\": \"Active\",\n \"login\": \"myLogin\",\n \"last_login\": \"2014-07-18T22:59:17.942Z\",\n \"cookies_accepted_at\": \"2004-03-07T07:53:21.270Z\",\n \"preferred_language\": \"fr-CA\",\n \"locale\": \"fr-CA\"\n },\n {\n \"id\": \"db6f8e8b-65c2-47d5-a0db-90bcc4e9df9e\",\n \"uid\": \"minim commodo cillum nostrud aut\",\n \"name\": \"myusername\",\n \"email\": \"test@sailpoint.com\",\n \"type\": \"NeprofileUser\",\n \"title\": \"Director\",\n \"status\": \"Active\",\n \"login\": \"myLogin\",\n \"last_login\": \"1973-04-23T17:44:33.123Z\",\n \"cookies_accepted_at\": \"2001-03-28T00:16:41.548Z\",\n \"preferred_language\": \"fr-CA\",\n \"locale\": \"fr-CA\"\n }\n ],\n \"_metadata\": {\n \"limit\": -83520037,\n \"offset\": 58027704,\n \"total\": -9035379,\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\": \"autedo labore ea suntreprehender\",\n \"name\": \"myusername\",\n \"email\": \"test@sailpoint.com\",\n \"type\": \"NeprofileUser\",\n \"title\": \"Director\",\n \"status\": \"Active\",\n \"login\": \"myLogin\",\n \"last_login\": \"2002-02-25T14:55:40.684Z\",\n \"cookies_accepted_at\": \"2006-11-11T07:09:45.897Z\",\n \"preferred_language\": \"fr-CA\",\n \"locale\": \"fr-CA\"\n },\n {\n \"id\": \"db6f8e8b-65c2-47d5-a0db-90bcc4e9df9e\",\n \"uid\": \"dolore commodo consequatExcepteu\",\n \"name\": \"myusername\",\n \"email\": \"test@sailpoint.com\",\n \"type\": \"NeprofileUser\",\n \"title\": \"Director\",\n \"status\": \"Active\",\n \"login\": \"myLogin\",\n \"last_login\": \"1957-05-25T18:04:48.971Z\",\n \"cookies_accepted_at\": \"2022-08-18T00:32:01.613Z\",\n \"preferred_language\": \"fr-CA\",\n \"locale\": \"fr-CA\"\n }\n ],\n \"_metadata\": {\n \"limit\": 88174946,\n \"offset\": -64282479,\n \"total\": -97163043,\n \"next\": \"/endpoint?limit=10&offset=60\",\n \"previous\": \"/endpoint?limit=10&offset=40\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "8c5ec4f8-ec1f-4a3f-91b5-e733012d22e5", + "id": "439e8f71-55e1-4ebd-9fcb-64ba6ca46eb1", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -504,7 +504,7 @@ "type": "text/plain" }, "key": "name", - "value": "esse in in tempor" + "value": "ullamco reprehenderit exercitation velit " }, { "disabled": false, @@ -513,7 +513,7 @@ "type": "text/plain" }, "key": "login", - "value": "esse in in tempor" + "value": "ullamco reprehenderit exercitation velit " }, { "disabled": false, @@ -522,7 +522,7 @@ "type": "text/plain" }, "key": "title", - "value": "esse in in tempor" + "value": "ullamco reprehenderit exercitation velit " }, { "disabled": false, @@ -531,7 +531,7 @@ "type": "text/plain" }, "key": "status", - "value": "Active" + "value": "On Leave" }, { "disabled": false, @@ -540,7 +540,7 @@ "type": "text/plain" }, "key": "email", - "value": "cedRtAJPQk@VRynRAmjsPzTyMYksnEQljcNe.ofk" + "value": "aFnhrcRjYF5@yVYzwXGSvvdJTtQPkupdWjEtDx.zxtu" }, { "disabled": false, @@ -584,7 +584,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6ddebc58-3d6a-4d36-8c14-246fe5db4944", + "id": "d6d2bc5e-81a4-491d-b5ae-a48ac237bd32", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -629,7 +629,7 @@ "type": "text/plain" }, "key": "name", - "value": "esse in in tempor" + "value": "ullamco reprehenderit exercitation velit " }, { "disabled": false, @@ -638,7 +638,7 @@ "type": "text/plain" }, "key": "login", - "value": "esse in in tempor" + "value": "ullamco reprehenderit exercitation velit " }, { "disabled": false, @@ -647,7 +647,7 @@ "type": "text/plain" }, "key": "title", - "value": "esse in in tempor" + "value": "ullamco reprehenderit exercitation velit " }, { "disabled": false, @@ -656,7 +656,7 @@ "type": "text/plain" }, "key": "status", - "value": "Active" + "value": "On Leave" }, { "disabled": false, @@ -665,7 +665,7 @@ "type": "text/plain" }, "key": "email", - "value": "cedRtAJPQk@VRynRAmjsPzTyMYksnEQljcNe.ofk" + "value": "aFnhrcRjYF5@yVYzwXGSvvdJTtQPkupdWjEtDx.zxtu" }, { "disabled": false, @@ -715,7 +715,7 @@ } }, { - "id": "83f499c4-519b-4f6d-a623-d12b193eb4f7", + "id": "b5f6aeea-7831-4854-a597-7854dfe2e8f4", "name": "Create multiple new users", "request": { "name": "Create multiple new users", @@ -758,7 +758,7 @@ }, "response": [ { - "id": "1b9db0f2-14ed-492e-8771-ab130e21558f", + "id": "dbd81b1a-a7ab-4425-8b41-b54853199722", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -809,12 +809,12 @@ "value": "application/json" } ], - "body": "{\n \"users\": [\n {\n \"id\": \"db6f8e8b-65c2-47d5-a0db-90bcc4e9df9e\",\n \"uid\": \"est id velit reprehenderitLorem \",\n \"name\": \"myusername\",\n \"email\": \"test@sailpoint.com\",\n \"type\": \"NeprofileUser\",\n \"title\": \"Director\",\n \"status\": \"Active\",\n \"login\": \"myLogin\",\n \"last_login\": \"1951-11-09T23:58:10.098Z\",\n \"cookies_accepted_at\": \"1975-03-06T05:47:49.289Z\",\n \"preferred_language\": \"fr-CA\",\n \"locale\": \"fr-CA\"\n },\n {\n \"id\": \"db6f8e8b-65c2-47d5-a0db-90bcc4e9df9e\",\n \"uid\": \"ad non ullamcoessedeserunt quis \",\n \"name\": \"myusername\",\n \"email\": \"test@sailpoint.com\",\n \"type\": \"NeprofileUser\",\n \"title\": \"Director\",\n \"status\": \"Active\",\n \"login\": \"myLogin\",\n \"last_login\": \"1990-02-07T06:07:07.816Z\",\n \"cookies_accepted_at\": \"1945-03-03T14:26:29.537Z\",\n \"preferred_language\": \"fr-CA\",\n \"locale\": \"fr-CA\"\n }\n ]\n}", + "body": "{\n \"users\": [\n {\n \"id\": \"db6f8e8b-65c2-47d5-a0db-90bcc4e9df9e\",\n \"uid\": \"in aliquaoccaecat exercitationin\",\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-02T14:20:31.446Z\",\n \"cookies_accepted_at\": \"1990-05-24T03:19:15.225Z\",\n \"preferred_language\": \"fr-CA\",\n \"locale\": \"fr-CA\"\n },\n {\n \"id\": \"db6f8e8b-65c2-47d5-a0db-90bcc4e9df9e\",\n \"uid\": \"consequatipsum dolor culpa elitd\",\n \"name\": \"myusername\",\n \"email\": \"test@sailpoint.com\",\n \"type\": \"NeprofileUser\",\n \"title\": \"Director\",\n \"status\": \"Active\",\n \"login\": \"myLogin\",\n \"last_login\": \"2012-09-23T07:01:35.468Z\",\n \"cookies_accepted_at\": \"1979-09-30T19:50:22.339Z\",\n \"preferred_language\": \"fr-CA\",\n \"locale\": \"fr-CA\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b0d5608e-6ea8-4ec9-afd5-788a31215bf6", + "id": "e6c45527-0f66-4a6a-b407-ec7523b16a54", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -870,7 +870,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ba199b2e-b1fd-447a-9459-41841dd0786c", + "id": "89e8bcb2-fd48-4204-99c9-d7348503a9f0", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -932,7 +932,7 @@ } }, { - "id": "09d056f5-b4ae-44f0-997d-431d7fa3f5fa", + "id": "073142ab-7e1a-4414-8d80-d4bafa1f9622", "name": "Update multiple users", "request": { "name": "Update multiple users", @@ -975,7 +975,7 @@ }, "response": [ { - "id": "bd222cb2-3b45-45c6-bdab-82e8a82df43c", + "id": "429ec266-59b5-4211-beb5-159c402a655d", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -1026,12 +1026,12 @@ "value": "application/json" } ], - "body": "{\n \"users\": [\n {\n \"id\": \"db6f8e8b-65c2-47d5-a0db-90bcc4e9df9e\",\n \"uid\": \"est id velit reprehenderitLorem \",\n \"name\": \"myusername\",\n \"email\": \"test@sailpoint.com\",\n \"type\": \"NeprofileUser\",\n \"title\": \"Director\",\n \"status\": \"Active\",\n \"login\": \"myLogin\",\n \"last_login\": \"1951-11-09T23:58:10.098Z\",\n \"cookies_accepted_at\": \"1975-03-06T05:47:49.289Z\",\n \"preferred_language\": \"fr-CA\",\n \"locale\": \"fr-CA\"\n },\n {\n \"id\": \"db6f8e8b-65c2-47d5-a0db-90bcc4e9df9e\",\n \"uid\": \"ad non ullamcoessedeserunt quis \",\n \"name\": \"myusername\",\n \"email\": \"test@sailpoint.com\",\n \"type\": \"NeprofileUser\",\n \"title\": \"Director\",\n \"status\": \"Active\",\n \"login\": \"myLogin\",\n \"last_login\": \"1990-02-07T06:07:07.816Z\",\n \"cookies_accepted_at\": \"1945-03-03T14:26:29.537Z\",\n \"preferred_language\": \"fr-CA\",\n \"locale\": \"fr-CA\"\n }\n ]\n}", + "body": "{\n \"users\": [\n {\n \"id\": \"db6f8e8b-65c2-47d5-a0db-90bcc4e9df9e\",\n \"uid\": \"in aliquaoccaecat exercitationin\",\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-02T14:20:31.446Z\",\n \"cookies_accepted_at\": \"1990-05-24T03:19:15.225Z\",\n \"preferred_language\": \"fr-CA\",\n \"locale\": \"fr-CA\"\n },\n {\n \"id\": \"db6f8e8b-65c2-47d5-a0db-90bcc4e9df9e\",\n \"uid\": \"consequatipsum dolor culpa elitd\",\n \"name\": \"myusername\",\n \"email\": \"test@sailpoint.com\",\n \"type\": \"NeprofileUser\",\n \"title\": \"Director\",\n \"status\": \"Active\",\n \"login\": \"myLogin\",\n \"last_login\": \"2012-09-23T07:01:35.468Z\",\n \"cookies_accepted_at\": \"1979-09-30T19:50:22.339Z\",\n \"preferred_language\": \"fr-CA\",\n \"locale\": \"fr-CA\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "9f2aa4a7-b25b-4c1c-8dc3-7f544c7dfa87", + "id": "934270cc-2916-463c-9cd0-2d4480a2d074", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -1087,7 +1087,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5c5444d6-483b-4d28-9e34-61a4f4d1ae8a", + "id": "20a3e5e3-9d7c-4380-8075-3985955ba4a2", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -1149,7 +1149,7 @@ } }, { - "id": "a57b8370-8673-4bb4-af32-a927ece27eb4", + "id": "293b03c3-67a4-47a6-bd29-2aac0c37e4c7", "name": "Find user by id", "request": { "name": "Find user by id", @@ -1191,7 +1191,7 @@ }, "response": [ { - "id": "f29e355f-b002-4ac1-896f-e02fcf02cfab", + "id": "d7016cb9-d1f5-4197-a875-4aadce0f8fb8", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -1230,12 +1230,12 @@ "value": "application/json" } ], - "body": "{\n \"user\": {\n \"id\": \"db6f8e8b-65c2-47d5-a0db-90bcc4e9df9e\",\n \"uid\": \"doloreirure sitest officialabore\",\n \"name\": \"myusername\",\n \"email\": \"test@sailpoint.com\",\n \"type\": \"NeprofileUser\",\n \"title\": \"Director\",\n \"status\": \"Active\",\n \"login\": \"myLogin\",\n \"last_login\": \"1983-03-29T00:17:47.094Z\",\n \"cookies_accepted_at\": \"2017-07-06T15:06:50.121Z\",\n \"preferred_language\": \"fr-CA\",\n \"locale\": \"fr-CA\"\n }\n}", + "body": "{\n \"user\": {\n \"id\": \"db6f8e8b-65c2-47d5-a0db-90bcc4e9df9e\",\n \"uid\": \"mollit Duis dolor doloresit veli\",\n \"name\": \"myusername\",\n \"email\": \"test@sailpoint.com\",\n \"type\": \"NeprofileUser\",\n \"title\": \"Director\",\n \"status\": \"Active\",\n \"login\": \"myLogin\",\n \"last_login\": \"1973-11-04T06:04:37.600Z\",\n \"cookies_accepted_at\": \"2003-02-04T20:02:11.501Z\",\n \"preferred_language\": \"fr-CA\",\n \"locale\": \"fr-CA\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "78235d3f-8dd7-4280-96f2-0acfd26ebd87", + "id": "d9a81102-4903-4e5f-9d12-9d7c8770e22b", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -1279,7 +1279,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5077e588-6e3f-4561-b0f7-1df857f49955", + "id": "fc943bd7-ccda-498b-941f-6df428b435ac", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -1329,7 +1329,7 @@ } }, { - "id": "982713d9-2147-40ec-84f8-4881ed587ad8", + "id": "5e6abcdb-1403-4a14-95e1-846b42d7877c", "name": "Update a user by id", "request": { "name": "Update a user by id", @@ -1384,7 +1384,7 @@ }, "response": [ { - "id": "1e0a1154-7d13-443d-bfa2-64f223d1d2aa", + "id": "038a3051-f57a-4fd0-a867-c3e8ec221a5d", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -1436,12 +1436,12 @@ "value": "application/json" } ], - "body": "{\n \"user\": {\n \"id\": \"db6f8e8b-65c2-47d5-a0db-90bcc4e9df9e\",\n \"uid\": \"doloreirure sitest officialabore\",\n \"name\": \"myusername\",\n \"email\": \"test@sailpoint.com\",\n \"type\": \"NeprofileUser\",\n \"title\": \"Director\",\n \"status\": \"Active\",\n \"login\": \"myLogin\",\n \"last_login\": \"1983-03-29T00:17:47.094Z\",\n \"cookies_accepted_at\": \"2017-07-06T15:06:50.121Z\",\n \"preferred_language\": \"fr-CA\",\n \"locale\": \"fr-CA\"\n }\n}", + "body": "{\n \"user\": {\n \"id\": \"db6f8e8b-65c2-47d5-a0db-90bcc4e9df9e\",\n \"uid\": \"mollit Duis dolor doloresit veli\",\n \"name\": \"myusername\",\n \"email\": \"test@sailpoint.com\",\n \"type\": \"NeprofileUser\",\n \"title\": \"Director\",\n \"status\": \"Active\",\n \"login\": \"myLogin\",\n \"last_login\": \"1973-11-04T06:04:37.600Z\",\n \"cookies_accepted_at\": \"2003-02-04T20:02:11.501Z\",\n \"preferred_language\": \"fr-CA\",\n \"locale\": \"fr-CA\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "3cb3135e-5ac0-4829-922d-d56ff66aac09", + "id": "a3b3bbd5-2043-4c55-9c43-26be9e725adf", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -1498,7 +1498,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9c6c0998-f566-43c5-8d10-35ec255ce07a", + "id": "f772e4e4-719f-452b-a1fb-aa7432418455", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -1561,7 +1561,7 @@ } }, { - "id": "a0bba5f9-1760-402d-9f03-6d589c450afe", + "id": "55bfecda-64b5-43bf-bf87-416032877cb4", "name": "Delete a user", "request": { "name": "Delete a user", @@ -1603,7 +1603,7 @@ }, "response": [ { - "id": "a8b0b75c-f882-45fd-bdde-2c24d63372af", + "id": "df0b7555-a469-4a0c-acbd-331f5c211020", "name": "Info about the operation", "originalRequest": { "url": { @@ -1647,7 +1647,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9908cf68-f926-4230-819f-6ca33dffb07c", + "id": "f4a8b2a4-88cb-4448-b1fd-6efdd7e46597", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -1691,7 +1691,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bd0afd31-5da8-4cdd-8afb-e4f6e8ba5a36", + "id": "91af9a5f-c0af-42e5-8fcd-082f7a4e89c9", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -1741,7 +1741,7 @@ } }, { - "id": "fabdae00-50a5-4416-86a9-1e5eec88aef7", + "id": "f6c4333e-a606-4cef-b134-31e957dcd5af", "name": "Retrieves the URL of the user avatar", "request": { "name": "Retrieves the URL of the user avatar", @@ -1784,7 +1784,7 @@ }, "response": [ { - "id": "f236cad4-f33c-41c9-ac8d-4eb58ff73876", + "id": "0a66a745-85f0-4a10-b182-7ecacfe2409e", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -1824,12 +1824,12 @@ "value": "application/json" } ], - "body": "{\n \"url\": \"ut eiusmod do eu\"\n}", + "body": "{\n \"url\": \"est ipsum reprehenderit aute Lorem\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c0c8ed46-861f-406d-bb12-0795a8d91384", + "id": "7da1067c-cff9-4aae-84ee-a1c336525e3c", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -1874,7 +1874,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6f8ed0ec-730c-40ed-865a-7242c85e256a", + "id": "9ea919bb-9b43-4786-a141-cb4edaf9936e", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -1925,7 +1925,7 @@ } }, { - "id": "333d2cda-8144-48e9-a8e9-bb50cd2321fe", + "id": "e31b8dfb-7188-400e-8915-e11074687cc5", "name": "Uploads a new user avatar", "request": { "name": "Uploads a new user avatar", @@ -1976,7 +1976,7 @@ "type": "text/plain" }, "key": "file", - "value": "velit", + "value": "commodo aute ullamco repreh", "type": "text" } ] @@ -1985,7 +1985,7 @@ }, "response": [ { - "id": "1b43c661-1f84-4151-b2c9-1dbebd9cd90d", + "id": "628dec47-7f69-4aeb-87fb-2aab5394d9f3", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -2028,7 +2028,7 @@ "type": "text/plain" }, "key": "file", - "value": "velit", + "value": "commodo aute ullamco repreh", "type": "text" } ] @@ -2042,12 +2042,12 @@ "value": "application/json" } ], - "body": "{\n \"url\": \"ut eiusmod do eu\"\n}", + "body": "{\n \"url\": \"est ipsum reprehenderit aute Lorem\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "9834af2d-5b65-467e-88d9-4ee436bf1c22", + "id": "92f477ed-68c4-41ee-ae4b-3afdeabc3eef", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -2090,7 +2090,7 @@ "type": "text/plain" }, "key": "file", - "value": "velit", + "value": "commodo aute ullamco repreh", "type": "text" } ] @@ -2109,7 +2109,7 @@ "_postman_previewlanguage": "json" }, { - "id": "08a596e9-b5f2-415f-b77c-d948f49c0b00", + "id": "8652904a-7f89-44a1-9269-851169690474", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -2152,7 +2152,7 @@ "type": "text/plain" }, "key": "file", - "value": "velit", + "value": "commodo aute ullamco repreh", "type": "text" } ] @@ -2183,7 +2183,7 @@ "description": "", "item": [ { - "id": "0ff1e9ec-7329-48da-bbab-811fa8192df8", + "id": "cf4c0dbe-18b2-4f77-b5d3-5d08b17f1401", "name": "Update a language by locale", "request": { "name": "Update a language by locale", @@ -2242,7 +2242,7 @@ }, "response": [ { - "id": "2bf22a1b-943a-471d-8b42-46c66de5d2e6", + "id": "20ed07ed-530d-4c8b-9212-f058622aae76", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -2299,7 +2299,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a0d3b52b-bd3e-46ed-912a-4db40c132155", + "id": "ccaba6be-d7a3-4723-b4ad-ac1464ba37b8", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -2356,7 +2356,7 @@ "_postman_previewlanguage": "json" }, { - "id": "55e7b14a-b7e0-4b77-bcd0-598a7b604fe2", + "id": "34473d90-700e-4fd0-a75e-026c81c1b7dd", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -2425,7 +2425,7 @@ "description": "", "item": [ { - "id": "e2c22114-2bbb-4a84-b3e0-7b3c2c6226ca", + "id": "02258c00-4213-41c4-b867-d25c2252f901", "name": "Create a new user-manager relationship", "request": { "name": "Create a new user-manager relationship", @@ -2456,7 +2456,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"user_manager\": {\n \"user_id\": \"7232dadf-de00-df08-4f23-e220751fc6c5\",\n \"manager_id\": \"urn:uuid:075af338-ab02-ef7b-b25d-6909ee8ddb8d\"\n }\n}", + "raw": "{\n \"user_manager\": {\n \"user_id\": \"urn:uuid:907b64b6-f920-1d8d-81fa-f467c660bd21\",\n \"manager_id\": \"dc351a06-c534-fb54-3462-0fdf4df50d20\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -2468,7 +2468,7 @@ }, "response": [ { - "id": "d5713268-3d03-4c21-bf3f-a6e81e6ab31a", + "id": "ac76ee79-f90a-4d6d-ab95-03751d018498", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -2502,7 +2502,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"user_manager\": {\n \"user_id\": \"7232dadf-de00-df08-4f23-e220751fc6c5\",\n \"manager_id\": \"urn:uuid:075af338-ab02-ef7b-b25d-6909ee8ddb8d\"\n }\n}", + "raw": "{\n \"user_manager\": {\n \"user_id\": \"urn:uuid:907b64b6-f920-1d8d-81fa-f467c660bd21\",\n \"manager_id\": \"dc351a06-c534-fb54-3462-0fdf4df50d20\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -2519,12 +2519,12 @@ "value": "application/json" } ], - "body": "{\n \"user_manager\": {\n \"id\": \"25f56da2-4679-5e3e-4079-b210e027497b\",\n \"uid\": \"aliquip Utdo sit Excepteur aliqu\",\n \"user_id\": \"585690b8-2e6f-c1e9-a7f9-4c6d72943dd3\",\n \"manager_id\": \"urn:uuid:e27e6317-3a7e-7fe7-7689-87a182920466\"\n }\n}", + "body": "{\n \"user_manager\": {\n \"id\": \"0faa4d78-8fca-96a0-5aac-ee6af7188641\",\n \"uid\": \"eiusmod cillum in veniamesse tem\",\n \"user_id\": \"99b2a388-7e66-da4c-c00b-6100effb0073\",\n \"manager_id\": \"urn:uuid:1e3bd0d5-c282-d405-70fc-943520f6fcc8\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "81070ad1-92b7-44bb-aeb2-78c29678038a", + "id": "11d754f1-1a39-40e9-8fe4-a19d9fc44832", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -2558,7 +2558,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"user_manager\": {\n \"user_id\": \"7232dadf-de00-df08-4f23-e220751fc6c5\",\n \"manager_id\": \"urn:uuid:075af338-ab02-ef7b-b25d-6909ee8ddb8d\"\n }\n}", + "raw": "{\n \"user_manager\": {\n \"user_id\": \"urn:uuid:907b64b6-f920-1d8d-81fa-f467c660bd21\",\n \"manager_id\": \"dc351a06-c534-fb54-3462-0fdf4df50d20\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -2580,7 +2580,7 @@ "_postman_previewlanguage": "json" }, { - "id": "be67995d-29d4-4e2f-86aa-3c4234952221", + "id": "2df341d8-84f4-40c9-8a32-3c183a29b53c", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -2614,7 +2614,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"user_manager\": {\n \"user_id\": \"7232dadf-de00-df08-4f23-e220751fc6c5\",\n \"manager_id\": \"urn:uuid:075af338-ab02-ef7b-b25d-6909ee8ddb8d\"\n }\n}", + "raw": "{\n \"user_manager\": {\n \"user_id\": \"urn:uuid:907b64b6-f920-1d8d-81fa-f467c660bd21\",\n \"manager_id\": \"dc351a06-c534-fb54-3462-0fdf4df50d20\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -2642,7 +2642,7 @@ } }, { - "id": "a453940b-2baa-4b7f-800e-227292c941c2", + "id": "cbc62b9d-b765-4d25-b637-ddb236bdc22d", "name": "Get user-manager relationships", "request": { "name": "Get user-manager relationships", @@ -2701,7 +2701,7 @@ "type": "text/plain" }, "key": "manager_id", - "value": "ddcc300b-df84-c438-f837-90d81d0c2bdc" + "value": "urn:uuid:7f1dc9d0-8a01-cc5e-4782-40258f360dd0" }, { "disabled": false, @@ -2727,7 +2727,7 @@ }, "response": [ { - "id": "13f8ee4b-8040-4025-a297-5722ea07d8ec", + "id": "e2ee5e99-d0db-409e-bda7-cc246b9095be", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -2781,7 +2781,7 @@ "type": "text/plain" }, "key": "manager_id", - "value": "ddcc300b-df84-c438-f837-90d81d0c2bdc" + "value": "urn:uuid:7f1dc9d0-8a01-cc5e-4782-40258f360dd0" }, { "disabled": false, @@ -2820,12 +2820,12 @@ "value": "application/json" } ], - "body": "{\n \"user_managers\": [\n {\n \"id\": \"cd1333db-a736-5554-96e7-6b7947bde39e\",\n \"uid\": \"in amet nulla quireprehenderit e\",\n \"user_id\": \"84455b4a-af29-0875-b10b-9095cea7e5f1\",\n \"manager_id\": \"ee8a113d-0c03-e78d-35a5-4ab32f6c242a\"\n },\n {\n \"id\": \"b1dec087-07d3-087b-1e22-cf869cc6e5ad\",\n \"uid\": \"sintExcepteur sunt aliquip quico\",\n \"user_id\": \"2e7dbd4a-31d9-ad6c-6b38-de34cab6f438\",\n \"manager_id\": \"b55994ea-85e3-1f74-87d7-fb2563f2f91f\"\n }\n ],\n \"_metadata\": {\n \"limit\": 98986278,\n \"offset\": -40034715,\n \"total\": -68473745,\n \"next\": \"/endpoint?limit=10&offset=60\",\n \"previous\": \"/endpoint?limit=10&offset=40\"\n }\n}", + "body": "{\n \"user_managers\": [\n {\n \"id\": \"urn:uuid:ccdb1684-d988-2c3b-9a2e-70799e0ecb58\",\n \"uid\": \"non et dolor sintLorem elit amet\",\n \"user_id\": \"urn:uuid:ee83944f-4b7d-6413-6549-bd1d5f5f03f5\",\n \"manager_id\": \"ed0bf8e6-b127-fb63-c5fe-a1fdad418c00\"\n },\n {\n \"id\": \"urn:uuid:75247dd7-605e-a307-c83f-147c25ce288d\",\n \"uid\": \"mollit quienim anim occaecatproi\",\n \"user_id\": \"2c60e82e-99e4-029a-32bd-df8a7ad1a764\",\n \"manager_id\": \"urn:uuid:12a380af-ffe3-e781-c5b2-9b7717f39276\"\n }\n ],\n \"_metadata\": {\n \"limit\": 91556725,\n \"offset\": -76993604,\n \"total\": -18674440,\n \"next\": \"/endpoint?limit=10&offset=60\",\n \"previous\": \"/endpoint?limit=10&offset=40\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "391a2c90-0477-46fd-a238-c738f38ce681", + "id": "ae35ab5b-8919-4a03-93b0-fe4c4f687a7a", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -2879,7 +2879,7 @@ "type": "text/plain" }, "key": "manager_id", - "value": "ddcc300b-df84-c438-f837-90d81d0c2bdc" + "value": "urn:uuid:7f1dc9d0-8a01-cc5e-4782-40258f360dd0" }, { "disabled": false, @@ -2923,7 +2923,7 @@ "_postman_previewlanguage": "json" }, { - "id": "873c14f7-db3b-4b46-af8d-2bf246e30e41", + "id": "6a584dc6-c9e4-45d1-be86-408564fa24ba", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -2977,7 +2977,7 @@ "type": "text/plain" }, "key": "manager_id", - "value": "ddcc300b-df84-c438-f837-90d81d0c2bdc" + "value": "urn:uuid:7f1dc9d0-8a01-cc5e-4782-40258f360dd0" }, { "disabled": false, @@ -3027,7 +3027,7 @@ } }, { - "id": "69847801-a3c4-419c-bf07-1a7ab738c28b", + "id": "5d72f52a-a6ec-4a79-81aa-482061267c98", "name": "Create multiple new user-manager relationships", "request": { "name": "Create multiple new user-manager relationships", @@ -3058,7 +3058,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"user_managers\": [\n {\n \"user_id\": \"urn:uuid:45f1cf23-941b-b3e7-99ef-5a70c042488d\",\n \"manager_id\": \"b2edef45-5f1d-25fc-6dfd-612cb70d4468\"\n },\n {\n \"user_id\": \"urn:uuid:f1038df2-ef0d-944e-8aa9-58231cd8073d\",\n \"manager_id\": \"b9839500-ec54-f13e-0b5c-390356292c73\"\n }\n ]\n}", + "raw": "{\n \"user_managers\": [\n {\n \"user_id\": \"urn:uuid:74d104c1-bec3-d233-0462-609d538deb8a\",\n \"manager_id\": \"8d30b427-7b60-3bb3-0df9-bd9b554ed9ea\"\n },\n {\n \"user_id\": \"urn:uuid:dbc48ef0-cff6-5eec-f641-b49de3af7504\",\n \"manager_id\": \"58a214a4-4cd8-852f-0da0-89c1f59af53f\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -3070,7 +3070,7 @@ }, "response": [ { - "id": "a4d062b2-3fe6-4d81-a64a-0b94f9636738", + "id": "d17c358c-b0e0-418d-8af7-a8d1e73eabb8", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -3104,7 +3104,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"user_managers\": [\n {\n \"user_id\": \"urn:uuid:45f1cf23-941b-b3e7-99ef-5a70c042488d\",\n \"manager_id\": \"b2edef45-5f1d-25fc-6dfd-612cb70d4468\"\n },\n {\n \"user_id\": \"urn:uuid:f1038df2-ef0d-944e-8aa9-58231cd8073d\",\n \"manager_id\": \"b9839500-ec54-f13e-0b5c-390356292c73\"\n }\n ]\n}", + "raw": "{\n \"user_managers\": [\n {\n \"user_id\": \"urn:uuid:74d104c1-bec3-d233-0462-609d538deb8a\",\n \"manager_id\": \"8d30b427-7b60-3bb3-0df9-bd9b554ed9ea\"\n },\n {\n \"user_id\": \"urn:uuid:dbc48ef0-cff6-5eec-f641-b49de3af7504\",\n \"manager_id\": \"58a214a4-4cd8-852f-0da0-89c1f59af53f\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -3126,7 +3126,7 @@ "_postman_previewlanguage": "json" }, { - "id": "da7754fb-44d3-4fc4-ae0a-9774292d1a14", + "id": "55763400-3ef6-4a19-89b5-d7a9d458d17a", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -3160,7 +3160,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"user_managers\": [\n {\n \"user_id\": \"urn:uuid:45f1cf23-941b-b3e7-99ef-5a70c042488d\",\n \"manager_id\": \"b2edef45-5f1d-25fc-6dfd-612cb70d4468\"\n },\n {\n \"user_id\": \"urn:uuid:f1038df2-ef0d-944e-8aa9-58231cd8073d\",\n \"manager_id\": \"b9839500-ec54-f13e-0b5c-390356292c73\"\n }\n ]\n}", + "raw": "{\n \"user_managers\": [\n {\n \"user_id\": \"urn:uuid:74d104c1-bec3-d233-0462-609d538deb8a\",\n \"manager_id\": \"8d30b427-7b60-3bb3-0df9-bd9b554ed9ea\"\n },\n {\n \"user_id\": \"urn:uuid:dbc48ef0-cff6-5eec-f641-b49de3af7504\",\n \"manager_id\": \"58a214a4-4cd8-852f-0da0-89c1f59af53f\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -3182,7 +3182,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bb387669-13e6-45d9-b5ae-140fde1f7e83", + "id": "9bda752c-eb39-47e2-8a90-22704f7ca6c9", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -3216,7 +3216,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"user_managers\": [\n {\n \"user_id\": \"urn:uuid:45f1cf23-941b-b3e7-99ef-5a70c042488d\",\n \"manager_id\": \"b2edef45-5f1d-25fc-6dfd-612cb70d4468\"\n },\n {\n \"user_id\": \"urn:uuid:f1038df2-ef0d-944e-8aa9-58231cd8073d\",\n \"manager_id\": \"b9839500-ec54-f13e-0b5c-390356292c73\"\n }\n ]\n}", + "raw": "{\n \"user_managers\": [\n {\n \"user_id\": \"urn:uuid:74d104c1-bec3-d233-0462-609d538deb8a\",\n \"manager_id\": \"8d30b427-7b60-3bb3-0df9-bd9b554ed9ea\"\n },\n {\n \"user_id\": \"urn:uuid:dbc48ef0-cff6-5eec-f641-b49de3af7504\",\n \"manager_id\": \"58a214a4-4cd8-852f-0da0-89c1f59af53f\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -3244,7 +3244,7 @@ } }, { - "id": "295b9c4a-a0b3-4add-8f98-c7fe75248788", + "id": "23e0aef9-e42d-4eaf-ac5a-9ea82e53c2b7", "name": "Update multiple user-manager relationships", "request": { "name": "Update multiple user-manager relationships", @@ -3275,7 +3275,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"user_managers\": [\n {\n \"id\": \"73b66be5-81f6-8e04-06d3-1d58608a8065\",\n \"user_id\": \"urn:uuid:954e306b-180c-8aea-e5a0-6ca56508f35b\",\n \"manager_id\": \"urn:uuid:c111d244-f985-1c2a-69de-7032a213fe26\"\n },\n {\n \"id\": \"ab13b346-43b4-5718-1888-8659d58c6595\",\n \"user_id\": \"fc810fe5-085a-a0ef-eb5b-211ed8540070\",\n \"manager_id\": \"1131d80c-a459-29ba-6970-c9725008e1eb\"\n }\n ]\n}", + "raw": "{\n \"user_managers\": [\n {\n \"id\": \"urn:uuid:6109c816-8790-9939-acf6-be616f0ea509\",\n \"user_id\": \"cd85f238-7085-e8e6-064d-8e7b4490c61d\",\n \"manager_id\": \"af6014cb-8eea-899f-8ecc-2dbaa2cc6406\"\n },\n {\n \"id\": \"ac27254b-9383-d8e5-4614-37390ccd8ec3\",\n \"user_id\": \"9b2168a7-ea5b-4ba0-e604-ca6eee0e1867\",\n \"manager_id\": \"urn:uuid:0b35c191-b2fc-6ce4-1e03-fc8556e5dc19\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -3287,7 +3287,7 @@ }, "response": [ { - "id": "fe54ad11-ae86-4f1d-b435-87726cb9e576", + "id": "63afc6c1-dde7-4d81-89e3-2a56f806c4dd", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -3321,7 +3321,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"user_managers\": [\n {\n \"id\": \"73b66be5-81f6-8e04-06d3-1d58608a8065\",\n \"user_id\": \"urn:uuid:954e306b-180c-8aea-e5a0-6ca56508f35b\",\n \"manager_id\": \"urn:uuid:c111d244-f985-1c2a-69de-7032a213fe26\"\n },\n {\n \"id\": \"ab13b346-43b4-5718-1888-8659d58c6595\",\n \"user_id\": \"fc810fe5-085a-a0ef-eb5b-211ed8540070\",\n \"manager_id\": \"1131d80c-a459-29ba-6970-c9725008e1eb\"\n }\n ]\n}", + "raw": "{\n \"user_managers\": [\n {\n \"id\": \"urn:uuid:6109c816-8790-9939-acf6-be616f0ea509\",\n \"user_id\": \"cd85f238-7085-e8e6-064d-8e7b4490c61d\",\n \"manager_id\": \"af6014cb-8eea-899f-8ecc-2dbaa2cc6406\"\n },\n {\n \"id\": \"ac27254b-9383-d8e5-4614-37390ccd8ec3\",\n \"user_id\": \"9b2168a7-ea5b-4ba0-e604-ca6eee0e1867\",\n \"manager_id\": \"urn:uuid:0b35c191-b2fc-6ce4-1e03-fc8556e5dc19\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -3343,7 +3343,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a593fb96-ef16-491f-b8ed-06ea495104b7", + "id": "abe3e82e-b281-44dc-a357-b92bcb5f396e", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -3377,7 +3377,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"user_managers\": [\n {\n \"id\": \"73b66be5-81f6-8e04-06d3-1d58608a8065\",\n \"user_id\": \"urn:uuid:954e306b-180c-8aea-e5a0-6ca56508f35b\",\n \"manager_id\": \"urn:uuid:c111d244-f985-1c2a-69de-7032a213fe26\"\n },\n {\n \"id\": \"ab13b346-43b4-5718-1888-8659d58c6595\",\n \"user_id\": \"fc810fe5-085a-a0ef-eb5b-211ed8540070\",\n \"manager_id\": \"1131d80c-a459-29ba-6970-c9725008e1eb\"\n }\n ]\n}", + "raw": "{\n \"user_managers\": [\n {\n \"id\": \"urn:uuid:6109c816-8790-9939-acf6-be616f0ea509\",\n \"user_id\": \"cd85f238-7085-e8e6-064d-8e7b4490c61d\",\n \"manager_id\": \"af6014cb-8eea-899f-8ecc-2dbaa2cc6406\"\n },\n {\n \"id\": \"ac27254b-9383-d8e5-4614-37390ccd8ec3\",\n \"user_id\": \"9b2168a7-ea5b-4ba0-e604-ca6eee0e1867\",\n \"manager_id\": \"urn:uuid:0b35c191-b2fc-6ce4-1e03-fc8556e5dc19\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -3399,7 +3399,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d14e8870-d0c2-4096-8db1-7d82d5eb5741", + "id": "6583e38a-c5ff-4a20-90c2-3bf35d7d9bfa", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -3433,7 +3433,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"user_managers\": [\n {\n \"id\": \"73b66be5-81f6-8e04-06d3-1d58608a8065\",\n \"user_id\": \"urn:uuid:954e306b-180c-8aea-e5a0-6ca56508f35b\",\n \"manager_id\": \"urn:uuid:c111d244-f985-1c2a-69de-7032a213fe26\"\n },\n {\n \"id\": \"ab13b346-43b4-5718-1888-8659d58c6595\",\n \"user_id\": \"fc810fe5-085a-a0ef-eb5b-211ed8540070\",\n \"manager_id\": \"1131d80c-a459-29ba-6970-c9725008e1eb\"\n }\n ]\n}", + "raw": "{\n \"user_managers\": [\n {\n \"id\": \"urn:uuid:6109c816-8790-9939-acf6-be616f0ea509\",\n \"user_id\": \"cd85f238-7085-e8e6-064d-8e7b4490c61d\",\n \"manager_id\": \"af6014cb-8eea-899f-8ecc-2dbaa2cc6406\"\n },\n {\n \"id\": \"ac27254b-9383-d8e5-4614-37390ccd8ec3\",\n \"user_id\": \"9b2168a7-ea5b-4ba0-e604-ca6eee0e1867\",\n \"manager_id\": \"urn:uuid:0b35c191-b2fc-6ce4-1e03-fc8556e5dc19\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -3461,7 +3461,7 @@ } }, { - "id": "a1c53882-7d9b-49f7-98de-5c2dd4faef62", + "id": "053c2df7-cf9f-435d-bcf5-bd22a153a723", "name": "Find user-manager relationship by id", "request": { "name": "Find user-manager relationship by id", @@ -3503,7 +3503,7 @@ }, "response": [ { - "id": "53253307-97fc-4344-b591-84e740aaf930", + "id": "3949f4a4-2477-486f-a3c2-cd957dbf6dd7", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -3542,12 +3542,12 @@ "value": "application/json" } ], - "body": "{\n \"user_manager\": {\n \"id\": \"25f56da2-4679-5e3e-4079-b210e027497b\",\n \"uid\": \"aliquip Utdo sit Excepteur aliqu\",\n \"user_id\": \"585690b8-2e6f-c1e9-a7f9-4c6d72943dd3\",\n \"manager_id\": \"urn:uuid:e27e6317-3a7e-7fe7-7689-87a182920466\"\n }\n}", + "body": "{\n \"user_manager\": {\n \"id\": \"0faa4d78-8fca-96a0-5aac-ee6af7188641\",\n \"uid\": \"eiusmod cillum in veniamesse tem\",\n \"user_id\": \"99b2a388-7e66-da4c-c00b-6100effb0073\",\n \"manager_id\": \"urn:uuid:1e3bd0d5-c282-d405-70fc-943520f6fcc8\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "8f869afd-96c2-40cb-ab4d-31267d901639", + "id": "281e6501-f85d-423d-8dc9-c609b4a4b9b3", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -3591,7 +3591,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5831f1d2-048d-4507-94b3-40ec38ac84ff", + "id": "fb6c4648-2d2f-42c5-9d9a-05d33c23acca", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -3641,7 +3641,7 @@ } }, { - "id": "44b9dade-ea38-4c7f-bbc1-0d9328949587", + "id": "aea4d813-5f5b-4fcb-96db-79f9f2e0be45", "name": "Update a user-manager relationship by id", "request": { "name": "Update a user-manager relationship by id", @@ -3684,7 +3684,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"user_manager\": {\n \"user_id\": \"7232dadf-de00-df08-4f23-e220751fc6c5\",\n \"manager_id\": \"urn:uuid:075af338-ab02-ef7b-b25d-6909ee8ddb8d\"\n }\n}", + "raw": "{\n \"user_manager\": {\n \"user_id\": \"urn:uuid:907b64b6-f920-1d8d-81fa-f467c660bd21\",\n \"manager_id\": \"dc351a06-c534-fb54-3462-0fdf4df50d20\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -3696,7 +3696,7 @@ }, "response": [ { - "id": "929efcb3-f280-4fc6-9dcf-b06efe5fcda6", + "id": "c4afde49-2ea5-4094-80e4-3642842f9d2d", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -3731,7 +3731,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"user_manager\": {\n \"user_id\": \"7232dadf-de00-df08-4f23-e220751fc6c5\",\n \"manager_id\": \"urn:uuid:075af338-ab02-ef7b-b25d-6909ee8ddb8d\"\n }\n}", + "raw": "{\n \"user_manager\": {\n \"user_id\": \"urn:uuid:907b64b6-f920-1d8d-81fa-f467c660bd21\",\n \"manager_id\": \"dc351a06-c534-fb54-3462-0fdf4df50d20\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -3748,12 +3748,12 @@ "value": "application/json" } ], - "body": "{\n \"user_manager\": {\n \"id\": \"25f56da2-4679-5e3e-4079-b210e027497b\",\n \"uid\": \"aliquip Utdo sit Excepteur aliqu\",\n \"user_id\": \"585690b8-2e6f-c1e9-a7f9-4c6d72943dd3\",\n \"manager_id\": \"urn:uuid:e27e6317-3a7e-7fe7-7689-87a182920466\"\n }\n}", + "body": "{\n \"user_manager\": {\n \"id\": \"0faa4d78-8fca-96a0-5aac-ee6af7188641\",\n \"uid\": \"eiusmod cillum in veniamesse tem\",\n \"user_id\": \"99b2a388-7e66-da4c-c00b-6100effb0073\",\n \"manager_id\": \"urn:uuid:1e3bd0d5-c282-d405-70fc-943520f6fcc8\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "8be0b244-de67-4cdc-9b6b-dd8a1d25418c", + "id": "d7f048df-2e6d-48e6-a95f-db0f2a30c262", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -3788,7 +3788,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"user_manager\": {\n \"user_id\": \"7232dadf-de00-df08-4f23-e220751fc6c5\",\n \"manager_id\": \"urn:uuid:075af338-ab02-ef7b-b25d-6909ee8ddb8d\"\n }\n}", + "raw": "{\n \"user_manager\": {\n \"user_id\": \"urn:uuid:907b64b6-f920-1d8d-81fa-f467c660bd21\",\n \"manager_id\": \"dc351a06-c534-fb54-3462-0fdf4df50d20\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -3810,7 +3810,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9df6e99e-ce64-49da-9ea1-1bbd7974d17d", + "id": "e814dff4-5a6e-43c0-b2ed-d11cc52ca70a", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -3845,7 +3845,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"user_manager\": {\n \"user_id\": \"7232dadf-de00-df08-4f23-e220751fc6c5\",\n \"manager_id\": \"urn:uuid:075af338-ab02-ef7b-b25d-6909ee8ddb8d\"\n }\n}", + "raw": "{\n \"user_manager\": {\n \"user_id\": \"urn:uuid:907b64b6-f920-1d8d-81fa-f467c660bd21\",\n \"manager_id\": \"dc351a06-c534-fb54-3462-0fdf4df50d20\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -3879,7 +3879,7 @@ "description": "", "item": [ { - "id": "ced0280b-fc5c-4bb4-b7c2-36ee31374078", + "id": "2a408664-0427-4261-9ae4-300d4e34af13", "name": "Get roles", "request": { "name": "Get roles", @@ -3946,7 +3946,7 @@ }, "response": [ { - "id": "64577bac-06c6-44ee-b457-cf4bc96c236f", + "id": "58f06f76-2941-49c3-aeb1-0173dfa53ce1", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -4021,12 +4021,12 @@ "value": "application/json" } ], - "body": "{\n \"roles\": [\n {\n \"id\": \"urn:uuid:940fc6d6-ff4e-658a-c0a9-4248fc6f8d32\",\n \"uid\": \"minimsint mollit aliquaet Ut in \",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n },\n {\n \"id\": \"b3b0023b-9844-1d4c-f9a1-cd2dc344eca8\",\n \"uid\": \"laboris aute suntest reprehender\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n }\n ],\n \"_metadata\": {\n \"limit\": 34376533,\n \"offset\": 80574031,\n \"total\": -46019218,\n \"next\": \"/endpoint?limit=10&offset=60\",\n \"previous\": \"/endpoint?limit=10&offset=40\"\n }\n}", + "body": "{\n \"roles\": [\n {\n \"id\": \"de892e64-2196-35a2-abbf-9c70af7ce3c1\",\n \"uid\": \"elit qui eiusmod animlabore adip\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n },\n {\n \"id\": \"b6f5bde4-a580-7588-1c49-b36a0015855e\",\n \"uid\": \"veniam aliquip elitveniamincidid\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n }\n ],\n \"_metadata\": {\n \"limit\": -79785359,\n \"offset\": 13561636,\n \"total\": 48744722,\n \"next\": \"/endpoint?limit=10&offset=60\",\n \"previous\": \"/endpoint?limit=10&offset=40\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a67d05d5-6ee1-422e-8a54-99ff596bbb22", + "id": "2839d4e2-1b68-4bf7-b452-ce3b33f87fdc", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -4106,7 +4106,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b941c9a9-91e4-4a5b-adf2-96877b3fac4d", + "id": "bc12153e-7ca1-4250-bca0-2fea12982b75", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -4192,7 +4192,7 @@ } }, { - "id": "049998f1-dcd4-46f6-a682-f7975cdb2dd3", + "id": "06209b99-f72e-4e53-bd0a-9971d35f0eda", "name": "Create multiple new roles", "request": { "name": "Create multiple new roles", @@ -4223,7 +4223,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"roles\": [\n {\n \"uid\": \"sint labore sitExcepteur sed dol\",\n \"type\": \"NeaccessRole\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n },\n {\n \"uid\": \"nisi adlaborum aliquipamet sed e\",\n \"type\": \"NeaccessRole\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n }\n ]\n}", + "raw": "{\n \"roles\": [\n {\n \"uid\": \"animlaborum voluptate qui labore\",\n \"type\": \"NeaccessRole\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n },\n {\n \"uid\": \"labore cillum Duiseadolore enim \",\n \"type\": \"NeaccessRole\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -4235,7 +4235,7 @@ }, "response": [ { - "id": "c219ad49-69b9-4763-9577-2ca466056675", + "id": "06e81268-37eb-4923-a5f0-942e035346b6", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -4269,7 +4269,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"roles\": [\n {\n \"uid\": \"sint labore sitExcepteur sed dol\",\n \"type\": \"NeaccessRole\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n },\n {\n \"uid\": \"nisi adlaborum aliquipamet sed e\",\n \"type\": \"NeaccessRole\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n }\n ]\n}", + "raw": "{\n \"roles\": [\n {\n \"uid\": \"animlaborum voluptate qui labore\",\n \"type\": \"NeaccessRole\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n },\n {\n \"uid\": \"labore cillum Duiseadolore enim \",\n \"type\": \"NeaccessRole\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -4286,12 +4286,12 @@ "value": "application/json" } ], - "body": "{\n \"roles\": [\n {\n \"id\": \"84554923-e398-785a-0a22-4c81b160f278\",\n \"uid\": \"culpa temporut elitcupidatat eni\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n },\n {\n \"id\": \"65166cc9-50fd-8b99-630e-0bec56d55c7a\",\n \"uid\": \"adipisicing aute officiapariatur\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n }\n ]\n}", + "body": "{\n \"roles\": [\n {\n \"id\": \"80234374-7af0-f86d-2ddb-6ccf27df2371\",\n \"uid\": \"do laboris proident est enimExce\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n },\n {\n \"id\": \"dc9cc752-9624-6cff-352d-3d3bd57a8505\",\n \"uid\": \"dolor velit eiusmodullamco conse\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "9dbcb2b0-47b5-4427-b1c4-1e82c11dab7e", + "id": "994b201c-3394-4f43-b3e7-7f538b0291af", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -4325,7 +4325,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"roles\": [\n {\n \"uid\": \"sint labore sitExcepteur sed dol\",\n \"type\": \"NeaccessRole\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n },\n {\n \"uid\": \"nisi adlaborum aliquipamet sed e\",\n \"type\": \"NeaccessRole\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n }\n ]\n}", + "raw": "{\n \"roles\": [\n {\n \"uid\": \"animlaborum voluptate qui labore\",\n \"type\": \"NeaccessRole\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n },\n {\n \"uid\": \"labore cillum Duiseadolore enim \",\n \"type\": \"NeaccessRole\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -4347,7 +4347,7 @@ "_postman_previewlanguage": "json" }, { - "id": "99b26594-cc7e-4ac0-bfa5-e9641a0281a1", + "id": "f88fb8e8-9f3f-4cc9-a461-331fc9740db3", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -4381,7 +4381,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"roles\": [\n {\n \"uid\": \"sint labore sitExcepteur sed dol\",\n \"type\": \"NeaccessRole\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n },\n {\n \"uid\": \"nisi adlaborum aliquipamet sed e\",\n \"type\": \"NeaccessRole\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n }\n ]\n}", + "raw": "{\n \"roles\": [\n {\n \"uid\": \"animlaborum voluptate qui labore\",\n \"type\": \"NeaccessRole\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n },\n {\n \"uid\": \"labore cillum Duiseadolore enim \",\n \"type\": \"NeaccessRole\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -4409,7 +4409,7 @@ } }, { - "id": "cff39ce4-e9d9-4d4c-a936-d68a1d54a3fe", + "id": "26642599-0e8d-48ff-8801-47a4d3ae56de", "name": "Update multiple roles", "request": { "name": "Update multiple roles", @@ -4452,7 +4452,7 @@ }, "response": [ { - "id": "79f52447-9109-49e6-950a-db4ea82376bc", + "id": "cc2c88c2-9e0d-41e3-96e0-4da9afaa8c71", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -4503,12 +4503,12 @@ "value": "application/json" } ], - "body": "{\n \"roles\": [\n {\n \"id\": \"84554923-e398-785a-0a22-4c81b160f278\",\n \"uid\": \"culpa temporut elitcupidatat eni\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n },\n {\n \"id\": \"65166cc9-50fd-8b99-630e-0bec56d55c7a\",\n \"uid\": \"adipisicing aute officiapariatur\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n }\n ]\n}", + "body": "{\n \"roles\": [\n {\n \"id\": \"80234374-7af0-f86d-2ddb-6ccf27df2371\",\n \"uid\": \"do laboris proident est enimExce\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n },\n {\n \"id\": \"dc9cc752-9624-6cff-352d-3d3bd57a8505\",\n \"uid\": \"dolor velit eiusmodullamco conse\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ebfaf218-0b24-43a6-8d92-54d9d58027a8", + "id": "028e12e3-de96-46de-ad9d-751caf4082ca", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -4564,7 +4564,7 @@ "_postman_previewlanguage": "json" }, { - "id": "72d92fa4-c20e-46ac-8ecf-d87c0d4ced49", + "id": "859911bb-4a9b-4aca-bd6f-e8ddc0623da6", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -4626,7 +4626,7 @@ } }, { - "id": "43ac7b70-d3aa-4691-8058-10f1c66a97b5", + "id": "4413ce81-f34a-4a45-9f6e-3e1259cbe414", "name": "Create a new role", "request": { "name": "Create a new role", @@ -4657,7 +4657,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"role\": {\n \"uid\": \"dolore minim Duis tempordeserunt\",\n \"type\": \"NeaccessRole\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n }\n}", + "raw": "{\n \"role\": {\n \"uid\": \"ea ipsumnulla reprehenderitaliqu\",\n \"type\": \"NeprofileRole\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -4669,7 +4669,7 @@ }, "response": [ { - "id": "969d93ba-f56b-47bb-a4bd-ac6c5054cef7", + "id": "30c90dec-9b32-450b-b08b-0427ca4f854c", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -4703,7 +4703,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"role\": {\n \"uid\": \"dolore minim Duis tempordeserunt\",\n \"type\": \"NeaccessRole\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n }\n}", + "raw": "{\n \"role\": {\n \"uid\": \"ea ipsumnulla reprehenderitaliqu\",\n \"type\": \"NeprofileRole\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -4720,12 +4720,12 @@ "value": "application/json" } ], - "body": "{\n \"role\": {\n \"id\": \"c9445735-40ba-12b9-134f-897d2f12a5c1\",\n \"uid\": \"utet animdolore incillum Excepte\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n }\n}", + "body": "{\n \"role\": {\n \"id\": \"b8b82e75-72bb-7ea1-5720-8365a589d388\",\n \"uid\": \"sintenim Duis quis cupidatatveli\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "86bc50fd-87f1-40f7-b698-c95ef37882d9", + "id": "7242c613-9de2-415d-8247-3b50b8bb3abf", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -4759,7 +4759,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"role\": {\n \"uid\": \"dolore minim Duis tempordeserunt\",\n \"type\": \"NeaccessRole\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n }\n}", + "raw": "{\n \"role\": {\n \"uid\": \"ea ipsumnulla reprehenderitaliqu\",\n \"type\": \"NeprofileRole\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -4781,7 +4781,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3d910e91-7512-4d4c-be94-311dc4fb70cf", + "id": "fc702e31-6292-4b37-8d16-d2ed01c3b79d", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -4815,7 +4815,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"role\": {\n \"uid\": \"dolore minim Duis tempordeserunt\",\n \"type\": \"NeaccessRole\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n }\n}", + "raw": "{\n \"role\": {\n \"uid\": \"ea ipsumnulla reprehenderitaliqu\",\n \"type\": \"NeprofileRole\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -4843,7 +4843,7 @@ } }, { - "id": "35299253-945e-45f7-904b-9e95210782d3", + "id": "e78d5aeb-9f60-4235-94e4-9ef947712de9", "name": "Find role by id", "request": { "name": "Find role by id", @@ -4885,7 +4885,7 @@ }, "response": [ { - "id": "dbc977da-3eb5-4bb2-ba24-637d7d711588", + "id": "2de9ca2e-4ab0-4073-9205-551dc6c976e0", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -4924,12 +4924,12 @@ "value": "application/json" } ], - "body": "{\n \"role\": {\n \"id\": \"c9445735-40ba-12b9-134f-897d2f12a5c1\",\n \"uid\": \"utet animdolore incillum Excepte\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n }\n}", + "body": "{\n \"role\": {\n \"id\": \"b8b82e75-72bb-7ea1-5720-8365a589d388\",\n \"uid\": \"sintenim Duis quis cupidatatveli\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "2e634d3c-c2c6-466f-ac49-a2652c0fba88", + "id": "2f00a61e-c63d-4ba1-81c7-8eff77d08fb6", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -4973,7 +4973,7 @@ "_postman_previewlanguage": "json" }, { - "id": "53e6afee-7d30-4a49-b419-bb669814e544", + "id": "6fbbbef5-f164-449e-b2ac-101668a3cad8", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -5023,7 +5023,7 @@ } }, { - "id": "1f0d8cc4-8d1f-4256-b3d6-da677942b128", + "id": "244c0bc2-a720-45f3-bca7-7dbfae828b5a", "name": "Update an existing role", "request": { "name": "Update an existing role", @@ -5078,7 +5078,7 @@ }, "response": [ { - "id": "ea637779-2738-49da-842a-7adde4b6fe3c", + "id": "4c930ee3-3097-4952-a380-1a7a488a9259", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -5130,12 +5130,12 @@ "value": "application/json" } ], - "body": "{\n \"role\": {\n \"id\": \"c9445735-40ba-12b9-134f-897d2f12a5c1\",\n \"uid\": \"utet animdolore incillum Excepte\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n }\n}", + "body": "{\n \"role\": {\n \"id\": \"b8b82e75-72bb-7ea1-5720-8365a589d388\",\n \"uid\": \"sintenim Duis quis cupidatatveli\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e527b5de-c4ef-4afb-810b-9b2014de4b93", + "id": "a0b165db-3e67-410c-8638-dd7f57801e32", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -5192,7 +5192,7 @@ "_postman_previewlanguage": "json" }, { - "id": "14e6565b-d03b-4e12-a7ac-56075dabb726", + "id": "9b0eb340-49ff-41b9-8219-a14e0fb312a2", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -5261,7 +5261,7 @@ "description": "", "item": [ { - "id": "5f5078eb-9fd3-493e-a114-e3591a5a7dfc", + "id": "06293059-706d-44c7-9923-03101a715a32", "name": "Create a permission", "request": { "name": "Create a permission", @@ -5304,7 +5304,7 @@ }, "response": [ { - "id": "caea29b4-05ad-481d-9527-f6cef5918a28", + "id": "400b547d-2990-4168-a6f3-4bcfd19cb518", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -5360,7 +5360,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f16bad33-233b-4a41-add4-fe8b7e497fd6", + "id": "e1566a32-7f03-4f10-881b-3155dde641ac", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -5416,7 +5416,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0e00ce13-625d-4c76-8cbc-db4f05ded7c9", + "id": "3a296ef0-a3f9-4e12-a275-b6182424c0ed", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -5484,7 +5484,7 @@ "description": "", "item": [ { - "id": "54825db2-fb7f-4788-b251-99fd00746340", + "id": "97f9a7bf-e2b3-4c5c-a723-572ddb939170", "name": "Assign a new role to a user", "request": { "name": "Assign a new role to a user", @@ -5515,7 +5515,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"user_role\": {\n \"user_id\": \"urn:uuid:6c2a72a2-61fd-0420-cf76-9b0ebaa925f6\",\n \"role_id\": \"urn:uuid:ad04b564-1045-dc0a-6b42-6711e8df4510\"\n }\n}", + "raw": "{\n \"user_role\": {\n \"user_id\": \"0e8135f3-143e-7c87-99a7-94706f0fc3b9\",\n \"role_id\": \"e4dac1c6-da70-ee7a-a1f8-5d58375e8ce1\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -5527,7 +5527,7 @@ }, "response": [ { - "id": "906044b1-40e6-49a1-a108-cb03acb23d0e", + "id": "51299a71-b79d-44e4-8073-70f8df53dd31", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -5561,7 +5561,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"user_role\": {\n \"user_id\": \"urn:uuid:6c2a72a2-61fd-0420-cf76-9b0ebaa925f6\",\n \"role_id\": \"urn:uuid:ad04b564-1045-dc0a-6b42-6711e8df4510\"\n }\n}", + "raw": "{\n \"user_role\": {\n \"user_id\": \"0e8135f3-143e-7c87-99a7-94706f0fc3b9\",\n \"role_id\": \"e4dac1c6-da70-ee7a-a1f8-5d58375e8ce1\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -5578,12 +5578,12 @@ "value": "application/json" } ], - "body": "{\n \"user_role\": {\n \"id\": \"urn:uuid:66c0ba0d-7046-fe13-c557-502dc84dd5b7\",\n \"uid\": \"in officia sit iruremollitipsumL\",\n \"user_id\": \"bdfd6204-8ce4-fbae-29f8-a5100d7f191c\",\n \"role_id\": \"urn:uuid:09e45061-8d1b-ed70-3653-f849dbff30d5\"\n }\n}", + "body": "{\n \"user_role\": {\n \"id\": \"urn:uuid:2a7c3c46-3840-3e94-8035-44025a3174f8\",\n \"uid\": \"reprehenderit est deserunt utips\",\n \"user_id\": \"urn:uuid:07c2df33-38b9-966c-a0f6-de3843bd3fd2\",\n \"role_id\": \"urn:uuid:699a63cc-1604-1be4-0ff0-76f996783240\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "1d1f5270-130f-4b9b-aae9-1d176118e394", + "id": "fb99666e-26da-4fb2-a29e-ed60f187ac37", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -5617,7 +5617,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"user_role\": {\n \"user_id\": \"urn:uuid:6c2a72a2-61fd-0420-cf76-9b0ebaa925f6\",\n \"role_id\": \"urn:uuid:ad04b564-1045-dc0a-6b42-6711e8df4510\"\n }\n}", + "raw": "{\n \"user_role\": {\n \"user_id\": \"0e8135f3-143e-7c87-99a7-94706f0fc3b9\",\n \"role_id\": \"e4dac1c6-da70-ee7a-a1f8-5d58375e8ce1\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -5639,7 +5639,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3e9a98e7-404a-40c7-936f-646d6f9c13a7", + "id": "c77f872f-918e-400b-986a-576e29458e4a", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -5673,7 +5673,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"user_role\": {\n \"user_id\": \"urn:uuid:6c2a72a2-61fd-0420-cf76-9b0ebaa925f6\",\n \"role_id\": \"urn:uuid:ad04b564-1045-dc0a-6b42-6711e8df4510\"\n }\n}", + "raw": "{\n \"user_role\": {\n \"user_id\": \"0e8135f3-143e-7c87-99a7-94706f0fc3b9\",\n \"role_id\": \"e4dac1c6-da70-ee7a-a1f8-5d58375e8ce1\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -5701,7 +5701,7 @@ } }, { - "id": "0a2a655a-afe5-4af4-a300-17ce8ce74e69", + "id": "1adca4cd-7c7b-4c2b-bbca-bf55c67d55f2", "name": "Get user role pairings", "request": { "name": "Get user role pairings", @@ -5760,7 +5760,7 @@ "type": "text/plain" }, "key": "role_id", - "value": "ddcc300b-df84-c438-f837-90d81d0c2bdc" + "value": "urn:uuid:7f1dc9d0-8a01-cc5e-4782-40258f360dd0" }, { "disabled": false, @@ -5786,7 +5786,7 @@ }, "response": [ { - "id": "65bbf342-a1aa-4c2d-ab54-7ec13deb1003", + "id": "5ac487d2-3d81-45d6-8b42-381b09c8fbd2", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -5840,7 +5840,7 @@ "type": "text/plain" }, "key": "role_id", - "value": "ddcc300b-df84-c438-f837-90d81d0c2bdc" + "value": "urn:uuid:7f1dc9d0-8a01-cc5e-4782-40258f360dd0" }, { "disabled": false, @@ -5879,12 +5879,12 @@ "value": "application/json" } ], - "body": "{\n \"user_roles\": [\n {\n \"id\": \"urn:uuid:f0f7c876-2c63-d2ca-b856-c34d2384c37c\",\n \"uid\": \"reprehenderit culpa temporut adn\",\n \"user_id\": \"64238633-df1a-b836-bcbc-b517da3b119f\",\n \"role_id\": \"9dd5b9d8-f8b5-96f2-326b-ced0ebc92bef\"\n },\n {\n \"id\": \"94c89b7b-085a-2dd0-e949-ea49e20b432e\",\n \"uid\": \"Excepteur consequat dolor dolor \",\n \"user_id\": \"e0bdec11-8876-d0cd-ed71-3678784858bd\",\n \"role_id\": \"a0772fee-431f-8a97-5ea9-7597bb669d3c\"\n }\n ],\n \"_metadata\": {\n \"limit\": -18596250,\n \"offset\": -2914699,\n \"total\": 68529931,\n \"next\": \"/endpoint?limit=10&offset=60\",\n \"previous\": \"/endpoint?limit=10&offset=40\"\n }\n}", + "body": "{\n \"user_roles\": [\n {\n \"id\": \"49ae831e-8d50-6d17-00a1-0f46f675c084\",\n \"uid\": \"ex adut consecteturdolor utet no\",\n \"user_id\": \"a3885767-e4cd-6235-b68b-727a976f27c7\",\n \"role_id\": \"urn:uuid:7073fa88-7b38-6f63-c27f-a2a9bac81363\"\n },\n {\n \"id\": \"d45977ce-9ba7-9fa8-ab8a-1fde31ccd2c9\",\n \"uid\": \"nonnisi sit velitnostrud Lorem n\",\n \"user_id\": \"d3468386-8ea0-9e00-9a2c-ea59230b4c35\",\n \"role_id\": \"a397b28b-6ae5-8d09-c1f4-d3cf3a08d82f\"\n }\n ],\n \"_metadata\": {\n \"limit\": 20249731,\n \"offset\": -71927120,\n \"total\": -3320775,\n \"next\": \"/endpoint?limit=10&offset=60\",\n \"previous\": \"/endpoint?limit=10&offset=40\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a5d6059f-2cfe-484a-8e70-4664ca6c52d7", + "id": "d1d9afd6-9491-4a46-a9a7-bd4f7f224751", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -5938,7 +5938,7 @@ "type": "text/plain" }, "key": "role_id", - "value": "ddcc300b-df84-c438-f837-90d81d0c2bdc" + "value": "urn:uuid:7f1dc9d0-8a01-cc5e-4782-40258f360dd0" }, { "disabled": false, @@ -5982,7 +5982,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2108e7b9-68ef-4c26-b839-766756241371", + "id": "b86b33c2-5ab2-483c-a460-ebb88e171cb4", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -6036,7 +6036,7 @@ "type": "text/plain" }, "key": "role_id", - "value": "ddcc300b-df84-c438-f837-90d81d0c2bdc" + "value": "urn:uuid:7f1dc9d0-8a01-cc5e-4782-40258f360dd0" }, { "disabled": false, @@ -6086,7 +6086,7 @@ } }, { - "id": "613212c4-f45b-4512-b84e-7a3d22c8d839", + "id": "c5dc678e-4915-46ca-9481-eeebf5bee32a", "name": "Create multiple new user role pairings", "request": { "name": "Create multiple new user role pairings", @@ -6117,7 +6117,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"user_roles\": [\n {\n \"user_id\": \"40575d9e-21ab-b966-1190-969c8bc85ede\",\n \"role_id\": \"53455dd6-c2ce-bae6-49d9-da54f0e0d3f9\"\n },\n {\n \"user_id\": \"urn:uuid:3cb07507-dc09-2269-bb33-9d7ced49ecb3\",\n \"role_id\": \"91799386-bf82-15bb-135c-e11db932bbf4\"\n }\n ]\n}", + "raw": "{\n \"user_roles\": [\n {\n \"user_id\": \"urn:uuid:c7f8c934-22ca-8c78-3bfc-4dd581901acb\",\n \"role_id\": \"urn:uuid:c0746508-2a51-8a41-0f6f-beb6229f66a9\"\n },\n {\n \"user_id\": \"631942a0-6aff-b865-6f34-80ca272c9845\",\n \"role_id\": \"b0189f03-e313-7d31-98b5-6bb9656c8ed8\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -6129,7 +6129,7 @@ }, "response": [ { - "id": "139058eb-d559-499c-a0fe-989656678c7a", + "id": "370e528a-8cee-42f7-8e50-d1158fd63a99", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -6163,7 +6163,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"user_roles\": [\n {\n \"user_id\": \"40575d9e-21ab-b966-1190-969c8bc85ede\",\n \"role_id\": \"53455dd6-c2ce-bae6-49d9-da54f0e0d3f9\"\n },\n {\n \"user_id\": \"urn:uuid:3cb07507-dc09-2269-bb33-9d7ced49ecb3\",\n \"role_id\": \"91799386-bf82-15bb-135c-e11db932bbf4\"\n }\n ]\n}", + "raw": "{\n \"user_roles\": [\n {\n \"user_id\": \"urn:uuid:c7f8c934-22ca-8c78-3bfc-4dd581901acb\",\n \"role_id\": \"urn:uuid:c0746508-2a51-8a41-0f6f-beb6229f66a9\"\n },\n {\n \"user_id\": \"631942a0-6aff-b865-6f34-80ca272c9845\",\n \"role_id\": \"b0189f03-e313-7d31-98b5-6bb9656c8ed8\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -6180,12 +6180,12 @@ "value": "application/json" } ], - "body": "{\n \"user_roles\": [\n {\n \"id\": \"urn:uuid:1c51399f-34cc-d82a-7ba0-793f7b3e3e8c\",\n \"uid\": \"deserunt exercitation ut ipsumci\",\n \"user_id\": \"284d5fb6-0fd2-18d7-6a34-066e8e6e0f21\",\n \"role_id\": \"e5952dc7-a2a5-3a10-a524-013510d5c4b4\"\n },\n {\n \"id\": \"ba71ad63-8618-108f-b2c9-3cad56da6eb5\",\n \"uid\": \"consequat enim dolore adipisicin\",\n \"user_id\": \"urn:uuid:22559541-1d99-e107-1aec-66d7c239a1a1\",\n \"role_id\": \"urn:uuid:0866aadd-1152-343b-a92a-255233d2ff0a\"\n }\n ]\n}", + "body": "{\n \"user_roles\": [\n {\n \"id\": \"urn:uuid:deed49de-44fc-bb23-d013-a69d51556041\",\n \"uid\": \"in fugiat mollitanim nisiadipisi\",\n \"user_id\": \"urn:uuid:cfa9a145-2261-45d2-cc70-2b949accb50f\",\n \"role_id\": \"36a92f8e-1ae9-48fe-26d5-08f6b940024e\"\n },\n {\n \"id\": \"urn:uuid:48911d49-9d68-4115-1124-67b489821a75\",\n \"uid\": \"labore aliqua dolornon velitmagn\",\n \"user_id\": \"urn:uuid:985755ac-0923-4053-5755-114b2400e6dc\",\n \"role_id\": \"7a08be8e-62ac-ded5-b997-bfebb617ed53\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d72219a1-c3de-462e-8979-33e3f7349866", + "id": "ecf84a61-10cc-43bd-a884-23411922ed0d", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -6219,7 +6219,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"user_roles\": [\n {\n \"user_id\": \"40575d9e-21ab-b966-1190-969c8bc85ede\",\n \"role_id\": \"53455dd6-c2ce-bae6-49d9-da54f0e0d3f9\"\n },\n {\n \"user_id\": \"urn:uuid:3cb07507-dc09-2269-bb33-9d7ced49ecb3\",\n \"role_id\": \"91799386-bf82-15bb-135c-e11db932bbf4\"\n }\n ]\n}", + "raw": "{\n \"user_roles\": [\n {\n \"user_id\": \"urn:uuid:c7f8c934-22ca-8c78-3bfc-4dd581901acb\",\n \"role_id\": \"urn:uuid:c0746508-2a51-8a41-0f6f-beb6229f66a9\"\n },\n {\n \"user_id\": \"631942a0-6aff-b865-6f34-80ca272c9845\",\n \"role_id\": \"b0189f03-e313-7d31-98b5-6bb9656c8ed8\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -6241,7 +6241,7 @@ "_postman_previewlanguage": "json" }, { - "id": "597f67f6-f415-4fb9-a0fe-8ca07b7ab84c", + "id": "9ffb720b-31b5-439a-b27e-a03ed2acb282", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -6275,7 +6275,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"user_roles\": [\n {\n \"user_id\": \"40575d9e-21ab-b966-1190-969c8bc85ede\",\n \"role_id\": \"53455dd6-c2ce-bae6-49d9-da54f0e0d3f9\"\n },\n {\n \"user_id\": \"urn:uuid:3cb07507-dc09-2269-bb33-9d7ced49ecb3\",\n \"role_id\": \"91799386-bf82-15bb-135c-e11db932bbf4\"\n }\n ]\n}", + "raw": "{\n \"user_roles\": [\n {\n \"user_id\": \"urn:uuid:c7f8c934-22ca-8c78-3bfc-4dd581901acb\",\n \"role_id\": \"urn:uuid:c0746508-2a51-8a41-0f6f-beb6229f66a9\"\n },\n {\n \"user_id\": \"631942a0-6aff-b865-6f34-80ca272c9845\",\n \"role_id\": \"b0189f03-e313-7d31-98b5-6bb9656c8ed8\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -6303,7 +6303,7 @@ } }, { - "id": "04b1986a-200a-40ea-a630-0672ef743dde", + "id": "6ca5fda1-38c7-44f4-a48e-9e0eca1c442f", "name": "Update multiple user role pairings", "request": { "name": "Update multiple user role pairings", @@ -6334,7 +6334,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"user_roles\": [\n {\n \"id\": \"urn:uuid:01564c64-c439-c7a6-6c26-31d51a705591\",\n \"user_id\": \"urn:uuid:458dd4d3-526d-372b-5e6a-90d5d271ea4d\",\n \"role_id\": \"urn:uuid:04dd6f8f-c5fa-b6d5-38b5-d5e54c694ae2\"\n },\n {\n \"id\": \"38d707e1-0003-e4b2-f512-a3bcf5bdd352\",\n \"user_id\": \"urn:uuid:c61b389b-5afc-dc96-afdd-30aa58f9e2d6\",\n \"role_id\": \"urn:uuid:e93b5d5a-b67c-ad59-f895-2d8c3a1882c2\"\n }\n ]\n}", + "raw": "{\n \"user_roles\": [\n {\n \"id\": \"402ca120-b7f6-3c5d-9b73-e7f1a2a2c6e2\",\n \"user_id\": \"1bb4e13f-05d6-3a5f-3d8d-5e76fd098bf2\",\n \"role_id\": \"urn:uuid:d8146895-7195-0dd0-4389-59a2f68a7b2e\"\n },\n {\n \"id\": \"urn:uuid:2fb03edf-fec0-48ff-4fba-82f04d8f7533\",\n \"user_id\": \"urn:uuid:85426bb2-49d5-b65e-16ef-faa2e42664de\",\n \"role_id\": \"ddee668d-003d-8219-8a40-1de12aec9ea4\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -6346,7 +6346,7 @@ }, "response": [ { - "id": "2bf6687b-a40e-4c66-820e-1909ca370191", + "id": "a623bde7-4ceb-44da-95a6-8dfebb89aa83", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -6380,7 +6380,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"user_roles\": [\n {\n \"id\": \"urn:uuid:01564c64-c439-c7a6-6c26-31d51a705591\",\n \"user_id\": \"urn:uuid:458dd4d3-526d-372b-5e6a-90d5d271ea4d\",\n \"role_id\": \"urn:uuid:04dd6f8f-c5fa-b6d5-38b5-d5e54c694ae2\"\n },\n {\n \"id\": \"38d707e1-0003-e4b2-f512-a3bcf5bdd352\",\n \"user_id\": \"urn:uuid:c61b389b-5afc-dc96-afdd-30aa58f9e2d6\",\n \"role_id\": \"urn:uuid:e93b5d5a-b67c-ad59-f895-2d8c3a1882c2\"\n }\n ]\n}", + "raw": "{\n \"user_roles\": [\n {\n \"id\": \"402ca120-b7f6-3c5d-9b73-e7f1a2a2c6e2\",\n \"user_id\": \"1bb4e13f-05d6-3a5f-3d8d-5e76fd098bf2\",\n \"role_id\": \"urn:uuid:d8146895-7195-0dd0-4389-59a2f68a7b2e\"\n },\n {\n \"id\": \"urn:uuid:2fb03edf-fec0-48ff-4fba-82f04d8f7533\",\n \"user_id\": \"urn:uuid:85426bb2-49d5-b65e-16ef-faa2e42664de\",\n \"role_id\": \"ddee668d-003d-8219-8a40-1de12aec9ea4\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -6397,12 +6397,12 @@ "value": "application/json" } ], - "body": "{\n \"user_roles\": [\n {\n \"id\": \"urn:uuid:1c51399f-34cc-d82a-7ba0-793f7b3e3e8c\",\n \"uid\": \"deserunt exercitation ut ipsumci\",\n \"user_id\": \"284d5fb6-0fd2-18d7-6a34-066e8e6e0f21\",\n \"role_id\": \"e5952dc7-a2a5-3a10-a524-013510d5c4b4\"\n },\n {\n \"id\": \"ba71ad63-8618-108f-b2c9-3cad56da6eb5\",\n \"uid\": \"consequat enim dolore adipisicin\",\n \"user_id\": \"urn:uuid:22559541-1d99-e107-1aec-66d7c239a1a1\",\n \"role_id\": \"urn:uuid:0866aadd-1152-343b-a92a-255233d2ff0a\"\n }\n ]\n}", + "body": "{\n \"user_roles\": [\n {\n \"id\": \"urn:uuid:deed49de-44fc-bb23-d013-a69d51556041\",\n \"uid\": \"in fugiat mollitanim nisiadipisi\",\n \"user_id\": \"urn:uuid:cfa9a145-2261-45d2-cc70-2b949accb50f\",\n \"role_id\": \"36a92f8e-1ae9-48fe-26d5-08f6b940024e\"\n },\n {\n \"id\": \"urn:uuid:48911d49-9d68-4115-1124-67b489821a75\",\n \"uid\": \"labore aliqua dolornon velitmagn\",\n \"user_id\": \"urn:uuid:985755ac-0923-4053-5755-114b2400e6dc\",\n \"role_id\": \"7a08be8e-62ac-ded5-b997-bfebb617ed53\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b4500182-660e-444b-b5a0-cfd8367b2605", + "id": "e008f39c-6b14-4d20-b90d-75bff8eb25db", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -6436,7 +6436,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"user_roles\": [\n {\n \"id\": \"urn:uuid:01564c64-c439-c7a6-6c26-31d51a705591\",\n \"user_id\": \"urn:uuid:458dd4d3-526d-372b-5e6a-90d5d271ea4d\",\n \"role_id\": \"urn:uuid:04dd6f8f-c5fa-b6d5-38b5-d5e54c694ae2\"\n },\n {\n \"id\": \"38d707e1-0003-e4b2-f512-a3bcf5bdd352\",\n \"user_id\": \"urn:uuid:c61b389b-5afc-dc96-afdd-30aa58f9e2d6\",\n \"role_id\": \"urn:uuid:e93b5d5a-b67c-ad59-f895-2d8c3a1882c2\"\n }\n ]\n}", + "raw": "{\n \"user_roles\": [\n {\n \"id\": \"402ca120-b7f6-3c5d-9b73-e7f1a2a2c6e2\",\n \"user_id\": \"1bb4e13f-05d6-3a5f-3d8d-5e76fd098bf2\",\n \"role_id\": \"urn:uuid:d8146895-7195-0dd0-4389-59a2f68a7b2e\"\n },\n {\n \"id\": \"urn:uuid:2fb03edf-fec0-48ff-4fba-82f04d8f7533\",\n \"user_id\": \"urn:uuid:85426bb2-49d5-b65e-16ef-faa2e42664de\",\n \"role_id\": \"ddee668d-003d-8219-8a40-1de12aec9ea4\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -6458,7 +6458,7 @@ "_postman_previewlanguage": "json" }, { - "id": "abfe7e01-3c8b-4793-9165-23ceaf23a64d", + "id": "9a6dd8f3-1ab8-4d0f-99e9-8b358346b1e6", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -6492,7 +6492,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"user_roles\": [\n {\n \"id\": \"urn:uuid:01564c64-c439-c7a6-6c26-31d51a705591\",\n \"user_id\": \"urn:uuid:458dd4d3-526d-372b-5e6a-90d5d271ea4d\",\n \"role_id\": \"urn:uuid:04dd6f8f-c5fa-b6d5-38b5-d5e54c694ae2\"\n },\n {\n \"id\": \"38d707e1-0003-e4b2-f512-a3bcf5bdd352\",\n \"user_id\": \"urn:uuid:c61b389b-5afc-dc96-afdd-30aa58f9e2d6\",\n \"role_id\": \"urn:uuid:e93b5d5a-b67c-ad59-f895-2d8c3a1882c2\"\n }\n ]\n}", + "raw": "{\n \"user_roles\": [\n {\n \"id\": \"402ca120-b7f6-3c5d-9b73-e7f1a2a2c6e2\",\n \"user_id\": \"1bb4e13f-05d6-3a5f-3d8d-5e76fd098bf2\",\n \"role_id\": \"urn:uuid:d8146895-7195-0dd0-4389-59a2f68a7b2e\"\n },\n {\n \"id\": \"urn:uuid:2fb03edf-fec0-48ff-4fba-82f04d8f7533\",\n \"user_id\": \"urn:uuid:85426bb2-49d5-b65e-16ef-faa2e42664de\",\n \"role_id\": \"ddee668d-003d-8219-8a40-1de12aec9ea4\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -6520,7 +6520,7 @@ } }, { - "id": "187de9c2-52bf-48aa-a2c6-b82bc4fc1601", + "id": "ca01a40d-8601-4693-aaba-a16b14782b57", "name": "Find user role pairing by id", "request": { "name": "Find user role pairing by id", @@ -6562,7 +6562,7 @@ }, "response": [ { - "id": "312785b7-f7c4-4179-9cfb-05fb981f90cd", + "id": "9cf9caa9-4e36-4d0e-9759-102a935f4878", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -6601,12 +6601,12 @@ "value": "application/json" } ], - "body": "{\n \"user_role\": {\n \"id\": \"urn:uuid:66c0ba0d-7046-fe13-c557-502dc84dd5b7\",\n \"uid\": \"in officia sit iruremollitipsumL\",\n \"user_id\": \"bdfd6204-8ce4-fbae-29f8-a5100d7f191c\",\n \"role_id\": \"urn:uuid:09e45061-8d1b-ed70-3653-f849dbff30d5\"\n }\n}", + "body": "{\n \"user_role\": {\n \"id\": \"urn:uuid:2a7c3c46-3840-3e94-8035-44025a3174f8\",\n \"uid\": \"reprehenderit est deserunt utips\",\n \"user_id\": \"urn:uuid:07c2df33-38b9-966c-a0f6-de3843bd3fd2\",\n \"role_id\": \"urn:uuid:699a63cc-1604-1be4-0ff0-76f996783240\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "5dc500f0-fa91-448e-9c5b-e4b43aa1694a", + "id": "0f4f1e2b-fa9e-4b18-871b-9766d464aefd", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -6650,7 +6650,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7c96cf30-d96c-4d68-90be-f05e6e906f3e", + "id": "774f6c1c-ea6f-430b-b774-6798bedb13c7", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -6700,7 +6700,7 @@ } }, { - "id": "83a10d71-a8da-4310-8194-07592233cd02", + "id": "aff90503-f432-4c3a-a8c3-891e774582cf", "name": "Update a user role pairing by id", "request": { "name": "Update a user role pairing by id", @@ -6743,7 +6743,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"user_role\": {\n \"user_id\": \"urn:uuid:6c2a72a2-61fd-0420-cf76-9b0ebaa925f6\",\n \"role_id\": \"urn:uuid:ad04b564-1045-dc0a-6b42-6711e8df4510\"\n }\n}", + "raw": "{\n \"user_role\": {\n \"user_id\": \"0e8135f3-143e-7c87-99a7-94706f0fc3b9\",\n \"role_id\": \"e4dac1c6-da70-ee7a-a1f8-5d58375e8ce1\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -6755,7 +6755,7 @@ }, "response": [ { - "id": "37e88975-ae8a-4c8d-a362-dca55df09931", + "id": "78dcd4f1-9b92-40ca-ab7a-2a1ce4384779", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -6790,7 +6790,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"user_role\": {\n \"user_id\": \"urn:uuid:6c2a72a2-61fd-0420-cf76-9b0ebaa925f6\",\n \"role_id\": \"urn:uuid:ad04b564-1045-dc0a-6b42-6711e8df4510\"\n }\n}", + "raw": "{\n \"user_role\": {\n \"user_id\": \"0e8135f3-143e-7c87-99a7-94706f0fc3b9\",\n \"role_id\": \"e4dac1c6-da70-ee7a-a1f8-5d58375e8ce1\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -6807,12 +6807,12 @@ "value": "application/json" } ], - "body": "{\n \"user_role\": {\n \"id\": \"urn:uuid:66c0ba0d-7046-fe13-c557-502dc84dd5b7\",\n \"uid\": \"in officia sit iruremollitipsumL\",\n \"user_id\": \"bdfd6204-8ce4-fbae-29f8-a5100d7f191c\",\n \"role_id\": \"urn:uuid:09e45061-8d1b-ed70-3653-f849dbff30d5\"\n }\n}", + "body": "{\n \"user_role\": {\n \"id\": \"urn:uuid:2a7c3c46-3840-3e94-8035-44025a3174f8\",\n \"uid\": \"reprehenderit est deserunt utips\",\n \"user_id\": \"urn:uuid:07c2df33-38b9-966c-a0f6-de3843bd3fd2\",\n \"role_id\": \"urn:uuid:699a63cc-1604-1be4-0ff0-76f996783240\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c2fef125-ee82-4b79-ab01-17270da8c650", + "id": "716dc3da-ee8c-4bda-a1e6-9ff2afabb61f", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -6847,7 +6847,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"user_role\": {\n \"user_id\": \"urn:uuid:6c2a72a2-61fd-0420-cf76-9b0ebaa925f6\",\n \"role_id\": \"urn:uuid:ad04b564-1045-dc0a-6b42-6711e8df4510\"\n }\n}", + "raw": "{\n \"user_role\": {\n \"user_id\": \"0e8135f3-143e-7c87-99a7-94706f0fc3b9\",\n \"role_id\": \"e4dac1c6-da70-ee7a-a1f8-5d58375e8ce1\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -6869,7 +6869,7 @@ "_postman_previewlanguage": "json" }, { - "id": "40059296-c89c-4af6-bb7e-14d22f8fe17e", + "id": "9cadc831-ff2d-42ed-bfce-98a93be0bbef", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -6904,7 +6904,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"user_role\": {\n \"user_id\": \"urn:uuid:6c2a72a2-61fd-0420-cf76-9b0ebaa925f6\",\n \"role_id\": \"urn:uuid:ad04b564-1045-dc0a-6b42-6711e8df4510\"\n }\n}", + "raw": "{\n \"user_role\": {\n \"user_id\": \"0e8135f3-143e-7c87-99a7-94706f0fc3b9\",\n \"role_id\": \"e4dac1c6-da70-ee7a-a1f8-5d58375e8ce1\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -6932,7 +6932,7 @@ } }, { - "id": "21d32f5e-94e2-45ac-b43d-f822468fcf37", + "id": "cbd1699a-36fe-4049-87d4-2004904e0ca3", "name": "Delete a user role assignment", "request": { "name": "Delete a user role assignment", @@ -6974,7 +6974,7 @@ }, "response": [ { - "id": "52fa0815-b43b-467d-85b4-07afdb1993fb", + "id": "9ebae881-4159-41d6-b273-4e06edb5ea01", "name": "User role was destroyed", "originalRequest": { "url": { @@ -7018,7 +7018,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5596df12-8d47-42a0-997b-8c027af60c68", + "id": "4fe7d98a-1573-4a52-83c6-976714d80c07", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -7062,7 +7062,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e2098ffa-4f16-412d-8405-aae7b2fc228d", + "id": "8590022e-7ea2-4da0-8e66-e5a093c7377a", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -7118,7 +7118,7 @@ "description": "", "item": [ { - "id": "feae18d9-0fac-402b-9577-7c8c38115fba", + "id": "5c8b26ec-2d1c-4f99-b607-942bbbfb27b4", "name": "Get attribute data in bulk", "request": { "name": "Get attribute data in bulk", @@ -7203,7 +7203,7 @@ }, "response": [ { - "id": "7b88a70b-f034-47b4-99b7-412f65c5b265", + "id": "aadee891-4bc8-430e-815e-26bfa49b1454", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -7296,12 +7296,12 @@ "value": "application/json" } ], - "body": "{\n \"ne_attributes\": [\n {\n \"id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"uid\": \"eu irure inut proident suntfugia\",\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\": \"1966-08-19T16:20:22.274Z\",\n \"created_at\": \"2004-09-03T20:34:38.251Z\",\n \"updated_at\": \"1955-06-11T16:19:46.706Z\",\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\": \"auteveniam sitsunt sit laboris c\",\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\": \"1953-08-09T00:34:25.254Z\",\n \"created_at\": \"1977-06-04T13:08:36.561Z\",\n \"updated_at\": \"1995-05-11T01:23:21.174Z\",\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\": \"2000-10-28T19:08:44.311Z\",\n \"tmp_updated_at\": \"2022-08-01T15:16:59.141Z\"\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 inincididuntoccaecat ut nostr\",\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\": \"1973-05-12T04:46:18.202Z\",\n \"created_at\": \"1961-10-18T10:42:48.178Z\",\n \"updated_at\": \"1950-07-06T17:32:10.843Z\",\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\": \"adipisicing fugiat commodononven\",\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\": \"1984-12-29T19:22:51.203Z\",\n \"created_at\": \"2010-06-10T03:32:48.149Z\",\n \"updated_at\": \"2016-11-13T17:15:57.534Z\",\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\": \"1996-05-05T12:15:59.211Z\",\n \"tmp_updated_at\": \"1949-07-03T18:07:47.253Z\"\n },\n \"profile_type_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"data_type\": \"text field\",\n \"type\": \"AttachmentAttribute\"\n }\n ],\n \"_metadata\": {\n \"limit\": 33190696,\n \"offset\": 42748360,\n \"total\": -63603941,\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\": \"mollit Lorem in autevelit commod\",\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\": \"1961-01-22T09:02:12.318Z\",\n \"created_at\": \"1950-07-10T13:25:46.664Z\",\n \"updated_at\": \"1993-11-15T20:15:17.131Z\",\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\": \"consectetur cillumex nostrudest \",\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\": \"1991-09-21T04:18:26.645Z\",\n \"created_at\": \"2015-02-09T06:31:32.089Z\",\n \"updated_at\": \"1996-12-12T09:59:32.757Z\",\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-05-02T06:48:05.939Z\",\n \"tmp_updated_at\": \"1983-10-11T20:52:01.725Z\"\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\": \"cupidatat nullaelit dolore ut co\",\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\": \"1953-02-07T04:11:05.405Z\",\n \"created_at\": \"1944-10-12T11:39:13.302Z\",\n \"updated_at\": \"1955-11-25T14:36:10.291Z\",\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\": \"mollit elitLorem laborisadipisic\",\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\": \"2017-03-11T09:23:47.221Z\",\n \"created_at\": \"1958-05-19T20:36:43.670Z\",\n \"updated_at\": \"1989-09-25T04:59:10.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\": \"1966-04-01T02:08:20.857Z\",\n \"tmp_updated_at\": \"2022-08-17T01:41:37.047Z\"\n },\n \"profile_type_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"data_type\": \"text field\",\n \"type\": \"AttachmentAttribute\"\n }\n ],\n \"_metadata\": {\n \"limit\": 56692129,\n \"offset\": 78737786,\n \"total\": -74755909,\n \"next\": \"/endpoint?limit=10&offset=60\",\n \"previous\": \"/endpoint?limit=10&offset=40\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b2e2d40b-adca-41a1-a221-9e4ad70259cf", + "id": "c4bd9e3a-1d5b-499c-8882-85c914ee2401", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -7399,7 +7399,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7b383521-c3bd-43e7-8cd2-70219137d831", + "id": "761bdb57-1f21-4ce1-9b51-56bb9ae6088d", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -7503,7 +7503,7 @@ } }, { - "id": "f95cc676-f918-47f1-8e9b-9bd939ab0d10", + "id": "56df9141-a58b-4e66-ba4f-b4305f46e364", "name": "Create an attribute", "request": { "name": "Create an attribute", @@ -7534,7 +7534,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"ne_attribute\": {\n \"id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"uid\": \"incididunt aliquip sunt aliqua p\",\n \"label\": \"birthday\",\n \"description\": \"Your birthday\",\n \"tool_tip\": \"Put your birthday here mm-dd-yyyy\",\n \"archived\": false,\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\": \"minim do eiusmod auteanim 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\": \"2010-09-15T07:08:27.303Z\",\n \"created_at\": \"2018-08-15T11:16:08.282Z\",\n \"updated_at\": \"1953-04-18T02:41:13.734Z\",\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\": \"1997-03-04T17:10:05.106Z\",\n \"tmp_updated_at\": \"1982-04-30T22:47:46.158Z\"\n },\n \"profile_type_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"data_type\": \"text field\",\n \"type\": \"AttachmentAttribute\",\n \"validations_attributes\": {\n \"validation_method\": \"required\",\n \"value\": \"mm-dd-yyyy\",\n \"_destroy\": false\n }\n }\n}", + "raw": "{\n \"ne_attribute\": {\n \"id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"uid\": \"fugiat aliquipculpa consequat ei\",\n \"label\": \"birthday\",\n \"description\": \"Your birthday\",\n \"tool_tip\": \"Put your birthday here mm-dd-yyyy\",\n \"archived\": false,\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\": \"sit nulla ullamcopariatur ea nos\",\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-10-29T00:28:27.791Z\",\n \"created_at\": \"1968-06-27T03:27:31.082Z\",\n \"updated_at\": \"2008-06-29T02:22:07.814Z\",\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\": \"1983-12-23T02:11:05.578Z\",\n \"tmp_updated_at\": \"1952-06-07T20:06:54.876Z\"\n },\n \"profile_type_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"data_type\": \"text field\",\n \"type\": \"AttachmentAttribute\",\n \"validations_attributes\": {\n \"validation_method\": \"required\",\n \"value\": \"mm-dd-yyyy\",\n \"_destroy\": false\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -7546,7 +7546,7 @@ }, "response": [ { - "id": "0e36c726-5814-4c9a-97d9-dde8a0c8ea16", + "id": "2d47dfbf-1b6b-4858-995b-0c747054ace9", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -7580,7 +7580,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"ne_attribute\": {\n \"id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"uid\": \"incididunt aliquip sunt aliqua p\",\n \"label\": \"birthday\",\n \"description\": \"Your birthday\",\n \"tool_tip\": \"Put your birthday here mm-dd-yyyy\",\n \"archived\": false,\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\": \"minim do eiusmod auteanim 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\": \"2010-09-15T07:08:27.303Z\",\n \"created_at\": \"2018-08-15T11:16:08.282Z\",\n \"updated_at\": \"1953-04-18T02:41:13.734Z\",\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\": \"1997-03-04T17:10:05.106Z\",\n \"tmp_updated_at\": \"1982-04-30T22:47:46.158Z\"\n },\n \"profile_type_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"data_type\": \"text field\",\n \"type\": \"AttachmentAttribute\",\n \"validations_attributes\": {\n \"validation_method\": \"required\",\n \"value\": \"mm-dd-yyyy\",\n \"_destroy\": false\n }\n }\n}", + "raw": "{\n \"ne_attribute\": {\n \"id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"uid\": \"fugiat aliquipculpa consequat ei\",\n \"label\": \"birthday\",\n \"description\": \"Your birthday\",\n \"tool_tip\": \"Put your birthday here mm-dd-yyyy\",\n \"archived\": false,\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\": \"sit nulla ullamcopariatur ea nos\",\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-10-29T00:28:27.791Z\",\n \"created_at\": \"1968-06-27T03:27:31.082Z\",\n \"updated_at\": \"2008-06-29T02:22:07.814Z\",\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\": \"1983-12-23T02:11:05.578Z\",\n \"tmp_updated_at\": \"1952-06-07T20:06:54.876Z\"\n },\n \"profile_type_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"data_type\": \"text field\",\n \"type\": \"AttachmentAttribute\",\n \"validations_attributes\": {\n \"validation_method\": \"required\",\n \"value\": \"mm-dd-yyyy\",\n \"_destroy\": false\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -7597,12 +7597,12 @@ "value": "application/json" } ], - "body": "{\n \"ne_attribute\": {\n \"id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"uid\": \"Duis Excepteurdolore non quis fu\",\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-05-03T20:39:17.090Z\",\n \"created_at\": \"2005-03-30T03:15:42.140Z\",\n \"updated_at\": \"1990-09-18T10:34:18.374Z\",\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\": \"id magna ad animnisi id mollit m\",\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\": \"2004-06-08T00:28:58.629Z\",\n \"created_at\": \"1958-07-28T00:12:19.328Z\",\n \"updated_at\": \"1946-06-27T21:30:44.938Z\",\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\": \"1982-04-04T02:13:12.786Z\",\n \"tmp_updated_at\": \"1994-12-03T07:54:09.645Z\"\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\": \"ex culpa qui est animseddolor no\",\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\": \"1991-07-12T03:10:59.819Z\",\n \"created_at\": \"2010-08-18T01:51:31.068Z\",\n \"updated_at\": \"1978-10-08T12:44:29.790Z\",\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\": \"Lorem quisesse Excepteur cillum \",\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\": \"2004-09-16T21:38:18.631Z\",\n \"created_at\": \"2006-01-13T12:54:04.274Z\",\n \"updated_at\": \"1974-04-26T13:01:04.043Z\",\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\": \"1975-11-23T05:53:49.212Z\",\n \"tmp_updated_at\": \"1953-09-12T12:41:12.378Z\"\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": "cd2d4b35-b085-4e0c-abf0-4b2d95424ecb", + "id": "c043cb61-9b76-4096-a7b3-ea7d5a91d633", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -7636,7 +7636,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"ne_attribute\": {\n \"id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"uid\": \"incididunt aliquip sunt aliqua p\",\n \"label\": \"birthday\",\n \"description\": \"Your birthday\",\n \"tool_tip\": \"Put your birthday here mm-dd-yyyy\",\n \"archived\": false,\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\": \"minim do eiusmod auteanim 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\": \"2010-09-15T07:08:27.303Z\",\n \"created_at\": \"2018-08-15T11:16:08.282Z\",\n \"updated_at\": \"1953-04-18T02:41:13.734Z\",\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\": \"1997-03-04T17:10:05.106Z\",\n \"tmp_updated_at\": \"1982-04-30T22:47:46.158Z\"\n },\n \"profile_type_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"data_type\": \"text field\",\n \"type\": \"AttachmentAttribute\",\n \"validations_attributes\": {\n \"validation_method\": \"required\",\n \"value\": \"mm-dd-yyyy\",\n \"_destroy\": false\n }\n }\n}", + "raw": "{\n \"ne_attribute\": {\n \"id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"uid\": \"fugiat aliquipculpa consequat ei\",\n \"label\": \"birthday\",\n \"description\": \"Your birthday\",\n \"tool_tip\": \"Put your birthday here mm-dd-yyyy\",\n \"archived\": false,\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\": \"sit nulla ullamcopariatur ea nos\",\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-10-29T00:28:27.791Z\",\n \"created_at\": \"1968-06-27T03:27:31.082Z\",\n \"updated_at\": \"2008-06-29T02:22:07.814Z\",\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\": \"1983-12-23T02:11:05.578Z\",\n \"tmp_updated_at\": \"1952-06-07T20:06:54.876Z\"\n },\n \"profile_type_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"data_type\": \"text field\",\n \"type\": \"AttachmentAttribute\",\n \"validations_attributes\": {\n \"validation_method\": \"required\",\n \"value\": \"mm-dd-yyyy\",\n \"_destroy\": false\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -7658,7 +7658,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e049298f-0344-4f30-90cb-bacd1e6db0a5", + "id": "a40e0ea3-731b-4187-bfcf-cd6fa273c262", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -7692,7 +7692,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"ne_attribute\": {\n \"id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"uid\": \"incididunt aliquip sunt aliqua p\",\n \"label\": \"birthday\",\n \"description\": \"Your birthday\",\n \"tool_tip\": \"Put your birthday here mm-dd-yyyy\",\n \"archived\": false,\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\": \"minim do eiusmod auteanim 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\": \"2010-09-15T07:08:27.303Z\",\n \"created_at\": \"2018-08-15T11:16:08.282Z\",\n \"updated_at\": \"1953-04-18T02:41:13.734Z\",\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\": \"1997-03-04T17:10:05.106Z\",\n \"tmp_updated_at\": \"1982-04-30T22:47:46.158Z\"\n },\n \"profile_type_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"data_type\": \"text field\",\n \"type\": \"AttachmentAttribute\",\n \"validations_attributes\": {\n \"validation_method\": \"required\",\n \"value\": \"mm-dd-yyyy\",\n \"_destroy\": false\n }\n }\n}", + "raw": "{\n \"ne_attribute\": {\n \"id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"uid\": \"fugiat aliquipculpa consequat ei\",\n \"label\": \"birthday\",\n \"description\": \"Your birthday\",\n \"tool_tip\": \"Put your birthday here mm-dd-yyyy\",\n \"archived\": false,\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\": \"sit nulla ullamcopariatur ea nos\",\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-10-29T00:28:27.791Z\",\n \"created_at\": \"1968-06-27T03:27:31.082Z\",\n \"updated_at\": \"2008-06-29T02:22:07.814Z\",\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\": \"1983-12-23T02:11:05.578Z\",\n \"tmp_updated_at\": \"1952-06-07T20:06:54.876Z\"\n },\n \"profile_type_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"data_type\": \"text field\",\n \"type\": \"AttachmentAttribute\",\n \"validations_attributes\": {\n \"validation_method\": \"required\",\n \"value\": \"mm-dd-yyyy\",\n \"_destroy\": false\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -7720,7 +7720,7 @@ } }, { - "id": "68981691-dfa3-4e30-8930-b6e7f4e35866", + "id": "3ec174e3-7ed5-4947-bc30-4be51cc0dad2", "name": "Find attribute data by id", "request": { "name": "Find attribute data by id", @@ -7762,7 +7762,7 @@ }, "response": [ { - "id": "17ccae84-4a86-469b-bdf1-07161324b515", + "id": "9b56f8ad-65b7-422a-8867-3716310666eb", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -7801,12 +7801,12 @@ "value": "application/json" } ], - "body": "{\n \"ne_attribute\": {\n \"id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"uid\": \"Duis Excepteurdolore non quis fu\",\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-05-03T20:39:17.090Z\",\n \"created_at\": \"2005-03-30T03:15:42.140Z\",\n \"updated_at\": \"1990-09-18T10:34:18.374Z\",\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\": \"id magna ad animnisi id mollit m\",\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\": \"2004-06-08T00:28:58.629Z\",\n \"created_at\": \"1958-07-28T00:12:19.328Z\",\n \"updated_at\": \"1946-06-27T21:30:44.938Z\",\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\": \"1982-04-04T02:13:12.786Z\",\n \"tmp_updated_at\": \"1994-12-03T07:54:09.645Z\"\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\": \"ex culpa qui est animseddolor no\",\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\": \"1991-07-12T03:10:59.819Z\",\n \"created_at\": \"2010-08-18T01:51:31.068Z\",\n \"updated_at\": \"1978-10-08T12:44:29.790Z\",\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\": \"Lorem quisesse Excepteur cillum \",\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\": \"2004-09-16T21:38:18.631Z\",\n \"created_at\": \"2006-01-13T12:54:04.274Z\",\n \"updated_at\": \"1974-04-26T13:01:04.043Z\",\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\": \"1975-11-23T05:53:49.212Z\",\n \"tmp_updated_at\": \"1953-09-12T12:41:12.378Z\"\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": "9f71b268-b159-4356-9647-bed459a3f810", + "id": "c5d877e1-2a27-4a0c-8fac-e6bc8493cfb1", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -7850,7 +7850,7 @@ "_postman_previewlanguage": "json" }, { - "id": "49fd0a71-4d4d-47ac-87ed-03efc2193fee", + "id": "3ef8b817-a3ec-4093-b5fb-07bfca55f94b", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -7900,7 +7900,7 @@ } }, { - "id": "ea9aeedb-c54f-4e22-a79e-ecd18baf2aa2", + "id": "898946e5-7c6b-43ad-b529-dfd3c3f42878", "name": "Update attribute data by id", "request": { "name": "Update attribute data by id", @@ -7943,7 +7943,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"ne_attribute\": {\n \"id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"uid\": \"incididunt aliquip sunt aliqua p\",\n \"label\": \"birthday\",\n \"description\": \"Your birthday\",\n \"tool_tip\": \"Put your birthday here mm-dd-yyyy\",\n \"archived\": false,\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\": \"minim do eiusmod auteanim 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\": \"2010-09-15T07:08:27.303Z\",\n \"created_at\": \"2018-08-15T11:16:08.282Z\",\n \"updated_at\": \"1953-04-18T02:41:13.734Z\",\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\": \"1997-03-04T17:10:05.106Z\",\n \"tmp_updated_at\": \"1982-04-30T22:47:46.158Z\"\n },\n \"profile_type_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"data_type\": \"text field\",\n \"type\": \"AttachmentAttribute\",\n \"validations_attributes\": {\n \"validation_method\": \"required\",\n \"value\": \"mm-dd-yyyy\",\n \"_destroy\": false\n }\n }\n}", + "raw": "{\n \"ne_attribute\": {\n \"id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"uid\": \"fugiat aliquipculpa consequat ei\",\n \"label\": \"birthday\",\n \"description\": \"Your birthday\",\n \"tool_tip\": \"Put your birthday here mm-dd-yyyy\",\n \"archived\": false,\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\": \"sit nulla ullamcopariatur ea nos\",\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-10-29T00:28:27.791Z\",\n \"created_at\": \"1968-06-27T03:27:31.082Z\",\n \"updated_at\": \"2008-06-29T02:22:07.814Z\",\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\": \"1983-12-23T02:11:05.578Z\",\n \"tmp_updated_at\": \"1952-06-07T20:06:54.876Z\"\n },\n \"profile_type_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"data_type\": \"text field\",\n \"type\": \"AttachmentAttribute\",\n \"validations_attributes\": {\n \"validation_method\": \"required\",\n \"value\": \"mm-dd-yyyy\",\n \"_destroy\": false\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -7955,7 +7955,7 @@ }, "response": [ { - "id": "912e86b0-177e-4e40-acd8-1acc3bb81dd8", + "id": "429110bd-ccf4-4fae-8237-01d4f0ea0034", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -7990,7 +7990,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"ne_attribute\": {\n \"id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"uid\": \"incididunt aliquip sunt aliqua p\",\n \"label\": \"birthday\",\n \"description\": \"Your birthday\",\n \"tool_tip\": \"Put your birthday here mm-dd-yyyy\",\n \"archived\": false,\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\": \"minim do eiusmod auteanim 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\": \"2010-09-15T07:08:27.303Z\",\n \"created_at\": \"2018-08-15T11:16:08.282Z\",\n \"updated_at\": \"1953-04-18T02:41:13.734Z\",\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\": \"1997-03-04T17:10:05.106Z\",\n \"tmp_updated_at\": \"1982-04-30T22:47:46.158Z\"\n },\n \"profile_type_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"data_type\": \"text field\",\n \"type\": \"AttachmentAttribute\",\n \"validations_attributes\": {\n \"validation_method\": \"required\",\n \"value\": \"mm-dd-yyyy\",\n \"_destroy\": false\n }\n }\n}", + "raw": "{\n \"ne_attribute\": {\n \"id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"uid\": \"fugiat aliquipculpa consequat ei\",\n \"label\": \"birthday\",\n \"description\": \"Your birthday\",\n \"tool_tip\": \"Put your birthday here mm-dd-yyyy\",\n \"archived\": false,\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\": \"sit nulla ullamcopariatur ea nos\",\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-10-29T00:28:27.791Z\",\n \"created_at\": \"1968-06-27T03:27:31.082Z\",\n \"updated_at\": \"2008-06-29T02:22:07.814Z\",\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\": \"1983-12-23T02:11:05.578Z\",\n \"tmp_updated_at\": \"1952-06-07T20:06:54.876Z\"\n },\n \"profile_type_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"data_type\": \"text field\",\n \"type\": \"AttachmentAttribute\",\n \"validations_attributes\": {\n \"validation_method\": \"required\",\n \"value\": \"mm-dd-yyyy\",\n \"_destroy\": false\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -8007,12 +8007,12 @@ "value": "application/json" } ], - "body": "{\n \"ne_attribute\": {\n \"id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"uid\": \"Duis Excepteurdolore non quis fu\",\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-05-03T20:39:17.090Z\",\n \"created_at\": \"2005-03-30T03:15:42.140Z\",\n \"updated_at\": \"1990-09-18T10:34:18.374Z\",\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\": \"id magna ad animnisi id mollit m\",\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\": \"2004-06-08T00:28:58.629Z\",\n \"created_at\": \"1958-07-28T00:12:19.328Z\",\n \"updated_at\": \"1946-06-27T21:30:44.938Z\",\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\": \"1982-04-04T02:13:12.786Z\",\n \"tmp_updated_at\": \"1994-12-03T07:54:09.645Z\"\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\": \"ex culpa qui est animseddolor no\",\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\": \"1991-07-12T03:10:59.819Z\",\n \"created_at\": \"2010-08-18T01:51:31.068Z\",\n \"updated_at\": \"1978-10-08T12:44:29.790Z\",\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\": \"Lorem quisesse Excepteur cillum \",\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\": \"2004-09-16T21:38:18.631Z\",\n \"created_at\": \"2006-01-13T12:54:04.274Z\",\n \"updated_at\": \"1974-04-26T13:01:04.043Z\",\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\": \"1975-11-23T05:53:49.212Z\",\n \"tmp_updated_at\": \"1953-09-12T12:41:12.378Z\"\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": "549819df-0b11-4dbc-9d08-389ed1f553be", + "id": "bbc1a8b1-49f1-466d-a99c-9300f0b8c887", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -8047,7 +8047,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"ne_attribute\": {\n \"id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"uid\": \"incididunt aliquip sunt aliqua p\",\n \"label\": \"birthday\",\n \"description\": \"Your birthday\",\n \"tool_tip\": \"Put your birthday here mm-dd-yyyy\",\n \"archived\": false,\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\": \"minim do eiusmod auteanim 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\": \"2010-09-15T07:08:27.303Z\",\n \"created_at\": \"2018-08-15T11:16:08.282Z\",\n \"updated_at\": \"1953-04-18T02:41:13.734Z\",\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\": \"1997-03-04T17:10:05.106Z\",\n \"tmp_updated_at\": \"1982-04-30T22:47:46.158Z\"\n },\n \"profile_type_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"data_type\": \"text field\",\n \"type\": \"AttachmentAttribute\",\n \"validations_attributes\": {\n \"validation_method\": \"required\",\n \"value\": \"mm-dd-yyyy\",\n \"_destroy\": false\n }\n }\n}", + "raw": "{\n \"ne_attribute\": {\n \"id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"uid\": \"fugiat aliquipculpa consequat ei\",\n \"label\": \"birthday\",\n \"description\": \"Your birthday\",\n \"tool_tip\": \"Put your birthday here mm-dd-yyyy\",\n \"archived\": false,\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\": \"sit nulla ullamcopariatur ea nos\",\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-10-29T00:28:27.791Z\",\n \"created_at\": \"1968-06-27T03:27:31.082Z\",\n \"updated_at\": \"2008-06-29T02:22:07.814Z\",\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\": \"1983-12-23T02:11:05.578Z\",\n \"tmp_updated_at\": \"1952-06-07T20:06:54.876Z\"\n },\n \"profile_type_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"data_type\": \"text field\",\n \"type\": \"AttachmentAttribute\",\n \"validations_attributes\": {\n \"validation_method\": \"required\",\n \"value\": \"mm-dd-yyyy\",\n \"_destroy\": false\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -8069,7 +8069,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9313b385-148f-40dc-998e-bf7054c1bb7c", + "id": "e00430ae-35b4-4871-bce7-6b21ce7525e8", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -8104,7 +8104,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"ne_attribute\": {\n \"id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"uid\": \"incididunt aliquip sunt aliqua p\",\n \"label\": \"birthday\",\n \"description\": \"Your birthday\",\n \"tool_tip\": \"Put your birthday here mm-dd-yyyy\",\n \"archived\": false,\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\": \"minim do eiusmod auteanim 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\": \"2010-09-15T07:08:27.303Z\",\n \"created_at\": \"2018-08-15T11:16:08.282Z\",\n \"updated_at\": \"1953-04-18T02:41:13.734Z\",\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\": \"1997-03-04T17:10:05.106Z\",\n \"tmp_updated_at\": \"1982-04-30T22:47:46.158Z\"\n },\n \"profile_type_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"data_type\": \"text field\",\n \"type\": \"AttachmentAttribute\",\n \"validations_attributes\": {\n \"validation_method\": \"required\",\n \"value\": \"mm-dd-yyyy\",\n \"_destroy\": false\n }\n }\n}", + "raw": "{\n \"ne_attribute\": {\n \"id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"uid\": \"fugiat aliquipculpa consequat ei\",\n \"label\": \"birthday\",\n \"description\": \"Your birthday\",\n \"tool_tip\": \"Put your birthday here mm-dd-yyyy\",\n \"archived\": false,\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\": \"sit nulla ullamcopariatur ea nos\",\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-10-29T00:28:27.791Z\",\n \"created_at\": \"1968-06-27T03:27:31.082Z\",\n \"updated_at\": \"2008-06-29T02:22:07.814Z\",\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\": \"1983-12-23T02:11:05.578Z\",\n \"tmp_updated_at\": \"1952-06-07T20:06:54.876Z\"\n },\n \"profile_type_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"data_type\": \"text field\",\n \"type\": \"AttachmentAttribute\",\n \"validations_attributes\": {\n \"validation_method\": \"required\",\n \"value\": \"mm-dd-yyyy\",\n \"_destroy\": false\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -8138,7 +8138,7 @@ "description": "", "item": [ { - "id": "d7c451c5-fb18-42ea-8dc9-7e78874af30c", + "id": "880dec23-da08-459c-9e5a-3e3c2c02a939", "name": "Add a value to an option based attribute", "request": { "name": "Add a value to an option based attribute", @@ -8169,7 +8169,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"ne_attribute_option\": {\n \"ne_attribute_id\": \"cc979ac4-6a4b-e036-e2c9-49f3ad31fdad\",\n \"option\": \"in\"\n }\n}", + "raw": "{\n \"ne_attribute_option\": {\n \"ne_attribute_id\": \"urn:uuid:dd832e52-11b0-9299-e735-0fce4302a161\",\n \"option\": \"est in\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -8181,7 +8181,7 @@ }, "response": [ { - "id": "80fc298b-d34c-43cc-98b2-630e8a27db79", + "id": "cd655799-00fb-41d4-b098-9cef3cb0450f", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -8215,7 +8215,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"ne_attribute_option\": {\n \"ne_attribute_id\": \"cc979ac4-6a4b-e036-e2c9-49f3ad31fdad\",\n \"option\": \"in\"\n }\n}", + "raw": "{\n \"ne_attribute_option\": {\n \"ne_attribute_id\": \"urn:uuid:dd832e52-11b0-9299-e735-0fce4302a161\",\n \"option\": \"est in\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -8232,12 +8232,12 @@ "value": "application/json" } ], - "body": "{\n \"ne_attribute_option\": {\n \"id\": \"urn:uuid:abe7ee3c-cdd9-33df-b3cf-1b96bc6976d4\",\n \"uid\": \"amet nisi proident dolorepariatu\",\n \"ne_attribute_id\": \"0aa0af0e-d13e-25d0-8cad-e3dbee3584a8\",\n \"option\": \"nisi in tempor incididunt\"\n }\n}", + "body": "{\n \"ne_attribute_option\": {\n \"id\": \"urn:uuid:e564d0e8-3a44-e6a4-8300-430fbb1ba1aa\",\n \"uid\": \"non dolorad irure qui officiatem\",\n \"ne_attribute_id\": \"urn:uuid:56dc3ea4-c25f-80af-0005-0831dbc9dcdd\",\n \"option\": \"est adipisicing enim in\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "5987df0a-0cd2-4a37-ba04-019a2d89250a", + "id": "e18f8f46-cee5-4209-8855-e2bc4ccb5f47", "name": "Invalid input", "originalRequest": { "url": { @@ -8267,7 +8267,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"ne_attribute_option\": {\n \"ne_attribute_id\": \"cc979ac4-6a4b-e036-e2c9-49f3ad31fdad\",\n \"option\": \"in\"\n }\n}", + "raw": "{\n \"ne_attribute_option\": {\n \"ne_attribute_id\": \"urn:uuid:dd832e52-11b0-9299-e735-0fce4302a161\",\n \"option\": \"est in\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -8289,7 +8289,7 @@ } }, { - "id": "2422e11f-9d16-4ec7-b45c-92925696ec5c", + "id": "93751a95-24e3-4490-b180-8ad0d174a64f", "name": "Get option based attribute values", "request": { "name": "Get option based attribute values", @@ -8365,7 +8365,7 @@ }, "response": [ { - "id": "c75dbcb5-2eba-43f4-a2c4-f3e5195b9b3c", + "id": "1ff61048-3205-41a2-be6a-98edaf22bb4f", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -8449,12 +8449,12 @@ "value": "application/json" } ], - "body": "{\n \"ne_attribute_options\": [\n {\n \"id\": \"f1df161d-eb47-4c30-c676-0a7e5a88c586\",\n \"uid\": \"Duis doloreLorem aute aliquiplab\",\n \"ne_attribute_id\": \"urn:uuid:e862cce0-750e-8826-84cd-57954f8e53dc\",\n \"option\": \"consequat mollit ea labore\"\n },\n {\n \"id\": \"urn:uuid:e15cb833-4b02-1611-183a-beef25cf18ae\",\n \"uid\": \"Ut nisi est in laboreenim laboru\",\n \"ne_attribute_id\": \"urn:uuid:b384a599-abd6-4e8a-04d7-9c0807ee5c97\",\n \"option\": \"veniam in\"\n }\n ],\n \"_metadata\": {\n \"limit\": -2549722,\n \"offset\": -29649014,\n \"total\": -54120920,\n \"next\": \"/endpoint?limit=10&offset=60\",\n \"previous\": \"/endpoint?limit=10&offset=40\"\n }\n}", + "body": "{\n \"ne_attribute_options\": [\n {\n \"id\": \"f830faa1-2346-a6e4-97db-f650d72fd062\",\n \"uid\": \"sed tempor non minimminim et dol\",\n \"ne_attribute_id\": \"urn:uuid:0b330b28-2743-27df-43fd-100dc387e07b\",\n \"option\": \"commodo in ut velit\"\n },\n {\n \"id\": \"ecdf561c-b291-3878-e63f-656d09852f72\",\n \"uid\": \"sunt labore amet autedolor doocc\",\n \"ne_attribute_id\": \"92d6955c-4e4b-28d1-80c5-f9eddd84e8fa\",\n \"option\": \"aliquip ex dolore exercitation in\"\n }\n ],\n \"_metadata\": {\n \"limit\": 16290821,\n \"offset\": 12799369,\n \"total\": -68224125,\n \"next\": \"/endpoint?limit=10&offset=60\",\n \"previous\": \"/endpoint?limit=10&offset=40\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "76ca4381-40ea-42cf-9e66-00166988e961", + "id": "15699fde-2044-49bd-9369-8e2f3d2db8d4", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -8543,7 +8543,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3d0a51fa-c199-4f67-9b63-f80fd2ab81f9", + "id": "8396ea30-8439-4153-b2a6-76efb3faa384", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -8638,7 +8638,7 @@ } }, { - "id": "bcdfeed8-c10d-4f7d-9a2d-c39287d23aa1", + "id": "4aa00421-d6c3-45fe-a33a-6abe68952f6c", "name": "Create multiple new option based attribute values", "request": { "name": "Create multiple new option based attribute values", @@ -8669,7 +8669,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"ne_attribute_options\": [\n {\n \"ne_attribute_id\": \"45e06d16-e6c8-be81-9cc3-52519d90dd18\",\n \"option\": \"non fugiat\"\n },\n {\n \"ne_attribute_id\": \"edc4236d-7524-045a-5f99-7cbc19b8614d\",\n \"option\": \"eiusmod quis in qui\"\n }\n ]\n}", + "raw": "{\n \"ne_attribute_options\": [\n {\n \"ne_attribute_id\": \"52e6d4db-2766-733d-980a-c20f58447127\",\n \"option\": \"cupidatat commodo culpa\"\n },\n {\n \"ne_attribute_id\": \"6faa82f8-91dd-5710-72a3-b58246b24b7d\",\n \"option\": \"labore nulla\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -8681,7 +8681,7 @@ }, "response": [ { - "id": "0f75354e-6dad-46f6-bd59-9a8b289d9ee8", + "id": "b2afdf8f-d61f-422f-bde0-8b5a5a0ccf04", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -8715,7 +8715,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"ne_attribute_options\": [\n {\n \"ne_attribute_id\": \"45e06d16-e6c8-be81-9cc3-52519d90dd18\",\n \"option\": \"non fugiat\"\n },\n {\n \"ne_attribute_id\": \"edc4236d-7524-045a-5f99-7cbc19b8614d\",\n \"option\": \"eiusmod quis in qui\"\n }\n ]\n}", + "raw": "{\n \"ne_attribute_options\": [\n {\n \"ne_attribute_id\": \"52e6d4db-2766-733d-980a-c20f58447127\",\n \"option\": \"cupidatat commodo culpa\"\n },\n {\n \"ne_attribute_id\": \"6faa82f8-91dd-5710-72a3-b58246b24b7d\",\n \"option\": \"labore nulla\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -8732,12 +8732,12 @@ "value": "application/json" } ], - "body": "{\n \"ne_attribute_options\": [\n {\n \"id\": \"urn:uuid:8979788b-03dd-6ca0-d75d-994df52f0614\",\n \"uid\": \"id veniamenim ullamco sed deseru\",\n \"ne_attribute_id\": \"urn:uuid:2c6226b5-45fa-d8b0-5971-3c7c01332e54\",\n \"option\": \"eiusmod sint esse\"\n },\n {\n \"id\": \"urn:uuid:fe357dbc-7a97-d7d3-a277-b739ca905cbd\",\n \"uid\": \"sed enim incididunt fugiat estmo\",\n \"ne_attribute_id\": \"41d5e790-af2c-9d74-18ab-ae37a7451c6a\",\n \"option\": \"adipisic\"\n }\n ]\n}", + "body": "{\n \"ne_attribute_options\": [\n {\n \"id\": \"urn:uuid:a7f2bf8d-1e61-8edd-748d-1e5e53d98a50\",\n \"uid\": \"pariatur laborumincididunt labor\",\n \"ne_attribute_id\": \"urn:uuid:39253681-8afa-c12c-cbc9-3ae16ad48fab\",\n \"option\": \"voluptate reprehenderit et\"\n },\n {\n \"id\": \"16b811e1-6d61-b1d9-a8b1-fdd1936c811e\",\n \"uid\": \"est Ut exercitation adipisicing \",\n \"ne_attribute_id\": \"20ab12cf-1aef-46a5-11e8-b095f9411bec\",\n \"option\": \"dolore aliquip ut anim esse\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f5c4477c-cf04-4807-907e-5c0d8ba3b7e5", + "id": "081cea7f-7d0f-4266-90aa-76b0e1c3819f", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -8771,7 +8771,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"ne_attribute_options\": [\n {\n \"ne_attribute_id\": \"45e06d16-e6c8-be81-9cc3-52519d90dd18\",\n \"option\": \"non fugiat\"\n },\n {\n \"ne_attribute_id\": \"edc4236d-7524-045a-5f99-7cbc19b8614d\",\n \"option\": \"eiusmod quis in qui\"\n }\n ]\n}", + "raw": "{\n \"ne_attribute_options\": [\n {\n \"ne_attribute_id\": \"52e6d4db-2766-733d-980a-c20f58447127\",\n \"option\": \"cupidatat commodo culpa\"\n },\n {\n \"ne_attribute_id\": \"6faa82f8-91dd-5710-72a3-b58246b24b7d\",\n \"option\": \"labore nulla\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -8793,7 +8793,7 @@ "_postman_previewlanguage": "json" }, { - "id": "27b5b1ff-bbf7-4adf-847b-cf736aa2fee6", + "id": "2731de27-51c2-4bf6-a791-07bafd2d0024", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -8827,7 +8827,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"ne_attribute_options\": [\n {\n \"ne_attribute_id\": \"45e06d16-e6c8-be81-9cc3-52519d90dd18\",\n \"option\": \"non fugiat\"\n },\n {\n \"ne_attribute_id\": \"edc4236d-7524-045a-5f99-7cbc19b8614d\",\n \"option\": \"eiusmod quis in qui\"\n }\n ]\n}", + "raw": "{\n \"ne_attribute_options\": [\n {\n \"ne_attribute_id\": \"52e6d4db-2766-733d-980a-c20f58447127\",\n \"option\": \"cupidatat commodo culpa\"\n },\n {\n \"ne_attribute_id\": \"6faa82f8-91dd-5710-72a3-b58246b24b7d\",\n \"option\": \"labore nulla\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -8855,7 +8855,7 @@ } }, { - "id": "1ee2feaf-c9a4-47ce-b239-6a0d57132dee", + "id": "e4743521-b1a2-49c8-b7b8-ac443bcfef39", "name": "Update multiple option based attribute values", "request": { "name": "Update multiple option based attribute values", @@ -8886,7 +8886,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"ne_attribute_options\": [\n {\n \"id\": \"urn:uuid:3f651331-4f1c-59c6-dedf-0a474c9dfc68\",\n \"ne_attribute_id\": \"urn:uuid:10e13751-7d5d-3b39-6061-5c7be57f55cc\",\n \"option\": \"Duis\"\n },\n {\n \"id\": \"urn:uuid:b5505c6e-b072-54a1-b0eb-345b1472e7e5\",\n \"ne_attribute_id\": \"72ea638b-1a7e-9dd4-d355-84b0ef4de7b8\",\n \"option\": \"deserunt mollit eu anim\"\n }\n ]\n}", + "raw": "{\n \"ne_attribute_options\": [\n {\n \"id\": \"urn:uuid:51ae88d5-af41-2acc-6c63-a86aa6a46d60\",\n \"ne_attribute_id\": \"urn:uuid:9b32e1a0-7c2e-e3ad-fdff-a1e78ab2898a\",\n \"option\": \"est exercitation\"\n },\n {\n \"id\": \"urn:uuid:0068666c-fb26-cbd4-2643-f4c10e39d70e\",\n \"ne_attribute_id\": \"urn:uuid:7502cd50-ecdb-8d94-96cc-cbd9ae0d1d43\",\n \"option\": \"enim et pariatur nulla est\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -8898,7 +8898,7 @@ }, "response": [ { - "id": "d7c6b6b2-ab00-45b0-922c-f739f7f0f0de", + "id": "6453c41e-4f7e-449f-bf1b-300491e26d42", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -8932,7 +8932,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"ne_attribute_options\": [\n {\n \"id\": \"urn:uuid:3f651331-4f1c-59c6-dedf-0a474c9dfc68\",\n \"ne_attribute_id\": \"urn:uuid:10e13751-7d5d-3b39-6061-5c7be57f55cc\",\n \"option\": \"Duis\"\n },\n {\n \"id\": \"urn:uuid:b5505c6e-b072-54a1-b0eb-345b1472e7e5\",\n \"ne_attribute_id\": \"72ea638b-1a7e-9dd4-d355-84b0ef4de7b8\",\n \"option\": \"deserunt mollit eu anim\"\n }\n ]\n}", + "raw": "{\n \"ne_attribute_options\": [\n {\n \"id\": \"urn:uuid:51ae88d5-af41-2acc-6c63-a86aa6a46d60\",\n \"ne_attribute_id\": \"urn:uuid:9b32e1a0-7c2e-e3ad-fdff-a1e78ab2898a\",\n \"option\": \"est exercitation\"\n },\n {\n \"id\": \"urn:uuid:0068666c-fb26-cbd4-2643-f4c10e39d70e\",\n \"ne_attribute_id\": \"urn:uuid:7502cd50-ecdb-8d94-96cc-cbd9ae0d1d43\",\n \"option\": \"enim et pariatur nulla est\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -8949,12 +8949,12 @@ "value": "application/json" } ], - "body": "{\n \"ne_attribute_options\": [\n {\n \"id\": \"urn:uuid:8979788b-03dd-6ca0-d75d-994df52f0614\",\n \"uid\": \"id veniamenim ullamco sed deseru\",\n \"ne_attribute_id\": \"urn:uuid:2c6226b5-45fa-d8b0-5971-3c7c01332e54\",\n \"option\": \"eiusmod sint esse\"\n },\n {\n \"id\": \"urn:uuid:fe357dbc-7a97-d7d3-a277-b739ca905cbd\",\n \"uid\": \"sed enim incididunt fugiat estmo\",\n \"ne_attribute_id\": \"41d5e790-af2c-9d74-18ab-ae37a7451c6a\",\n \"option\": \"adipisic\"\n }\n ]\n}", + "body": "{\n \"ne_attribute_options\": [\n {\n \"id\": \"urn:uuid:a7f2bf8d-1e61-8edd-748d-1e5e53d98a50\",\n \"uid\": \"pariatur laborumincididunt labor\",\n \"ne_attribute_id\": \"urn:uuid:39253681-8afa-c12c-cbc9-3ae16ad48fab\",\n \"option\": \"voluptate reprehenderit et\"\n },\n {\n \"id\": \"16b811e1-6d61-b1d9-a8b1-fdd1936c811e\",\n \"uid\": \"est Ut exercitation adipisicing \",\n \"ne_attribute_id\": \"20ab12cf-1aef-46a5-11e8-b095f9411bec\",\n \"option\": \"dolore aliquip ut anim esse\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a8c60304-aa06-4e15-9cda-bc332e4547b7", + "id": "02ffe0f0-07eb-4431-a9ff-c4a78bf1c889", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -8988,7 +8988,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"ne_attribute_options\": [\n {\n \"id\": \"urn:uuid:3f651331-4f1c-59c6-dedf-0a474c9dfc68\",\n \"ne_attribute_id\": \"urn:uuid:10e13751-7d5d-3b39-6061-5c7be57f55cc\",\n \"option\": \"Duis\"\n },\n {\n \"id\": \"urn:uuid:b5505c6e-b072-54a1-b0eb-345b1472e7e5\",\n \"ne_attribute_id\": \"72ea638b-1a7e-9dd4-d355-84b0ef4de7b8\",\n \"option\": \"deserunt mollit eu anim\"\n }\n ]\n}", + "raw": "{\n \"ne_attribute_options\": [\n {\n \"id\": \"urn:uuid:51ae88d5-af41-2acc-6c63-a86aa6a46d60\",\n \"ne_attribute_id\": \"urn:uuid:9b32e1a0-7c2e-e3ad-fdff-a1e78ab2898a\",\n \"option\": \"est exercitation\"\n },\n {\n \"id\": \"urn:uuid:0068666c-fb26-cbd4-2643-f4c10e39d70e\",\n \"ne_attribute_id\": \"urn:uuid:7502cd50-ecdb-8d94-96cc-cbd9ae0d1d43\",\n \"option\": \"enim et pariatur nulla est\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -9010,7 +9010,7 @@ "_postman_previewlanguage": "json" }, { - "id": "73b34991-8f18-438c-9dcf-39e6088bafd3", + "id": "a5663a51-1fec-41f2-a396-ba527f9c5de9", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -9044,7 +9044,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"ne_attribute_options\": [\n {\n \"id\": \"urn:uuid:3f651331-4f1c-59c6-dedf-0a474c9dfc68\",\n \"ne_attribute_id\": \"urn:uuid:10e13751-7d5d-3b39-6061-5c7be57f55cc\",\n \"option\": \"Duis\"\n },\n {\n \"id\": \"urn:uuid:b5505c6e-b072-54a1-b0eb-345b1472e7e5\",\n \"ne_attribute_id\": \"72ea638b-1a7e-9dd4-d355-84b0ef4de7b8\",\n \"option\": \"deserunt mollit eu anim\"\n }\n ]\n}", + "raw": "{\n \"ne_attribute_options\": [\n {\n \"id\": \"urn:uuid:51ae88d5-af41-2acc-6c63-a86aa6a46d60\",\n \"ne_attribute_id\": \"urn:uuid:9b32e1a0-7c2e-e3ad-fdff-a1e78ab2898a\",\n \"option\": \"est exercitation\"\n },\n {\n \"id\": \"urn:uuid:0068666c-fb26-cbd4-2643-f4c10e39d70e\",\n \"ne_attribute_id\": \"urn:uuid:7502cd50-ecdb-8d94-96cc-cbd9ae0d1d43\",\n \"option\": \"enim et pariatur nulla est\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -9072,7 +9072,7 @@ } }, { - "id": "27ee3716-d1b4-4e6f-9e3e-989bfe2f464a", + "id": "d19b52a4-b8a8-4827-97a5-f303eac769ab", "name": "Find option based attribute value by id", "request": { "name": "Find option based attribute value by id", @@ -9114,7 +9114,7 @@ }, "response": [ { - "id": "6064964e-72a4-4128-9775-fcb2bb01fb5f", + "id": "b748b6fd-cc7f-4270-b812-3bbaef49bab8", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -9153,12 +9153,12 @@ "value": "application/json" } ], - "body": "{\n \"ne_attribute_option\": {\n \"id\": \"urn:uuid:abe7ee3c-cdd9-33df-b3cf-1b96bc6976d4\",\n \"uid\": \"amet nisi proident dolorepariatu\",\n \"ne_attribute_id\": \"0aa0af0e-d13e-25d0-8cad-e3dbee3584a8\",\n \"option\": \"nisi in tempor incididunt\"\n }\n}", + "body": "{\n \"ne_attribute_option\": {\n \"id\": \"urn:uuid:e564d0e8-3a44-e6a4-8300-430fbb1ba1aa\",\n \"uid\": \"non dolorad irure qui officiatem\",\n \"ne_attribute_id\": \"urn:uuid:56dc3ea4-c25f-80af-0005-0831dbc9dcdd\",\n \"option\": \"est adipisicing enim in\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ffbb9d4e-0863-4cc8-b014-668e0215a26d", + "id": "dcde5b6a-1ead-4228-9a84-1f6f8c82341d", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -9202,7 +9202,7 @@ "_postman_previewlanguage": "json" }, { - "id": "30331657-0b60-40bd-8c30-1581f4ef8eef", + "id": "473703eb-97bd-4d1c-9714-0dee150f0918", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -9252,7 +9252,7 @@ } }, { - "id": "69537fe0-e93b-48fc-bc5f-0403888a3984", + "id": "ca27c252-a18f-4652-b225-16743744be0e", "name": "Update a option based attribute value by id", "request": { "name": "Update a option based attribute value by id", @@ -9295,7 +9295,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"ne_attribute_option\": {\n \"ne_attribute_id\": \"cc979ac4-6a4b-e036-e2c9-49f3ad31fdad\",\n \"option\": \"in\"\n }\n}", + "raw": "{\n \"ne_attribute_option\": {\n \"ne_attribute_id\": \"urn:uuid:dd832e52-11b0-9299-e735-0fce4302a161\",\n \"option\": \"est in\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -9307,7 +9307,7 @@ }, "response": [ { - "id": "14ec62d7-25a4-4395-b0f5-c9686a392ad9", + "id": "19327e06-7054-4a6a-a25b-fc0314cf7e54", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -9342,7 +9342,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"ne_attribute_option\": {\n \"ne_attribute_id\": \"cc979ac4-6a4b-e036-e2c9-49f3ad31fdad\",\n \"option\": \"in\"\n }\n}", + "raw": "{\n \"ne_attribute_option\": {\n \"ne_attribute_id\": \"urn:uuid:dd832e52-11b0-9299-e735-0fce4302a161\",\n \"option\": \"est in\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -9359,12 +9359,12 @@ "value": "application/json" } ], - "body": "{\n \"ne_attribute_option\": {\n \"id\": \"urn:uuid:abe7ee3c-cdd9-33df-b3cf-1b96bc6976d4\",\n \"uid\": \"amet nisi proident dolorepariatu\",\n \"ne_attribute_id\": \"0aa0af0e-d13e-25d0-8cad-e3dbee3584a8\",\n \"option\": \"nisi in tempor incididunt\"\n }\n}", + "body": "{\n \"ne_attribute_option\": {\n \"id\": \"urn:uuid:e564d0e8-3a44-e6a4-8300-430fbb1ba1aa\",\n \"uid\": \"non dolorad irure qui officiatem\",\n \"ne_attribute_id\": \"urn:uuid:56dc3ea4-c25f-80af-0005-0831dbc9dcdd\",\n \"option\": \"est adipisicing enim in\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f34af08c-a462-4bfe-9dfc-4525328ceb77", + "id": "79bb1502-dd06-4cc1-9d25-856f9e8bc40e", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -9399,7 +9399,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"ne_attribute_option\": {\n \"ne_attribute_id\": \"cc979ac4-6a4b-e036-e2c9-49f3ad31fdad\",\n \"option\": \"in\"\n }\n}", + "raw": "{\n \"ne_attribute_option\": {\n \"ne_attribute_id\": \"urn:uuid:dd832e52-11b0-9299-e735-0fce4302a161\",\n \"option\": \"est in\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -9421,7 +9421,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e6830f51-feca-40cd-aa90-620642107006", + "id": "ede935e6-1c28-403e-99cb-31b0db48d6bd", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -9456,7 +9456,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"ne_attribute_option\": {\n \"ne_attribute_id\": \"cc979ac4-6a4b-e036-e2c9-49f3ad31fdad\",\n \"option\": \"in\"\n }\n}", + "raw": "{\n \"ne_attribute_option\": {\n \"ne_attribute_id\": \"urn:uuid:dd832e52-11b0-9299-e735-0fce4302a161\",\n \"option\": \"est in\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -9484,7 +9484,7 @@ } }, { - "id": "adc5146a-b807-4b77-beb1-2d2c99051b00", + "id": "3d57e31d-c668-4d4d-8158-81216877540b", "name": "Delete a option based attribute value by id", "request": { "name": "Delete a option based attribute value by id", @@ -9526,7 +9526,7 @@ }, "response": [ { - "id": "f16c2676-8518-46f9-bd96-2d35030f58b7", + "id": "cef36f51-e063-4c1f-a6c8-fc9e109c9620", "name": "Confirmation of a deleted object", "originalRequest": { "url": { @@ -9570,7 +9570,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5d679672-ead2-4376-b0e0-7c77542c3d58", + "id": "659e51be-aad3-4e8e-bb79-c7d53171151e", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -9614,7 +9614,7 @@ "_postman_previewlanguage": "json" }, { - "id": "67449e1b-5d10-4a22-9606-41b9b4e61148", + "id": "62c4f878-24d5-4fa4-a46b-bfbd15f5efa8", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -9670,7 +9670,7 @@ "description": "", "item": [ { - "id": "5cb91e36-124a-4cdc-9bc7-2357f661fba2", + "id": "195aa3ab-4380-4570-8200-41bd1676100d", "name": "Create a profile page", "request": { "name": "Create a profile page", @@ -9714,7 +9714,7 @@ }, "response": [ { - "id": "ef9b7f2e-2f6a-40fc-8f11-5b97e5db2ba4", + "id": "b6a34f15-a610-423c-9e1b-a2f4632fee2e", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -9771,7 +9771,7 @@ "_postman_previewlanguage": "json" }, { - "id": "af570444-050e-4a48-bb3f-93b531ff8de0", + "id": "21bedce9-854f-4c6d-8b14-86014a377159", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -9828,7 +9828,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7cd76146-44ed-4e0c-ae01-a63356b75384", + "id": "2a9b5627-90ae-42b6-bc80-cb49dd6154e1", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -9891,7 +9891,7 @@ } }, { - "id": "f6fede6f-97d0-4534-b30e-9debcba4ab6f", + "id": "d9043708-74aa-4c51-85a7-a87a1961f07a", "name": "Create a workflow page", "request": { "name": "Create a workflow page", @@ -9935,7 +9935,7 @@ }, "response": [ { - "id": "d459ea8a-7a59-4075-b203-c9d035d30eb9", + "id": "0dce4f0d-27bf-418a-9717-d94e683013dc", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -9992,7 +9992,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2fda4abe-aa32-434a-8b09-6732b8abd124", + "id": "1611c6f2-67a9-4e70-837f-6d5771643e54", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -10049,7 +10049,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cc9ccf28-b8ef-48ca-93f8-02ec5b46a019", + "id": "27ed62bf-8468-4531-b7b2-d358b0352494", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -10118,7 +10118,7 @@ "description": "", "item": [ { - "id": "349d77f6-1a25-4182-bf2d-2dedee89b629", + "id": "3b6c9bbc-849b-4249-b439-81a30083e13b", "name": "Create a profile type", "request": { "name": "Create a profile type", @@ -10161,7 +10161,7 @@ }, "response": [ { - "id": "da8d767f-3218-4077-a056-a9dac458be89", + "id": "fd4bfc2b-c0c3-4614-8c76-fc99bf790c98", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -10212,12 +10212,12 @@ "value": "application/json" } ], - "body": "{\n \"profile_type\": {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"incididunt sit reprehenderit ut \",\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\": \"mollit tempor ad dolormollitipsu\",\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\": \"magna elitipsum occaecat etincid\",\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\": \"nulla sint in inaute ut consequa\",\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\": \"fugiat quis labore officiain Lor\",\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\": \"magnamollit ullamco dolore insin\",\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\": \"pariatur dolor consectetur Lorem\",\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\": \"Ut cillum reprehenderit Loremad \",\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\": \"dolore amet Utnon in exercitatio\",\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\": \"id commodo esse sintquis mollit \",\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": "b253bf50-e6fa-46d2-b6c8-924680a0b387", + "id": "546a37d7-d7da-4953-9c7e-540a19473506", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -10273,7 +10273,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e5d7c5df-07f4-4205-9bda-2d688c14b865", + "id": "bda0252d-27c7-45e5-823c-f7638d42a9c0", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -10335,7 +10335,7 @@ } }, { - "id": "573c6bf7-8fb5-4318-9189-d923326452be", + "id": "73a9cdc5-40d2-4c5f-a90a-e16c4faa7c42", "name": "Get profile types", "request": { "name": "Get profile types", @@ -10385,7 +10385,7 @@ "type": "text/plain" }, "key": "name", - "value": "esse in in tempor" + "value": "ullamco reprehenderit exercitation velit " }, { "disabled": false, @@ -10420,7 +10420,7 @@ }, "response": [ { - "id": "252f2127-5bb1-44f0-94cb-c95e6adf0bf4", + "id": "ecd742b7-d67c-4f5d-ada6-103d39344b4a", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -10465,7 +10465,7 @@ "type": "text/plain" }, "key": "name", - "value": "esse in in tempor" + "value": "ullamco reprehenderit exercitation velit " }, { "disabled": false, @@ -10513,12 +10513,12 @@ "value": "application/json" } ], - "body": "{\n \"profile_types\": [\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"ad sintamet Duisdolor utvoluptat\",\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\": \"eiusmod in aliqua adipisicingull\",\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\": \"nostrud elitDuis eain fugiat aut\",\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\": \"proident voluptate cupidatat aut\",\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\": \"mollit Lorem aliquip deserunt do\",\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\": \"ipsum nisi estaliquip sed mollit\",\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\": \"labore fugiat auteesse sit nostr\",\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\": \"autenon dolor culpadolor laborum\",\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\": \"laboris ut ex quisnonconsectetur\",\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\": \"ea dolor Lorem quisreprehenderit\",\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\": -24509459,\n \"offset\": 84458693,\n \"total\": -29601070,\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\": \"amet sunt consecteturullamco ad \",\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 auteaute qui in ea uttempor i\",\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\": \"pariatur fugiat aliquavoluptate \",\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\": \"ipsum ea incididuntlaboris et ut\",\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\": \"non idin irure officiadolor fugi\",\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\": \"ut aute commodo dolorefugiat Lor\",\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\": \"suntirureincididunt nullaetLorem\",\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 dolore nulla Utametvelit\",\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\": \"in ipsum in officiaDuis indeseru\",\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\": \"sint Utincididunt doloraliquip l\",\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\": 91669915,\n \"offset\": 86448624,\n \"total\": -74792137,\n \"next\": \"/endpoint?limit=10&offset=60\",\n \"previous\": \"/endpoint?limit=10&offset=40\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "fd372eae-d1e1-4abb-aafb-07b07dc7ba87", + "id": "b3d8def2-40a5-4866-a01e-131f7a78bbcd", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -10563,7 +10563,7 @@ "type": "text/plain" }, "key": "name", - "value": "esse in in tempor" + "value": "ullamco reprehenderit exercitation velit " }, { "disabled": false, @@ -10616,7 +10616,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4951d460-979f-4478-b397-022b0fe346cd", + "id": "dc901282-6fee-4577-b13d-51ff83770a28", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -10661,7 +10661,7 @@ "type": "text/plain" }, "key": "name", - "value": "esse in in tempor" + "value": "ullamco reprehenderit exercitation velit " }, { "disabled": false, @@ -10720,7 +10720,7 @@ } }, { - "id": "221d2ad4-75fd-48f0-a0af-b055b9fcc646", + "id": "43414f10-f110-44c3-9aba-bd52cc3cafaa", "name": "Find profile type by id", "request": { "name": "Find profile type by id", @@ -10762,7 +10762,7 @@ }, "response": [ { - "id": "761c4581-6eff-45a9-8dce-8159ec9edea9", + "id": "3964081b-97b0-4e73-8152-1016416d6051", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -10801,12 +10801,12 @@ "value": "application/json" } ], - "body": "{\n \"profile_type\": {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"incididunt sit reprehenderit ut \",\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\": \"mollit tempor ad dolormollitipsu\",\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\": \"magna elitipsum occaecat etincid\",\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\": \"nulla sint in inaute ut consequa\",\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\": \"fugiat quis labore officiain Lor\",\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\": \"magnamollit ullamco dolore insin\",\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\": \"pariatur dolor consectetur Lorem\",\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\": \"Ut cillum reprehenderit Loremad \",\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\": \"dolore amet Utnon in exercitatio\",\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\": \"id commodo esse sintquis mollit \",\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": "eebdea13-3bda-4cc0-a649-bd9e93940915", + "id": "c919c90d-7e7b-4799-bd8e-d512a569abdf", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -10850,7 +10850,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cfad3dd5-57b4-424d-b773-b3b39ec775d7", + "id": "ad35d2e6-bedb-4ead-a4ce-5c8c4703606b", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -10900,7 +10900,7 @@ } }, { - "id": "28140e97-b87e-4f5c-8388-684c5eee79e8", + "id": "c8b5763c-a7a2-44c1-9408-be0c4577cee8", "name": "Update a profile type by id", "request": { "name": "Update a profile type by id", @@ -10955,7 +10955,7 @@ }, "response": [ { - "id": "fc461c05-6583-45ad-9c7b-a8e58c3f11ea", + "id": "f068a630-fb7d-445c-b68b-441b6532f67b", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -11007,12 +11007,12 @@ "value": "application/json" } ], - "body": "{\n \"profile_type\": {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"incididunt sit reprehenderit ut \",\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\": \"mollit tempor ad dolormollitipsu\",\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\": \"magna elitipsum occaecat etincid\",\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\": \"nulla sint in inaute ut consequa\",\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\": \"fugiat quis labore officiain Lor\",\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\": \"magnamollit ullamco dolore insin\",\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\": \"pariatur dolor consectetur Lorem\",\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\": \"Ut cillum reprehenderit Loremad \",\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\": \"dolore amet Utnon in exercitatio\",\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\": \"id commodo esse sintquis mollit \",\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": "fac68a67-8cc1-4a10-804a-619383a4150c", + "id": "dbb1bfa9-e795-4d43-b51f-4bb58c27c430", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -11069,7 +11069,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bcb30d26-53c8-4ce7-8ee7-a95526d0917c", + "id": "1aa80aa7-10c8-4efa-9510-78bda0222ccd", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -11132,7 +11132,7 @@ } }, { - "id": "d799f5fa-b67b-47d6-9e3d-db01a77a7911", + "id": "6f1a2aef-d32f-48e2-8630-5fa074899948", "name": "Delete profile type", "request": { "name": "Delete profile type", @@ -11174,7 +11174,7 @@ }, "response": [ { - "id": "fcb0421d-9689-48ca-88f7-eb2b8fa7e2c9", + "id": "45264e90-8634-4dc5-a2f2-cd94d8196652", "name": "Info about the operation", "originalRequest": { "url": { @@ -11218,7 +11218,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e4d9a785-b833-47ce-a81f-982b709336c4", + "id": "7beac44f-d684-494e-9be7-06ac077193fd", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -11262,7 +11262,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b2d14694-2c5d-409c-8566-26322f8068a4", + "id": "a7c8bf5b-c4a4-405b-a315-e970004aa4a3", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -11318,7 +11318,7 @@ "description": "", "item": [ { - "id": "fb08f062-0aa9-4cec-8f73-f025ba7f2185", + "id": "bc8a6374-2201-491e-94cb-b90e9a597d11", "name": "profile_types/ne_attributes synced status", "request": { "name": "profile_types/ne_attributes synced status", @@ -11416,7 +11416,7 @@ }, "response": [ { - "id": "44cf2c4e-d0c1-446a-baaf-c9fe1265d936", + "id": "0e008f01-d6f8-4035-bc8b-ba17daa7196e", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -11502,12 +11502,12 @@ "value": "application/json" } ], - "body": "{\n \"form\": {\n \"count\": 5,\n \"records\": [\n {\n \"id\": \"1246d8b3-ac29-4015-8154-dea4434a73fa\",\n \"uid\": \"dolore sint aliqua irurepariatur\",\n \"label\": \"object\",\n \"synced\": \"1246d8b3-ac29-4015-8154-dea4434a73fa\"\n },\n {\n \"id\": \"1246d8b3-ac29-4015-8154-dea4434a73fa\",\n \"uid\": \"aute proident voluptatetempornos\",\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\": \"quis dolorsed nullapariatur occa\",\n \"label\": \"object\",\n \"synced\": \"1246d8b3-ac29-4015-8154-dea4434a73fa\"\n },\n {\n \"id\": \"1246d8b3-ac29-4015-8154-dea4434a73fa\",\n \"uid\": \"eiusmod minim nonamet Utexercita\",\n \"label\": \"object\",\n \"synced\": \"1246d8b3-ac29-4015-8154-dea4434a73fa\"\n }\n ]\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "77a52539-28f4-4f84-b1f7-da8b498e87dc", + "id": "dd1fde51-d010-4a65-b372-59a52a924f54", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -11598,7 +11598,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4b4fb811-8b10-47dc-bec5-c0df4a695a26", + "id": "6a86e3a2-84f6-4f5d-922c-d6660d2f7c48", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -11695,7 +11695,7 @@ } }, { - "id": "af454668-9062-4794-8ab0-69b5a01d0bdc", + "id": "ea578330-cae7-4ff7-9cf0-68583dfc0edd", "name": "Create a synced attribute", "request": { "name": "Create a synced attribute", @@ -11745,7 +11745,7 @@ }, "response": [ { - "id": "9fc525ec-a60d-4f09-af2e-05e21b2fc9f5", + "id": "bb963e0f-cd2c-43fe-83b9-b78892182add", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -11803,7 +11803,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bb160249-01b0-4602-ac1b-b5108dafcc35", + "id": "e43f4856-b6a2-4ae8-b79f-28020bb8b03c", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -11861,7 +11861,7 @@ "_postman_previewlanguage": "json" }, { - "id": "20a57bc6-69e4-435d-8179-a083eeef1396", + "id": "633d362a-e705-4df9-bfe2-2686b47fd078", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -11925,7 +11925,7 @@ } }, { - "id": "b1cafb21-99e7-4288-ae33-e33df023dead", + "id": "b9841b62-5107-48b0-8e3d-1e8912a08100", "name": "Delete synced attribute", "request": { "name": "Delete synced attribute", @@ -11979,7 +11979,7 @@ }, "response": [ { - "id": "bd6001d0-0087-495f-8490-efedb8ba5414", + "id": "d1462225-4d55-4ae4-ab27-17a60f8fcfaf", "name": "Info about the operation", "originalRequest": { "url": { @@ -12025,7 +12025,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8e449d0b-59f9-48ce-a079-17f44eb435f4", + "id": "48096b64-2c08-4841-89cf-b9951593a1ed", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -12071,7 +12071,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b2115b75-4326-4fd8-b586-2169492c7aa5", + "id": "55ceab24-7fe6-46be-89d2-3de74eea9645", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -12129,7 +12129,7 @@ "description": "", "item": [ { - "id": "2647db04-3871-4db0-be98-057f51eb2081", + "id": "db791b3b-fcc0-449f-8113-a4fadf2b3d90", "name": "Create a profile type role", "request": { "name": "Create a profile type role", @@ -12172,7 +12172,7 @@ }, "response": [ { - "id": "f3fb3194-876d-45e2-94c5-5cd08098b8c8", + "id": "ad8d8af5-c7c2-4523-b507-8158ace0f852", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -12228,7 +12228,7 @@ "_postman_previewlanguage": "json" }, { - "id": "939a888b-da87-4074-adfc-5d918707e15f", + "id": "75b45e5f-97cf-4d5b-9dcc-003ff782ce8b", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -12284,7 +12284,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4f452054-68ab-4028-b8dc-1100b0c0f4de", + "id": "eab83376-09ac-44f1-8844-d500d11560c3", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -12352,7 +12352,7 @@ "description": "", "item": [ { - "id": "7d74dd33-9350-460f-8114-17d8b122b626", + "id": "b7d4145d-ef1d-4dd2-b243-1c1cf6903390", "name": "Create a profile", "request": { "name": "Create a profile", @@ -12383,7 +12383,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"profile\": {\n \"name\": \"est enim aliquip dolore\",\n \"profile_type_id\": \"urn:uuid:51d10fdc-6ae4-be10-a80e-14018f4eb567\",\n \"status\": \"Active\",\n \"id_proofing_status\": \"pending\",\n \"archived\": false,\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n}", + "raw": "{\n \"profile\": {\n \"name\": \"commodo cupidatat\",\n \"profile_type_id\": \"urn:uuid:c694a1c1-5da9-590e-0f7c-e57f8c4ae0d1\",\n \"status\": \"Inactive\",\n \"id_proofing_status\": \"pending\",\n \"archived\": false,\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -12395,7 +12395,7 @@ }, "response": [ { - "id": "960c1423-a848-4cbf-a4ce-519ca6c6c0c5", + "id": "b38c09bd-0c80-489b-aa24-cb4ec2a4a4f6", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -12429,7 +12429,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"profile\": {\n \"name\": \"est enim aliquip dolore\",\n \"profile_type_id\": \"urn:uuid:51d10fdc-6ae4-be10-a80e-14018f4eb567\",\n \"status\": \"Active\",\n \"id_proofing_status\": \"pending\",\n \"archived\": false,\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n}", + "raw": "{\n \"profile\": {\n \"name\": \"commodo cupidatat\",\n \"profile_type_id\": \"urn:uuid:c694a1c1-5da9-590e-0f7c-e57f8c4ae0d1\",\n \"status\": \"Inactive\",\n \"id_proofing_status\": \"pending\",\n \"archived\": false,\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -12446,12 +12446,12 @@ "value": "application/json" } ], - "body": "{\n \"profile\": {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"cupidatat consequattempor nisini\",\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 \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n}", + "body": "{\n \"profile\": {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"Ut nulla cupidatatesse quis elit\",\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 \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e4f57cd2-4416-4035-8ca7-c22efc910112", + "id": "ce2867c4-8096-4ade-82b4-97d9c66ade72", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -12485,7 +12485,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"profile\": {\n \"name\": \"est enim aliquip dolore\",\n \"profile_type_id\": \"urn:uuid:51d10fdc-6ae4-be10-a80e-14018f4eb567\",\n \"status\": \"Active\",\n \"id_proofing_status\": \"pending\",\n \"archived\": false,\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n}", + "raw": "{\n \"profile\": {\n \"name\": \"commodo cupidatat\",\n \"profile_type_id\": \"urn:uuid:c694a1c1-5da9-590e-0f7c-e57f8c4ae0d1\",\n \"status\": \"Inactive\",\n \"id_proofing_status\": \"pending\",\n \"archived\": false,\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -12507,7 +12507,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8c751b8a-0b43-4d84-bd64-833afd206205", + "id": "881221e5-2aeb-48fd-8d46-6a17554c7f63", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -12541,7 +12541,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"profile\": {\n \"name\": \"est enim aliquip dolore\",\n \"profile_type_id\": \"urn:uuid:51d10fdc-6ae4-be10-a80e-14018f4eb567\",\n \"status\": \"Active\",\n \"id_proofing_status\": \"pending\",\n \"archived\": false,\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n}", + "raw": "{\n \"profile\": {\n \"name\": \"commodo cupidatat\",\n \"profile_type_id\": \"urn:uuid:c694a1c1-5da9-590e-0f7c-e57f8c4ae0d1\",\n \"status\": \"Inactive\",\n \"id_proofing_status\": \"pending\",\n \"archived\": false,\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -12569,7 +12569,7 @@ } }, { - "id": "5bc0dfa0-9593-4704-a0d7-c65ef8d537dc", + "id": "3a104fd3-52ea-4656-8045-945652400484", "name": "Get profiles", "request": { "name": "Get profiles", @@ -12628,7 +12628,7 @@ "type": "text/plain" }, "key": "name", - "value": "esse in in tempor" + "value": "ullamco reprehenderit exercitation velit " }, { "disabled": false, @@ -12637,7 +12637,7 @@ "type": "text/plain" }, "key": "profile_type_id", - "value": "ddcc300b-df84-c438-f837-90d81d0c2bdc" + "value": "urn:uuid:7f1dc9d0-8a01-cc5e-4782-40258f360dd0" }, { "disabled": false, @@ -12646,7 +12646,7 @@ "type": "text/plain" }, "key": "status", - "value": "Active" + "value": "On Leave" }, { "disabled": false, @@ -12672,7 +12672,7 @@ }, "response": [ { - "id": "fb7996d7-bb8c-48b5-9429-821a605c0588", + "id": "85de7b49-1d5a-4093-a497-a8a863c72ebf", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -12726,7 +12726,7 @@ "type": "text/plain" }, "key": "name", - "value": "esse in in tempor" + "value": "ullamco reprehenderit exercitation velit " }, { "disabled": false, @@ -12735,7 +12735,7 @@ "type": "text/plain" }, "key": "profile_type_id", - "value": "ddcc300b-df84-c438-f837-90d81d0c2bdc" + "value": "urn:uuid:7f1dc9d0-8a01-cc5e-4782-40258f360dd0" }, { "disabled": false, @@ -12744,7 +12744,7 @@ "type": "text/plain" }, "key": "status", - "value": "Active" + "value": "On Leave" }, { "disabled": false, @@ -12783,12 +12783,12 @@ "value": "application/json" } ], - "body": "{\n \"profiles\": [\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"minim et eaut pariatur Duisamet \",\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 \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n },\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"ea laboreincididunt laboris utUt\",\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 \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n ],\n \"_metadata\": {\n \"limit\": -77544557,\n \"offset\": -9691489,\n \"total\": 90130822,\n \"next\": \"/endpoint?limit=10&offset=60\",\n \"previous\": \"/endpoint?limit=10&offset=40\"\n }\n}", + "body": "{\n \"profiles\": [\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"consectetur aliquaDuis id ullamc\",\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 \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n },\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"enim do innisi laborum fugiatadi\",\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 \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n ],\n \"_metadata\": {\n \"limit\": -20907641,\n \"offset\": 85765312,\n \"total\": -13603508,\n \"next\": \"/endpoint?limit=10&offset=60\",\n \"previous\": \"/endpoint?limit=10&offset=40\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "3be1ea8a-4702-43d4-bda9-38f644b35d65", + "id": "38ba3c17-cc64-4396-a259-99f2835302cf", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -12842,7 +12842,7 @@ "type": "text/plain" }, "key": "name", - "value": "esse in in tempor" + "value": "ullamco reprehenderit exercitation velit " }, { "disabled": false, @@ -12851,7 +12851,7 @@ "type": "text/plain" }, "key": "profile_type_id", - "value": "ddcc300b-df84-c438-f837-90d81d0c2bdc" + "value": "urn:uuid:7f1dc9d0-8a01-cc5e-4782-40258f360dd0" }, { "disabled": false, @@ -12860,7 +12860,7 @@ "type": "text/plain" }, "key": "status", - "value": "Active" + "value": "On Leave" }, { "disabled": false, @@ -12904,7 +12904,7 @@ "_postman_previewlanguage": "json" }, { - "id": "502e2dd2-a602-46ba-99ae-b5682ad4af02", + "id": "a6d3bb9a-108b-48d7-9958-62f1a9d9b431", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -12958,7 +12958,7 @@ "type": "text/plain" }, "key": "name", - "value": "esse in in tempor" + "value": "ullamco reprehenderit exercitation velit " }, { "disabled": false, @@ -12967,7 +12967,7 @@ "type": "text/plain" }, "key": "profile_type_id", - "value": "ddcc300b-df84-c438-f837-90d81d0c2bdc" + "value": "urn:uuid:7f1dc9d0-8a01-cc5e-4782-40258f360dd0" }, { "disabled": false, @@ -12976,7 +12976,7 @@ "type": "text/plain" }, "key": "status", - "value": "Active" + "value": "On Leave" }, { "disabled": false, @@ -13026,7 +13026,7 @@ } }, { - "id": "f14598c1-540e-411b-9a10-e8248bf66dc1", + "id": "8479daaa-2dd5-4628-86e3-e78115a6b902", "name": "Create multiple profiles", "request": { "name": "Create multiple profiles", @@ -13057,7 +13057,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"profiles\": [\n {\n \"name\": \"et tempor\",\n \"profile_type_id\": \"urn:uuid:531b859e-1bf1-4781-0c39-f0baa0f37c94\",\n \"status\": \"Terminated\",\n \"id_proofing_status\": \"pass\",\n \"archived\": false,\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n },\n {\n \"name\": \"Lorem amet\",\n \"profile_type_id\": \"urn:uuid:64448e0e-70d9-ff84-18e0-dcac29769d35\",\n \"status\": \"On Leave\",\n \"id_proofing_status\": \"pending\",\n \"archived\": false,\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n ]\n}", + "raw": "{\n \"profiles\": [\n {\n \"name\": \"nisi occaecat aliquip\",\n \"profile_type_id\": \"749493ce-334b-e2ca-2601-5a4ac722a175\",\n \"status\": \"On Leave\",\n \"id_proofing_status\": \"pass\",\n \"archived\": false,\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n },\n {\n \"name\": \"Ut consequat laborum elit\",\n \"profile_type_id\": \"urn:uuid:c2a04031-34ba-18eb-5760-fc2dc6e6f3dd\",\n \"status\": \"Terminated\",\n \"id_proofing_status\": \"pass\",\n \"archived\": false,\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -13069,7 +13069,7 @@ }, "response": [ { - "id": "dda29f30-54be-4b4c-b650-ef87e040bd60", + "id": "e79de968-22b5-4b29-b149-8fb2952f3ff1", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -13103,7 +13103,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"profiles\": [\n {\n \"name\": \"et tempor\",\n \"profile_type_id\": \"urn:uuid:531b859e-1bf1-4781-0c39-f0baa0f37c94\",\n \"status\": \"Terminated\",\n \"id_proofing_status\": \"pass\",\n \"archived\": false,\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n },\n {\n \"name\": \"Lorem amet\",\n \"profile_type_id\": \"urn:uuid:64448e0e-70d9-ff84-18e0-dcac29769d35\",\n \"status\": \"On Leave\",\n \"id_proofing_status\": \"pending\",\n \"archived\": false,\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n ]\n}", + "raw": "{\n \"profiles\": [\n {\n \"name\": \"nisi occaecat aliquip\",\n \"profile_type_id\": \"749493ce-334b-e2ca-2601-5a4ac722a175\",\n \"status\": \"On Leave\",\n \"id_proofing_status\": \"pass\",\n \"archived\": false,\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n },\n {\n \"name\": \"Ut consequat laborum elit\",\n \"profile_type_id\": \"urn:uuid:c2a04031-34ba-18eb-5760-fc2dc6e6f3dd\",\n \"status\": \"Terminated\",\n \"id_proofing_status\": \"pass\",\n \"archived\": false,\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -13120,12 +13120,12 @@ "value": "application/json" } ], - "body": "{\n \"profiles\": [\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"Excepteur reprehenderit deserunt\",\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 \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n },\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"et ipsum elit proidentest labori\",\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 \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n ]\n}", + "body": "{\n \"profiles\": [\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"reprehenderit Lorem dolor adcomm\",\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 \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n },\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"nulla incididunt ipsum doloreDui\",\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 \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "6e1a3be5-f670-4e25-a74a-dfbc6e87fd4c", + "id": "e14036c3-594b-4def-8140-47b185fdc7e2", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -13159,7 +13159,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"profiles\": [\n {\n \"name\": \"et tempor\",\n \"profile_type_id\": \"urn:uuid:531b859e-1bf1-4781-0c39-f0baa0f37c94\",\n \"status\": \"Terminated\",\n \"id_proofing_status\": \"pass\",\n \"archived\": false,\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n },\n {\n \"name\": \"Lorem amet\",\n \"profile_type_id\": \"urn:uuid:64448e0e-70d9-ff84-18e0-dcac29769d35\",\n \"status\": \"On Leave\",\n \"id_proofing_status\": \"pending\",\n \"archived\": false,\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n ]\n}", + "raw": "{\n \"profiles\": [\n {\n \"name\": \"nisi occaecat aliquip\",\n \"profile_type_id\": \"749493ce-334b-e2ca-2601-5a4ac722a175\",\n \"status\": \"On Leave\",\n \"id_proofing_status\": \"pass\",\n \"archived\": false,\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n },\n {\n \"name\": \"Ut consequat laborum elit\",\n \"profile_type_id\": \"urn:uuid:c2a04031-34ba-18eb-5760-fc2dc6e6f3dd\",\n \"status\": \"Terminated\",\n \"id_proofing_status\": \"pass\",\n \"archived\": false,\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -13181,7 +13181,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3e4a4e18-7ce9-401c-9d65-91f092ac52eb", + "id": "209f295b-59aa-4839-8aee-959900e050c5", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -13215,7 +13215,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"profiles\": [\n {\n \"name\": \"et tempor\",\n \"profile_type_id\": \"urn:uuid:531b859e-1bf1-4781-0c39-f0baa0f37c94\",\n \"status\": \"Terminated\",\n \"id_proofing_status\": \"pass\",\n \"archived\": false,\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n },\n {\n \"name\": \"Lorem amet\",\n \"profile_type_id\": \"urn:uuid:64448e0e-70d9-ff84-18e0-dcac29769d35\",\n \"status\": \"On Leave\",\n \"id_proofing_status\": \"pending\",\n \"archived\": false,\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n ]\n}", + "raw": "{\n \"profiles\": [\n {\n \"name\": \"nisi occaecat aliquip\",\n \"profile_type_id\": \"749493ce-334b-e2ca-2601-5a4ac722a175\",\n \"status\": \"On Leave\",\n \"id_proofing_status\": \"pass\",\n \"archived\": false,\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n },\n {\n \"name\": \"Ut consequat laborum elit\",\n \"profile_type_id\": \"urn:uuid:c2a04031-34ba-18eb-5760-fc2dc6e6f3dd\",\n \"status\": \"Terminated\",\n \"id_proofing_status\": \"pass\",\n \"archived\": false,\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -13243,7 +13243,7 @@ } }, { - "id": "53408a1f-f09f-4948-a377-36a305a1ec0d", + "id": "ef3b67a1-861f-4937-8a64-10587bc82412", "name": "Update multiple profiles", "request": { "name": "Update multiple profiles", @@ -13274,7 +13274,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"profiles\": [\n {\n \"id\": \"a90116a9-182e-d176-438a-c44c5d91eb6a\",\n \"name\": \"\",\n \"profile_type_id\": \"ab7f9277-be72-fe44-0418-bd9d324b71c5\",\n \"status\": \"On Leave\",\n \"id_proofing_status\": \"pending\",\n \"archived\": false,\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n },\n {\n \"id\": \"2290acd3-8e0f-2f4f-baaf-1639e47a8aba\",\n \"name\": \"eu aute velit\",\n \"profile_type_id\": \"02a4b3bd-9027-b2c8-3e9b-885f7086cc1b\",\n \"status\": \"Active\",\n \"id_proofing_status\": \"fail\",\n \"archived\": false,\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n ]\n}", + "raw": "{\n \"profiles\": [\n {\n \"id\": \"f20cd75d-18b4-df69-b253-b54a097c5c44\",\n \"name\": \"dolor et\",\n \"profile_type_id\": \"39b62eaa-f387-4089-d89f-7dc24ed6f173\",\n \"status\": \"Inactive\",\n \"id_proofing_status\": \"pending\",\n \"archived\": false,\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n },\n {\n \"id\": \"urn:uuid:46824697-28b8-e393-b368-735cfa301886\",\n \"name\": \"labore voluptate dolore\",\n \"profile_type_id\": \"urn:uuid:713ebd5f-5d4b-70f9-f0dc-f421d654ccf4\",\n \"status\": \"Inactive\",\n \"id_proofing_status\": \"pass\",\n \"archived\": false,\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -13286,7 +13286,7 @@ }, "response": [ { - "id": "e761f460-50aa-43fa-9537-7391a1144d96", + "id": "99122892-7438-4679-99e9-94ddee8a429d", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -13320,7 +13320,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"profiles\": [\n {\n \"id\": \"a90116a9-182e-d176-438a-c44c5d91eb6a\",\n \"name\": \"\",\n \"profile_type_id\": \"ab7f9277-be72-fe44-0418-bd9d324b71c5\",\n \"status\": \"On Leave\",\n \"id_proofing_status\": \"pending\",\n \"archived\": false,\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n },\n {\n \"id\": \"2290acd3-8e0f-2f4f-baaf-1639e47a8aba\",\n \"name\": \"eu aute velit\",\n \"profile_type_id\": \"02a4b3bd-9027-b2c8-3e9b-885f7086cc1b\",\n \"status\": \"Active\",\n \"id_proofing_status\": \"fail\",\n \"archived\": false,\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n ]\n}", + "raw": "{\n \"profiles\": [\n {\n \"id\": \"f20cd75d-18b4-df69-b253-b54a097c5c44\",\n \"name\": \"dolor et\",\n \"profile_type_id\": \"39b62eaa-f387-4089-d89f-7dc24ed6f173\",\n \"status\": \"Inactive\",\n \"id_proofing_status\": \"pending\",\n \"archived\": false,\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n },\n {\n \"id\": \"urn:uuid:46824697-28b8-e393-b368-735cfa301886\",\n \"name\": \"labore voluptate dolore\",\n \"profile_type_id\": \"urn:uuid:713ebd5f-5d4b-70f9-f0dc-f421d654ccf4\",\n \"status\": \"Inactive\",\n \"id_proofing_status\": \"pass\",\n \"archived\": false,\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -13337,12 +13337,12 @@ "value": "application/json" } ], - "body": "{\n \"profiles\": [\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"Excepteur reprehenderit deserunt\",\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 \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n },\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"et ipsum elit proidentest labori\",\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 \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n ]\n}", + "body": "{\n \"profiles\": [\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"reprehenderit Lorem dolor adcomm\",\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 \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n },\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"nulla incididunt ipsum doloreDui\",\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 \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "bffb11bf-079b-4158-8ef8-a66074ccf966", + "id": "f7b216f3-185b-41b8-b565-25aa942f2d74", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -13376,7 +13376,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"profiles\": [\n {\n \"id\": \"a90116a9-182e-d176-438a-c44c5d91eb6a\",\n \"name\": \"\",\n \"profile_type_id\": \"ab7f9277-be72-fe44-0418-bd9d324b71c5\",\n \"status\": \"On Leave\",\n \"id_proofing_status\": \"pending\",\n \"archived\": false,\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n },\n {\n \"id\": \"2290acd3-8e0f-2f4f-baaf-1639e47a8aba\",\n \"name\": \"eu aute velit\",\n \"profile_type_id\": \"02a4b3bd-9027-b2c8-3e9b-885f7086cc1b\",\n \"status\": \"Active\",\n \"id_proofing_status\": \"fail\",\n \"archived\": false,\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n ]\n}", + "raw": "{\n \"profiles\": [\n {\n \"id\": \"f20cd75d-18b4-df69-b253-b54a097c5c44\",\n \"name\": \"dolor et\",\n \"profile_type_id\": \"39b62eaa-f387-4089-d89f-7dc24ed6f173\",\n \"status\": \"Inactive\",\n \"id_proofing_status\": \"pending\",\n \"archived\": false,\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n },\n {\n \"id\": \"urn:uuid:46824697-28b8-e393-b368-735cfa301886\",\n \"name\": \"labore voluptate dolore\",\n \"profile_type_id\": \"urn:uuid:713ebd5f-5d4b-70f9-f0dc-f421d654ccf4\",\n \"status\": \"Inactive\",\n \"id_proofing_status\": \"pass\",\n \"archived\": false,\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -13398,7 +13398,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5b2e3c6f-cea6-41c0-89e9-f09a5820d467", + "id": "e6926119-beb8-4224-8764-5b4cb4255228", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -13432,7 +13432,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"profiles\": [\n {\n \"id\": \"a90116a9-182e-d176-438a-c44c5d91eb6a\",\n \"name\": \"\",\n \"profile_type_id\": \"ab7f9277-be72-fe44-0418-bd9d324b71c5\",\n \"status\": \"On Leave\",\n \"id_proofing_status\": \"pending\",\n \"archived\": false,\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n },\n {\n \"id\": \"2290acd3-8e0f-2f4f-baaf-1639e47a8aba\",\n \"name\": \"eu aute velit\",\n \"profile_type_id\": \"02a4b3bd-9027-b2c8-3e9b-885f7086cc1b\",\n \"status\": \"Active\",\n \"id_proofing_status\": \"fail\",\n \"archived\": false,\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n ]\n}", + "raw": "{\n \"profiles\": [\n {\n \"id\": \"f20cd75d-18b4-df69-b253-b54a097c5c44\",\n \"name\": \"dolor et\",\n \"profile_type_id\": \"39b62eaa-f387-4089-d89f-7dc24ed6f173\",\n \"status\": \"Inactive\",\n \"id_proofing_status\": \"pending\",\n \"archived\": false,\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n },\n {\n \"id\": \"urn:uuid:46824697-28b8-e393-b368-735cfa301886\",\n \"name\": \"labore voluptate dolore\",\n \"profile_type_id\": \"urn:uuid:713ebd5f-5d4b-70f9-f0dc-f421d654ccf4\",\n \"status\": \"Inactive\",\n \"id_proofing_status\": \"pass\",\n \"archived\": false,\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -13460,7 +13460,7 @@ } }, { - "id": "633d913b-15f1-4b48-9c9b-8705e116734d", + "id": "3027b9da-08fb-4d19-98b5-4bc99e5d10df", "name": "Delete multiple profiles", "request": { "name": "Delete multiple profiles", @@ -13491,7 +13491,7 @@ "method": "DELETE", "body": { "mode": "raw", - "raw": "{\n \"profiles\": [\n {\n \"id\": \"48c056a0-0889-7ec2-dc37-9e1b1449b9c7\"\n },\n {\n \"id\": \"urn:uuid:9047d2ca-e331-9866-2abc-598f36953740\"\n }\n ]\n}", + "raw": "{\n \"profiles\": [\n {\n \"id\": \"urn:uuid:936fe472-0d1a-6445-a2bf-97647b7438b4\"\n },\n {\n \"id\": \"urn:uuid:5cd9574b-aa52-9740-c717-19de323f7d88\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -13503,7 +13503,7 @@ }, "response": [ { - "id": "c9cef2e6-81dd-49d1-92bd-a8a44de2ce01", + "id": "7b223d99-72d8-4c1b-a69b-c84ab359462a", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -13537,7 +13537,7 @@ "method": "DELETE", "body": { "mode": "raw", - "raw": "{\n \"profiles\": [\n {\n \"id\": \"48c056a0-0889-7ec2-dc37-9e1b1449b9c7\"\n },\n {\n \"id\": \"urn:uuid:9047d2ca-e331-9866-2abc-598f36953740\"\n }\n ]\n}", + "raw": "{\n \"profiles\": [\n {\n \"id\": \"urn:uuid:936fe472-0d1a-6445-a2bf-97647b7438b4\"\n },\n {\n \"id\": \"urn:uuid:5cd9574b-aa52-9740-c717-19de323f7d88\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -13554,12 +13554,12 @@ "value": "application/json" } ], - "body": "{\n \"profiles\": [\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"Excepteur reprehenderit deserunt\",\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 \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n },\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"et ipsum elit proidentest labori\",\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 \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n ]\n}", + "body": "{\n \"profiles\": [\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"reprehenderit Lorem dolor adcomm\",\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 \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n },\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"nulla incididunt ipsum doloreDui\",\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 \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "4aba7bef-aca7-46fd-9c9f-8366d2693c7a", + "id": "a6f64b9d-bb32-4281-be41-f04b0173d064", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -13593,7 +13593,7 @@ "method": "DELETE", "body": { "mode": "raw", - "raw": "{\n \"profiles\": [\n {\n \"id\": \"48c056a0-0889-7ec2-dc37-9e1b1449b9c7\"\n },\n {\n \"id\": \"urn:uuid:9047d2ca-e331-9866-2abc-598f36953740\"\n }\n ]\n}", + "raw": "{\n \"profiles\": [\n {\n \"id\": \"urn:uuid:936fe472-0d1a-6445-a2bf-97647b7438b4\"\n },\n {\n \"id\": \"urn:uuid:5cd9574b-aa52-9740-c717-19de323f7d88\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -13615,7 +13615,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d4000b08-73a4-4cdb-bf45-c5b76fc4d760", + "id": "26364f32-8383-4663-95bb-b3257f8c12a8", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -13649,7 +13649,7 @@ "method": "DELETE", "body": { "mode": "raw", - "raw": "{\n \"profiles\": [\n {\n \"id\": \"48c056a0-0889-7ec2-dc37-9e1b1449b9c7\"\n },\n {\n \"id\": \"urn:uuid:9047d2ca-e331-9866-2abc-598f36953740\"\n }\n ]\n}", + "raw": "{\n \"profiles\": [\n {\n \"id\": \"urn:uuid:936fe472-0d1a-6445-a2bf-97647b7438b4\"\n },\n {\n \"id\": \"urn:uuid:5cd9574b-aa52-9740-c717-19de323f7d88\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -13677,7 +13677,7 @@ } }, { - "id": "99abed2e-2e4a-4dfb-8525-8e6e138b0b3f", + "id": "0bcf98bb-8c71-443b-b117-4a778df315ee", "name": "Find profile by id", "request": { "name": "Find profile by id", @@ -13719,7 +13719,7 @@ }, "response": [ { - "id": "94cdac19-30c5-42ba-987a-218d3f3fc69b", + "id": "aebe0758-b3fe-4959-8535-f8e9d7b22c92", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -13758,12 +13758,12 @@ "value": "application/json" } ], - "body": "{\n \"profile\": {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"cupidatat consequattempor nisini\",\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 \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n}", + "body": "{\n \"profile\": {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"Ut nulla cupidatatesse quis elit\",\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 \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "cb3a7bed-797f-4f8c-8d26-6e70770474c9", + "id": "fcc8c8e1-fe37-45c4-9b34-5187d8398084", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -13807,7 +13807,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6065ec0b-f937-4165-95dc-5c8d69cf8807", + "id": "4ca04555-5cba-4e5d-813b-c882cf01eaea", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -13857,7 +13857,7 @@ } }, { - "id": "56610f70-005c-4726-9aee-597ac0707355", + "id": "6e5c5612-f973-4c24-92d7-4acb4b9463db", "name": "Update a profile by id", "request": { "name": "Update a profile by id", @@ -13900,7 +13900,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"profile\": {\n \"name\": \"incididunt ut voluptate\",\n \"profile_type_id\": \"3ca407e7-cfa6-c4ec-fb36-5f624dd225a2\",\n \"status\": \"Active\",\n \"id_proofing_status\": \"pass\",\n \"archived\": false,\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n}", + "raw": "{\n \"profile\": {\n \"name\": \"sint nulla adipisicing ex\",\n \"profile_type_id\": \"urn:uuid:8b3b1315-a00d-64df-34bc-cdb68a945ec0\",\n \"status\": \"On Leave\",\n \"id_proofing_status\": \"pending\",\n \"archived\": false,\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -13912,7 +13912,7 @@ }, "response": [ { - "id": "d167af83-3353-461a-b71f-c0d2982fdd6f", + "id": "e6eb779f-de3a-44b6-9551-1a85b718ed67", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -13947,7 +13947,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"profile\": {\n \"name\": \"incididunt ut voluptate\",\n \"profile_type_id\": \"3ca407e7-cfa6-c4ec-fb36-5f624dd225a2\",\n \"status\": \"Active\",\n \"id_proofing_status\": \"pass\",\n \"archived\": false,\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n}", + "raw": "{\n \"profile\": {\n \"name\": \"sint nulla adipisicing ex\",\n \"profile_type_id\": \"urn:uuid:8b3b1315-a00d-64df-34bc-cdb68a945ec0\",\n \"status\": \"On Leave\",\n \"id_proofing_status\": \"pending\",\n \"archived\": false,\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -13964,12 +13964,12 @@ "value": "application/json" } ], - "body": "{\n \"profile\": {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"cupidatat consequattempor nisini\",\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 \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n}", + "body": "{\n \"profile\": {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"Ut nulla cupidatatesse quis elit\",\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 \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "442e3f7d-c333-48d8-8651-e53e2f4ed8fb", + "id": "14e868a5-1538-4baf-a561-9c8818a96923", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -14004,7 +14004,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"profile\": {\n \"name\": \"incididunt ut voluptate\",\n \"profile_type_id\": \"3ca407e7-cfa6-c4ec-fb36-5f624dd225a2\",\n \"status\": \"Active\",\n \"id_proofing_status\": \"pass\",\n \"archived\": false,\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n}", + "raw": "{\n \"profile\": {\n \"name\": \"sint nulla adipisicing ex\",\n \"profile_type_id\": \"urn:uuid:8b3b1315-a00d-64df-34bc-cdb68a945ec0\",\n \"status\": \"On Leave\",\n \"id_proofing_status\": \"pending\",\n \"archived\": false,\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -14026,7 +14026,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bcd00148-a907-4240-9e88-f3acc90d5d24", + "id": "0b95387a-1db7-4ef5-bc4a-04badfc6a6ae", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -14061,7 +14061,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"profile\": {\n \"name\": \"incididunt ut voluptate\",\n \"profile_type_id\": \"3ca407e7-cfa6-c4ec-fb36-5f624dd225a2\",\n \"status\": \"Active\",\n \"id_proofing_status\": \"pass\",\n \"archived\": false,\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n}", + "raw": "{\n \"profile\": {\n \"name\": \"sint nulla adipisicing ex\",\n \"profile_type_id\": \"urn:uuid:8b3b1315-a00d-64df-34bc-cdb68a945ec0\",\n \"status\": \"On Leave\",\n \"id_proofing_status\": \"pending\",\n \"archived\": false,\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -14089,7 +14089,7 @@ } }, { - "id": "a8bacce7-e439-41bf-ad62-90d47aad02a5", + "id": "a6a27fcd-bf0f-431f-a3a2-9fa78e8284d1", "name": "Delete a single profile", "request": { "name": "Delete a single profile", @@ -14131,7 +14131,7 @@ }, "response": [ { - "id": "2ce18322-be9b-48fe-8201-99b46e4929aa", + "id": "7bd11662-e7c4-4cf4-bc8a-279ce9914f28", "name": "The Profile was successfully deleted.", "originalRequest": { "url": { @@ -14165,7 +14165,7 @@ "_postman_previewlanguage": "text" }, { - "id": "21bb9567-85ed-4d1c-9ca6-4950052be233", + "id": "be5207cc-924b-4441-9d73-b8827f858573", "name": "Error deleting Profile", "originalRequest": { "url": { @@ -14204,12 +14204,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": \"tempor non cillum\"\n}", + "body": "{\n \"error\": \"sint elit\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "2e37775b-cf9c-4c3e-b48f-0903c1ebb10d", + "id": "a43180e7-e8e4-4e28-97e9-07946157048e", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -14259,7 +14259,7 @@ } }, { - "id": "b7577bfc-fe5e-42c3-b144-bbd553332697", + "id": "8402aca7-7af0-4698-ad0e-a08d3b76226e", "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", @@ -14313,7 +14313,7 @@ }, "response": [ { - "id": "f608343f-8e41-487f-8bed-83d0235bcaaf", + "id": "e29a13c7-9506-4b77-a647-22e24e70a494", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -14354,12 +14354,12 @@ "value": "application/json" } ], - "body": "{\n \"url\": \"ut eiusmod do eu\"\n}", + "body": "{\n \"url\": \"est ipsum reprehenderit aute Lorem\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "45a437e8-ca75-481d-8456-619c6ebdd853", + "id": "b0a6b934-8180-49f7-b998-e60a3a290de2", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -14405,7 +14405,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6599e5c8-81f5-4100-a39c-ddd0476d4f51", + "id": "111c8da2-aef3-4df3-97a2-3aedf9d0db27", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -14457,7 +14457,7 @@ } }, { - "id": "54acd0cc-3226-4235-9c12-08bec2b3f2ad", + "id": "e7dcf8e0-4d5b-427c-a8a3-f6037f123df4", "name": "Uploads a new attachment attribute value to a profile", "request": { "name": "Uploads a new attachment attribute value to a profile", @@ -14519,7 +14519,7 @@ "type": "text/plain" }, "key": "file", - "value": "velit", + "value": "commodo aute ullamco repreh", "type": "text" } ] @@ -14528,7 +14528,7 @@ }, "response": [ { - "id": "a8dc55e8-2068-4cc5-a2bc-c260445d4d6f", + "id": "5d82aa84-e4ea-464a-8f13-14c30e1ddd12", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -14572,7 +14572,7 @@ "type": "text/plain" }, "key": "file", - "value": "velit", + "value": "commodo aute ullamco repreh", "type": "text" } ] @@ -14586,12 +14586,12 @@ "value": "application/json" } ], - "body": "{\n \"url\": \"ut eiusmod do eu\"\n}", + "body": "{\n \"url\": \"est ipsum reprehenderit aute Lorem\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f22060f7-2645-4db8-8cdb-73a223f99dcc", + "id": "416dd15d-89d0-4a8f-8428-22b9def601a3", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -14635,7 +14635,7 @@ "type": "text/plain" }, "key": "file", - "value": "velit", + "value": "commodo aute ullamco repreh", "type": "text" } ] @@ -14654,7 +14654,7 @@ "_postman_previewlanguage": "json" }, { - "id": "463ee5b7-8690-4c44-87d5-03498c9e707e", + "id": "38d36be5-69ce-47a4-8b38-82f266ad146e", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -14698,7 +14698,7 @@ "type": "text/plain" }, "key": "file", - "value": "velit", + "value": "commodo aute ullamco repreh", "type": "text" } ] @@ -14723,7 +14723,7 @@ } }, { - "id": "436e9391-ec82-4341-9f52-ef8a6250cc23", + "id": "f920d316-e7c8-43d5-b509-6227a986cb8f", "name": "Retrieves the URL of the profile avatar", "request": { "name": "Retrieves the URL of the profile avatar", @@ -14766,7 +14766,7 @@ }, "response": [ { - "id": "94591a40-dc7a-4eeb-ad45-999e6999566c", + "id": "c246ec2c-8868-4e9c-84b7-a4bd700f406b", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -14806,12 +14806,12 @@ "value": "application/json" } ], - "body": "{\n \"url\": \"ut eiusmod do eu\"\n}", + "body": "{\n \"url\": \"est ipsum reprehenderit aute Lorem\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "26032b02-d4b7-409f-80e8-7161d1d79c8f", + "id": "c6527c64-f8b3-4714-a862-e97b24657f99", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -14856,7 +14856,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cf1c2377-1fc8-483f-8aa9-3e298677808f", + "id": "ec2a5207-8b3d-4ae8-a1fd-8a116cb0912d", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -14907,7 +14907,7 @@ } }, { - "id": "6a7466b4-a746-41a1-a7b7-1753d1bd2521", + "id": "0f876af4-adb9-47a9-9c2b-3cb66d801e36", "name": "Uploads a new profile avatar", "request": { "name": "Uploads a new profile avatar", @@ -14958,7 +14958,7 @@ "type": "text/plain" }, "key": "file", - "value": "velit", + "value": "commodo aute ullamco repreh", "type": "text" } ] @@ -14967,7 +14967,7 @@ }, "response": [ { - "id": "28a00b0e-cf38-457e-871f-bc81e3b35a1d", + "id": "cd8caef2-c52d-4afc-aef2-869da83540d9", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -15010,7 +15010,7 @@ "type": "text/plain" }, "key": "file", - "value": "velit", + "value": "commodo aute ullamco repreh", "type": "text" } ] @@ -15024,12 +15024,12 @@ "value": "application/json" } ], - "body": "{\n \"url\": \"ut eiusmod do eu\"\n}", + "body": "{\n \"url\": \"est ipsum reprehenderit aute Lorem\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "60c3fb36-4cf2-4932-b9b5-eb9faa35c0b8", + "id": "6ab1a514-f113-431c-a4a6-9639b9195eb5", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -15072,7 +15072,7 @@ "type": "text/plain" }, "key": "file", - "value": "velit", + "value": "commodo aute ullamco repreh", "type": "text" } ] @@ -15091,7 +15091,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cfb15d00-9392-45e4-b2ab-856c3efb933b", + "id": "9c9ec823-56b4-405e-af76-8c0fd699e10d", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -15134,7 +15134,7 @@ "type": "text/plain" }, "key": "file", - "value": "velit", + "value": "commodo aute ullamco repreh", "type": "text" } ] @@ -15165,7 +15165,7 @@ "description": "", "item": [ { - "id": "22d30a74-461c-4909-bb3f-6d6820f826c0", + "id": "97959979-eb21-47a2-8d14-97d978d023e9", "name": "Get risk score data in bulk", "request": { "name": "Get risk score data in bulk", @@ -15215,7 +15215,7 @@ "type": "text/plain" }, "key": "object_id", - "value": "ddcc300b-df84-c438-f837-90d81d0c2bdc" + "value": "urn:uuid:7f1dc9d0-8a01-cc5e-4782-40258f360dd0" }, { "disabled": false, @@ -15224,7 +15224,7 @@ "type": "text/plain" }, "key": "object_type", - "value": "Profile" + "value": "WorkflowSession" }, { "disabled": false, @@ -15233,7 +15233,7 @@ "type": "text/plain" }, "key": "overall_risk_level_id", - "value": "ddcc300b-df84-c438-f837-90d81d0c2bdc" + "value": "urn:uuid:7f1dc9d0-8a01-cc5e-4782-40258f360dd0" }, { "disabled": false, @@ -15242,7 +15242,7 @@ "type": "text/plain" }, "key": "impact_risk_level_id", - "value": "ddcc300b-df84-c438-f837-90d81d0c2bdc" + "value": "urn:uuid:7f1dc9d0-8a01-cc5e-4782-40258f360dd0" }, { "disabled": false, @@ -15251,7 +15251,7 @@ "type": "text/plain" }, "key": "probability_risk_level_id", - "value": "ddcc300b-df84-c438-f837-90d81d0c2bdc" + "value": "urn:uuid:7f1dc9d0-8a01-cc5e-4782-40258f360dd0" }, { "disabled": false, @@ -15277,7 +15277,7 @@ }, "response": [ { - "id": "d94bbfe6-987f-48cd-9fed-14700e610fad", + "id": "ea94d622-28c5-4370-8376-847f32bdf90d", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -15322,7 +15322,7 @@ "type": "text/plain" }, "key": "object_id", - "value": "ddcc300b-df84-c438-f837-90d81d0c2bdc" + "value": "urn:uuid:7f1dc9d0-8a01-cc5e-4782-40258f360dd0" }, { "disabled": false, @@ -15331,7 +15331,7 @@ "type": "text/plain" }, "key": "object_type", - "value": "Profile" + "value": "WorkflowSession" }, { "disabled": false, @@ -15340,7 +15340,7 @@ "type": "text/plain" }, "key": "overall_risk_level_id", - "value": "ddcc300b-df84-c438-f837-90d81d0c2bdc" + "value": "urn:uuid:7f1dc9d0-8a01-cc5e-4782-40258f360dd0" }, { "disabled": false, @@ -15349,7 +15349,7 @@ "type": "text/plain" }, "key": "impact_risk_level_id", - "value": "ddcc300b-df84-c438-f837-90d81d0c2bdc" + "value": "urn:uuid:7f1dc9d0-8a01-cc5e-4782-40258f360dd0" }, { "disabled": false, @@ -15358,7 +15358,7 @@ "type": "text/plain" }, "key": "probability_risk_level_id", - "value": "ddcc300b-df84-c438-f837-90d81d0c2bdc" + "value": "urn:uuid:7f1dc9d0-8a01-cc5e-4782-40258f360dd0" }, { "disabled": false, @@ -15397,12 +15397,12 @@ "value": "application/json" } ], - "body": "{\n \"risk_scores\": [\n {\n \"id\": \"771561e5-a89b-0739-a26b-8686574d6180\",\n \"uid\": \"laborum elit nisi adipisicing nu\",\n \"object_id\": \"e9b81c88-f13a-d1f7-39e1-b643d4fd8fb0\",\n \"object_type\": \"WorkflowSession\",\n \"overall_score\": 67333556.67,\n \"overall_risk_level_id\": \"46f56f5d-231e-1f3a-154c-8850617354e3\",\n \"impact_score\": 100884649.07000001,\n \"impact_risk_level_id\": \"4d91ba3e-f05b-bc21-cee2-fa9849dd6a0c\",\n \"probability_score\": 95076372.52,\n \"probability_risk_level_id\": \"406f89aa-5bd8-bf21-3f34-dcbb437c4464\"\n },\n {\n \"id\": \"c8980577-e8b4-faad-ae1e-bab392104984\",\n \"uid\": \"do ex proidentmagnareprehenderit\",\n \"object_id\": \"urn:uuid:939c27eb-480d-c995-c25f-49c1983b582a\",\n \"object_type\": \"WorkflowSession\",\n \"overall_score\": 32731531.76,\n \"overall_risk_level_id\": \"urn:uuid:90b51dd4-5314-f558-c0cd-78cc95abc0a8\",\n \"impact_score\": 9798165.31,\n \"impact_risk_level_id\": \"urn:uuid:635564c3-e8e7-4cb5-ebfe-0c19f887e13f\",\n \"probability_score\": 172911220.26,\n \"probability_risk_level_id\": \"096b6344-c398-a92d-3089-a63b26507e3b\"\n }\n ],\n \"_metadata\": {\n \"limit\": 39023646,\n \"offset\": -26614474,\n \"total\": 99444494,\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:3fb8e685-2da1-94f4-bd62-b883c3f533b8\",\n \"uid\": \"ipsum Excepteurminim voluptate l\",\n \"object_id\": \"urn:uuid:5491418a-28e6-fb6b-c646-fe9b97f2dc34\",\n \"object_type\": \"WorkflowSession\",\n \"overall_score\": 26656457.580000002,\n \"overall_risk_level_id\": \"urn:uuid:687ec66b-2566-dd4b-deac-a86e8a6ee0b0\",\n \"impact_score\": 136956217.05,\n \"impact_risk_level_id\": \"urn:uuid:20294c01-893d-f651-6026-c77e8373db71\",\n \"probability_score\": 81235199.73,\n \"probability_risk_level_id\": \"urn:uuid:71883dff-382a-176b-02e9-41cf2a9551b4\"\n },\n {\n \"id\": \"urn:uuid:3d5cab7f-10c6-212d-7588-b99426939661\",\n \"uid\": \"aliquaExcepteurlaborum do conseq\",\n \"object_id\": \"a8e9fadf-3975-5fb6-abcd-c4282a40ac6c\",\n \"object_type\": \"Profile\",\n \"overall_score\": 28656475.98,\n \"overall_risk_level_id\": \"urn:uuid:839b0ef5-5c3e-c404-293e-7fcc7da757c6\",\n \"impact_score\": 132427241.91,\n \"impact_risk_level_id\": \"urn:uuid:08ecce23-36c9-3cd2-c950-26dd1ed547fa\",\n \"probability_score\": 35149232,\n \"probability_risk_level_id\": \"6b924e33-b20a-504d-6660-d2a2ee416f05\"\n }\n ],\n \"_metadata\": {\n \"limit\": -92443189,\n \"offset\": -25233045,\n \"total\": -81989126,\n \"next\": \"/endpoint?limit=10&offset=60\",\n \"previous\": \"/endpoint?limit=10&offset=40\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "77ec489e-f2bf-4e17-86dd-350a4abf58a8", + "id": "3159d8bc-bc57-4a5f-b9c0-bd1b98c1cfd5", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -15447,7 +15447,7 @@ "type": "text/plain" }, "key": "object_id", - "value": "ddcc300b-df84-c438-f837-90d81d0c2bdc" + "value": "urn:uuid:7f1dc9d0-8a01-cc5e-4782-40258f360dd0" }, { "disabled": false, @@ -15456,7 +15456,7 @@ "type": "text/plain" }, "key": "object_type", - "value": "Profile" + "value": "WorkflowSession" }, { "disabled": false, @@ -15465,7 +15465,7 @@ "type": "text/plain" }, "key": "overall_risk_level_id", - "value": "ddcc300b-df84-c438-f837-90d81d0c2bdc" + "value": "urn:uuid:7f1dc9d0-8a01-cc5e-4782-40258f360dd0" }, { "disabled": false, @@ -15474,7 +15474,7 @@ "type": "text/plain" }, "key": "impact_risk_level_id", - "value": "ddcc300b-df84-c438-f837-90d81d0c2bdc" + "value": "urn:uuid:7f1dc9d0-8a01-cc5e-4782-40258f360dd0" }, { "disabled": false, @@ -15483,7 +15483,7 @@ "type": "text/plain" }, "key": "probability_risk_level_id", - "value": "ddcc300b-df84-c438-f837-90d81d0c2bdc" + "value": "urn:uuid:7f1dc9d0-8a01-cc5e-4782-40258f360dd0" }, { "disabled": false, @@ -15527,7 +15527,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4d024f12-08c1-4833-946b-9087512cc71b", + "id": "4241985f-7170-4120-8f16-7f6a2e1140c0", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -15572,7 +15572,7 @@ "type": "text/plain" }, "key": "object_id", - "value": "ddcc300b-df84-c438-f837-90d81d0c2bdc" + "value": "urn:uuid:7f1dc9d0-8a01-cc5e-4782-40258f360dd0" }, { "disabled": false, @@ -15581,7 +15581,7 @@ "type": "text/plain" }, "key": "object_type", - "value": "Profile" + "value": "WorkflowSession" }, { "disabled": false, @@ -15590,7 +15590,7 @@ "type": "text/plain" }, "key": "overall_risk_level_id", - "value": "ddcc300b-df84-c438-f837-90d81d0c2bdc" + "value": "urn:uuid:7f1dc9d0-8a01-cc5e-4782-40258f360dd0" }, { "disabled": false, @@ -15599,7 +15599,7 @@ "type": "text/plain" }, "key": "impact_risk_level_id", - "value": "ddcc300b-df84-c438-f837-90d81d0c2bdc" + "value": "urn:uuid:7f1dc9d0-8a01-cc5e-4782-40258f360dd0" }, { "disabled": false, @@ -15608,7 +15608,7 @@ "type": "text/plain" }, "key": "probability_risk_level_id", - "value": "ddcc300b-df84-c438-f837-90d81d0c2bdc" + "value": "urn:uuid:7f1dc9d0-8a01-cc5e-4782-40258f360dd0" }, { "disabled": false, @@ -15658,7 +15658,7 @@ } }, { - "id": "ce2b3158-a6ea-4fac-9eef-5fa7364727bb", + "id": "b8c47122-6f4f-4e2d-9cb2-2c4a61d27f6d", "name": "Find risk score data by id", "request": { "name": "Find risk score data by id", @@ -15700,7 +15700,7 @@ }, "response": [ { - "id": "9fc69888-53b8-40ea-affb-5c71bef5df40", + "id": "44e49538-982c-4757-b850-3d3a638f12ad", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -15739,12 +15739,12 @@ "value": "application/json" } ], - "body": "{\n \"risk_score\": {\n \"id\": \"a1f56727-72db-0e25-06b4-f8c46ea73f8c\",\n \"uid\": \"exercitation in cupidatat essela\",\n \"object_id\": \"4d32bde1-1e9e-8954-ded3-c7b17035c3ae\",\n \"object_type\": \"Profile\",\n \"overall_score\": 113477208.14,\n \"overall_risk_level_id\": \"f2fb78ce-bbcf-38ee-36cb-c379867b6400\",\n \"impact_score\": 124842527.04,\n \"impact_risk_level_id\": \"316aa385-ac9c-74ff-a27d-afb3bc16b66c\",\n \"probability_score\": 24467279.02,\n \"probability_risk_level_id\": \"b3472a40-3c2f-c7b6-8d74-a9e218632536\"\n }\n}", + "body": "{\n \"risk_score\": {\n \"id\": \"urn:uuid:d0358eb3-8d67-d489-9009-899cc15a090b\",\n \"uid\": \"in proident nisi consequatad eun\",\n \"object_id\": \"fe9b890c-e260-e79c-127c-f5e2b1e132c5\",\n \"object_type\": \"Profile\",\n \"overall_score\": 60496626.18,\n \"overall_risk_level_id\": \"0a8d90d4-dd95-cdf7-41ff-c74af7ce7616\",\n \"impact_score\": 134301111.66,\n \"impact_risk_level_id\": \"fc97151d-3943-4a11-4e97-44c4a6270a3c\",\n \"probability_score\": 8672501.48,\n \"probability_risk_level_id\": \"e21e3312-c07f-2165-9a7c-bbb2b2d6e3f0\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f381cb1d-bbde-4493-aeb0-ca8c4d4256ea", + "id": "b2c2b1e7-13e6-4bdb-b46c-7fbb4f6bd366", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -15788,7 +15788,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1b87aace-110a-4a71-b775-fbdd1d05afa1", + "id": "ddf20878-63f9-4eb6-a066-e94548e18894", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -15844,7 +15844,7 @@ "description": "", "item": [ { - "id": "bebe4ce3-5ce9-48a1-8432-25e3fd471c27", + "id": "e6454bf0-1fe7-4b30-bb90-c5d578cc80ed", "name": "Get risk level data in bulk", "request": { "name": "Get risk level data in bulk", @@ -15920,7 +15920,7 @@ }, "response": [ { - "id": "4aa66bd3-fa27-4f11-bb5d-ea97b755867c", + "id": "d15068ab-c8a4-4955-af97-679c63c4fafa", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -16004,12 +16004,12 @@ "value": "application/json" } ], - "body": "{\n \"risk_levels\": [\n {\n \"id\": \"db056d39-6be4-7117-a01f-dcb35b7d060a\",\n \"uid\": \"culpa fugiat suntculpa officia t\",\n \"label\": \"en\",\n \"points\": 195189291.58,\n \"order\": 67550831\n },\n {\n \"id\": \"a1f7139c-afd5-8f84-976b-fea73f8591a0\",\n \"uid\": \"do eiusmod ex Duis Excepteurmoll\",\n \"label\": \"in velit\",\n \"points\": 45474706.77,\n \"order\": 30026463\n }\n ],\n \"_metadata\": {\n \"limit\": 59969449,\n \"offset\": -92365598,\n \"total\": -87842047,\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:86c3409b-776e-eb5e-9732-336426c4c75f\",\n \"uid\": \"ut aute idaliqua velit laborisex\",\n \"label\": \"officia ut dolore dolor\",\n \"points\": 176806585.1,\n \"order\": 62521879\n },\n {\n \"id\": \"259b610a-2f27-52c6-29d9-8100150bb07b\",\n \"uid\": \"labore nisi id inest Excepteur c\",\n \"label\": \"laboris ex\",\n \"points\": 184376878.08,\n \"order\": 99545599\n }\n ],\n \"_metadata\": {\n \"limit\": 34848272,\n \"offset\": -69143285,\n \"total\": 29457824,\n \"next\": \"/endpoint?limit=10&offset=60\",\n \"previous\": \"/endpoint?limit=10&offset=40\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e04f8404-6e3b-4938-b219-ff0f9d116b11", + "id": "d64a616e-9e35-4ac7-855a-2fbc722830b5", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -16098,7 +16098,7 @@ "_postman_previewlanguage": "json" }, { - "id": "01680beb-e735-4c86-8376-751250595865", + "id": "76ec4e08-99f3-4271-b741-3d4cef00888d", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -16193,7 +16193,7 @@ } }, { - "id": "9fca1216-8648-4ced-9778-1d3cacbdcfa2", + "id": "b7024522-e777-483e-b6e2-63a93b551367", "name": "Find risk level data by id", "request": { "name": "Find risk level data by id", @@ -16235,7 +16235,7 @@ }, "response": [ { - "id": "6409d7be-3dee-4e77-907c-724d338410f7", + "id": "3e8e17e7-f015-4978-9c54-6d90da03e065", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -16274,12 +16274,12 @@ "value": "application/json" } ], - "body": "{\n \"risk_level\": {\n \"id\": \"urn:uuid:19af2d7a-0727-9833-f278-841308590c04\",\n \"uid\": \"et anim pariatur qui dolorealiqu\",\n \"label\": \"ut sint velit do\",\n \"points\": 46798260.07,\n \"order\": 68564934\n }\n}", + "body": "{\n \"risk_level\": {\n \"id\": \"7a8d220a-995d-a675-deb3-88b2d27b955d\",\n \"uid\": \"ut cupidatat velit quis dolorees\",\n \"label\": \"nostrud in\",\n \"points\": 113215802.65,\n \"order\": 3357355\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "511e3d5c-c0d1-4e03-9c91-b33f224e9902", + "id": "32ca0804-2e2b-4acf-b1ae-97a1f195bfb3", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -16323,7 +16323,7 @@ "_postman_previewlanguage": "json" }, { - "id": "53c964b0-763d-4d09-b3ca-50db460e75d6", + "id": "27e1b388-aa6f-4e24-a336-9cce01b27daf", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -16379,7 +16379,7 @@ "description": "", "item": [ { - "id": "8d3e4daa-690b-4149-b41e-c87fbfbb5dd1", + "id": "3f904ccb-42b1-49f2-97c6-b1ad5b7f620f", "name": "Create a user-profile contributor relationship", "request": { "name": "Create a user-profile contributor relationship", @@ -16410,7 +16410,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"user_profile\": {\n \"user_id\": \"urn:uuid:78415896-5067-3c8c-3173-cc5b749390c0\",\n \"profile_id\": \"a67abe6f-be7a-f1dd-85a0-d66bc33122e8\",\n \"ne_attribute_id\": \"urn:uuid:5940f1dc-3830-aebb-3714-4acb7ad14abd\",\n \"relationship_type\": \"owner\"\n }\n}", + "raw": "{\n \"user_profile\": {\n \"user_id\": \"urn:uuid:537dd91d-a720-7136-b065-dbac9becceba\",\n \"profile_id\": \"376fc17e-bcec-b09a-1e91-df88577b9710\",\n \"ne_attribute_id\": \"eb006717-c2d6-6b30-4101-cab7716345e9\",\n \"relationship_type\": \"owner\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -16422,7 +16422,7 @@ }, "response": [ { - "id": "d9e5175d-b223-4d7e-b267-a3931f3567e7", + "id": "e57fc08a-fa93-4bb9-8ff4-dd0cce597261", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -16456,7 +16456,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"user_profile\": {\n \"user_id\": \"urn:uuid:78415896-5067-3c8c-3173-cc5b749390c0\",\n \"profile_id\": \"a67abe6f-be7a-f1dd-85a0-d66bc33122e8\",\n \"ne_attribute_id\": \"urn:uuid:5940f1dc-3830-aebb-3714-4acb7ad14abd\",\n \"relationship_type\": \"owner\"\n }\n}", + "raw": "{\n \"user_profile\": {\n \"user_id\": \"urn:uuid:537dd91d-a720-7136-b065-dbac9becceba\",\n \"profile_id\": \"376fc17e-bcec-b09a-1e91-df88577b9710\",\n \"ne_attribute_id\": \"eb006717-c2d6-6b30-4101-cab7716345e9\",\n \"relationship_type\": \"owner\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -16473,12 +16473,12 @@ "value": "application/json" } ], - "body": "{\n \"user_profile\": {\n \"id\": \"urn:uuid:d2965c02-8391-dc97-f28e-fdd2f78974f1\",\n \"uid\": \"nostrud adipisicing eiusmod situ\",\n \"user_id\": \"dd212690-34b2-1223-3165-913ff7e4bd54\",\n \"profile_id\": \"urn:uuid:d61a4048-5bb9-f924-b8f8-a0d11012daf6\",\n \"ne_attribute_id\": \"326f5cf2-dcb0-bafd-fade-85b893bf284b\",\n \"relationship_type\": \"contributor\"\n }\n}", + "body": "{\n \"user_profile\": {\n \"id\": \"urn:uuid:5c8a15f8-ca86-06c1-ff94-bcdcda3e0876\",\n \"uid\": \"in deserunt Excepteur dolorin es\",\n \"user_id\": \"urn:uuid:3abbab12-6eb7-03ee-9902-1de959a47550\",\n \"profile_id\": \"d9df0397-19ba-7c72-e662-bf1263f128cd\",\n \"ne_attribute_id\": \"urn:uuid:0bc90ff8-9a61-b20b-53f6-d8211672a66d\",\n \"relationship_type\": \"owner\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "fc062469-7a13-4271-beef-99f50d5cd921", + "id": "8040f9cd-daf6-4b34-a316-df1529d19d34", "name": "Invalid input", "originalRequest": { "url": { @@ -16508,7 +16508,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"user_profile\": {\n \"user_id\": \"urn:uuid:78415896-5067-3c8c-3173-cc5b749390c0\",\n \"profile_id\": \"a67abe6f-be7a-f1dd-85a0-d66bc33122e8\",\n \"ne_attribute_id\": \"urn:uuid:5940f1dc-3830-aebb-3714-4acb7ad14abd\",\n \"relationship_type\": \"owner\"\n }\n}", + "raw": "{\n \"user_profile\": {\n \"user_id\": \"urn:uuid:537dd91d-a720-7136-b065-dbac9becceba\",\n \"profile_id\": \"376fc17e-bcec-b09a-1e91-df88577b9710\",\n \"ne_attribute_id\": \"eb006717-c2d6-6b30-4101-cab7716345e9\",\n \"relationship_type\": \"owner\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -16530,7 +16530,7 @@ } }, { - "id": "a36568e0-3f55-499a-9604-507f42ba8486", + "id": "60c5129c-ec82-4c6a-b9c4-024b70be7251", "name": "Get user-profile contributor relationships", "request": { "name": "Get user-profile contributor relationships", @@ -16633,7 +16633,7 @@ }, "response": [ { - "id": "85045f5e-e04a-4e14-a36f-65424daa4795", + "id": "86acc9de-d056-4a86-bc4a-18845126697a", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -16744,12 +16744,12 @@ "value": "application/json" } ], - "body": "{\n \"user_profiles\": [\n {\n \"id\": \"urn:uuid:52d63405-6fc5-6b73-3bef-71b6ef787cb7\",\n \"uid\": \"culpa consectetur exdolor conseq\",\n \"user_id\": \"fe3c4c63-aa48-2b39-945f-002a0a342de4\",\n \"profile_id\": \"urn:uuid:3ece1f4b-1649-ab13-820b-2d3e5d406f23\",\n \"ne_attribute_id\": \"urn:uuid:18415ec9-c5c3-11a8-609d-58f05740e2c4\",\n \"relationship_type\": \"owner\"\n },\n {\n \"id\": \"9e3a06c9-59d2-0d03-d41a-ae3b5d6aeda0\",\n \"uid\": \"Ut aliqua et quisUt aute culpafu\",\n \"user_id\": \"urn:uuid:cbf9318f-5e0f-67db-89d7-cfb844a14727\",\n \"profile_id\": \"7c075dfb-0072-cdfd-2df5-55b8515a24f8\",\n \"ne_attribute_id\": \"893e88d3-284e-a4a3-0a47-5a25e76e1b94\",\n \"relationship_type\": \"owner\"\n }\n ],\n \"_metadata\": {\n \"limit\": 55965800,\n \"offset\": -96656318,\n \"total\": -96274358,\n \"next\": \"/endpoint?limit=10&offset=60\",\n \"previous\": \"/endpoint?limit=10&offset=40\"\n }\n}", + "body": "{\n \"user_profiles\": [\n {\n \"id\": \"e039f7f8-12ee-2f7a-7f1b-8815104cfb90\",\n \"uid\": \"do irure incididunt quis nisiqui\",\n \"user_id\": \"dc6a7d6a-57bf-33c4-d557-1ca2e6e4a8a8\",\n \"profile_id\": \"urn:uuid:ca4c3760-36de-4e1b-6eec-3716a5973cec\",\n \"ne_attribute_id\": \"93721a3e-ea4a-752b-8d02-7979777e724e\",\n \"relationship_type\": \"owner\"\n },\n {\n \"id\": \"c73a0831-e478-dabd-c26d-6ce00c790d9e\",\n \"uid\": \"sint pariatursint ut consequat c\",\n \"user_id\": \"e21e74b5-f034-480f-6895-932fad503b02\",\n \"profile_id\": \"12dd7435-0094-ba95-7046-4e13cffe34c4\",\n \"ne_attribute_id\": \"898db3b8-41fc-2bff-3887-708383ac5f4a\",\n \"relationship_type\": \"owner\"\n }\n ],\n \"_metadata\": {\n \"limit\": -245303,\n \"offset\": 71139942,\n \"total\": 97347116,\n \"next\": \"/endpoint?limit=10&offset=60\",\n \"previous\": \"/endpoint?limit=10&offset=40\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "67a5afd5-d297-4a36-8e6c-2321d01553dc", + "id": "97011e7c-edef-4db1-925c-5f9666ef75d1", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -16865,7 +16865,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4747a7f5-74e2-4ba0-8dc1-113f44d54d67", + "id": "9106e3c9-17cf-4eae-8c6f-34bf4d95ca92", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -16987,7 +16987,7 @@ } }, { - "id": "41c05738-64da-40fc-80d1-ac33f1e9e022", + "id": "9030e62b-022a-44c1-ad32-92a90c470112", "name": "Create multiple user-profile contributor relationships", "request": { "name": "Create multiple user-profile contributor relationships", @@ -17018,7 +17018,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"user_profiles\": [\n {\n \"user_id\": \"urn:uuid:7c235279-b339-a382-79c8-bf2be9da7a43\",\n \"profile_id\": \"d29233c4-df74-1274-3d94-33472174f43d\",\n \"ne_attribute_id\": \"faafc6f3-5111-9e77-476c-38d3b92a2949\",\n \"relationship_type\": \"contributor\"\n },\n {\n \"user_id\": \"4e341ff8-3991-5e18-0b21-423bd4681879\",\n \"profile_id\": \"12bbe16a-4056-640f-1f32-7e9166cd6d13\",\n \"ne_attribute_id\": \"urn:uuid:772630ce-00ee-e187-3c70-41ef66b42939\",\n \"relationship_type\": \"owner\"\n }\n ]\n}", + "raw": "{\n \"user_profiles\": [\n {\n \"user_id\": \"7cc7454c-b6a1-7852-ec1e-bbe8f934c988\",\n \"profile_id\": \"urn:uuid:5056fe05-46c4-1784-2836-1b9801a56b88\",\n \"ne_attribute_id\": \"d20f0d9a-6ed8-6af0-c711-8c6855651fed\",\n \"relationship_type\": \"owner\"\n },\n {\n \"user_id\": \"urn:uuid:2607015a-8dec-9169-8b83-7e7b0c6f905f\",\n \"profile_id\": \"3b80dcca-69b4-292f-f116-4b68d5525ae1\",\n \"ne_attribute_id\": \"urn:uuid:6e69e2b6-8f1f-45fb-d1e7-21d138ac206e\",\n \"relationship_type\": \"contributor\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -17030,7 +17030,7 @@ }, "response": [ { - "id": "5827bc55-38a6-4157-af6f-c87a0101a615", + "id": "977f35a4-ba4d-47e3-b9da-0da6ad402352", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -17064,7 +17064,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"user_profiles\": [\n {\n \"user_id\": \"urn:uuid:7c235279-b339-a382-79c8-bf2be9da7a43\",\n \"profile_id\": \"d29233c4-df74-1274-3d94-33472174f43d\",\n \"ne_attribute_id\": \"faafc6f3-5111-9e77-476c-38d3b92a2949\",\n \"relationship_type\": \"contributor\"\n },\n {\n \"user_id\": \"4e341ff8-3991-5e18-0b21-423bd4681879\",\n \"profile_id\": \"12bbe16a-4056-640f-1f32-7e9166cd6d13\",\n \"ne_attribute_id\": \"urn:uuid:772630ce-00ee-e187-3c70-41ef66b42939\",\n \"relationship_type\": \"owner\"\n }\n ]\n}", + "raw": "{\n \"user_profiles\": [\n {\n \"user_id\": \"7cc7454c-b6a1-7852-ec1e-bbe8f934c988\",\n \"profile_id\": \"urn:uuid:5056fe05-46c4-1784-2836-1b9801a56b88\",\n \"ne_attribute_id\": \"d20f0d9a-6ed8-6af0-c711-8c6855651fed\",\n \"relationship_type\": \"owner\"\n },\n {\n \"user_id\": \"urn:uuid:2607015a-8dec-9169-8b83-7e7b0c6f905f\",\n \"profile_id\": \"3b80dcca-69b4-292f-f116-4b68d5525ae1\",\n \"ne_attribute_id\": \"urn:uuid:6e69e2b6-8f1f-45fb-d1e7-21d138ac206e\",\n \"relationship_type\": \"contributor\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -17081,12 +17081,12 @@ "value": "application/json" } ], - "body": "{\n \"user_profiles\": [\n {\n \"id\": \"b57c37f2-a145-9261-dd4d-65c7ae2ab865\",\n \"uid\": \"laborum utirure officiaofficia i\",\n \"user_id\": \"5e37853e-60fa-7995-f4dc-333be774a3ff\",\n \"profile_id\": \"urn:uuid:427b9c30-e5be-6785-20b3-9c860d05506a\",\n \"ne_attribute_id\": \"urn:uuid:ce191096-4a96-6f8c-ad86-b61d29aa3652\",\n \"relationship_type\": \"owner\"\n },\n {\n \"id\": \"urn:uuid:635de313-d9f1-67fb-6039-32f5386359ef\",\n \"uid\": \"ea sedtemporoccaecat non reprehe\",\n \"user_id\": \"1a8082ab-ea39-ef1f-ad2a-40e4c10d3f6f\",\n \"profile_id\": \"9a5e3182-f022-0f5d-21cd-ea14ee7d6dd0\",\n \"ne_attribute_id\": \"urn:uuid:c2d1de1e-5600-381f-5aa5-05271f0b57d6\",\n \"relationship_type\": \"contributor\"\n }\n ]\n}", + "body": "{\n \"user_profiles\": [\n {\n \"id\": \"742dbb4c-5f2f-9600-5e02-e733aa8f75db\",\n \"uid\": \"ut eu dolore culpareprehenderit \",\n \"user_id\": \"e6b6f266-8905-4efc-d477-2b1d596600fc\",\n \"profile_id\": \"urn:uuid:131fbc68-3bdf-816f-c624-11832bc46e26\",\n \"ne_attribute_id\": \"4d9ad6d1-a4c3-5066-0dc9-21ede814be57\",\n \"relationship_type\": \"owner\"\n },\n {\n \"id\": \"urn:uuid:53db6361-7d10-867e-2479-2b6ea8080ac2\",\n \"uid\": \"exercitation ad ullamcoUt Except\",\n \"user_id\": \"urn:uuid:c4cd6aab-d4f5-0edd-2f42-b53e2fd80370\",\n \"profile_id\": \"4c00fbf0-c147-d6a4-98c6-3ff94224d597\",\n \"ne_attribute_id\": \"c012284f-97da-8d2c-3753-c1802b411379\",\n \"relationship_type\": \"contributor\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "5fdc3b8e-3a18-4f6e-9a68-3a1d3096e302", + "id": "cf32bb5b-23e1-437f-b7c3-154fadb75b43", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -17120,7 +17120,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"user_profiles\": [\n {\n \"user_id\": \"urn:uuid:7c235279-b339-a382-79c8-bf2be9da7a43\",\n \"profile_id\": \"d29233c4-df74-1274-3d94-33472174f43d\",\n \"ne_attribute_id\": \"faafc6f3-5111-9e77-476c-38d3b92a2949\",\n \"relationship_type\": \"contributor\"\n },\n {\n \"user_id\": \"4e341ff8-3991-5e18-0b21-423bd4681879\",\n \"profile_id\": \"12bbe16a-4056-640f-1f32-7e9166cd6d13\",\n \"ne_attribute_id\": \"urn:uuid:772630ce-00ee-e187-3c70-41ef66b42939\",\n \"relationship_type\": \"owner\"\n }\n ]\n}", + "raw": "{\n \"user_profiles\": [\n {\n \"user_id\": \"7cc7454c-b6a1-7852-ec1e-bbe8f934c988\",\n \"profile_id\": \"urn:uuid:5056fe05-46c4-1784-2836-1b9801a56b88\",\n \"ne_attribute_id\": \"d20f0d9a-6ed8-6af0-c711-8c6855651fed\",\n \"relationship_type\": \"owner\"\n },\n {\n \"user_id\": \"urn:uuid:2607015a-8dec-9169-8b83-7e7b0c6f905f\",\n \"profile_id\": \"3b80dcca-69b4-292f-f116-4b68d5525ae1\",\n \"ne_attribute_id\": \"urn:uuid:6e69e2b6-8f1f-45fb-d1e7-21d138ac206e\",\n \"relationship_type\": \"contributor\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -17142,7 +17142,7 @@ "_postman_previewlanguage": "json" }, { - "id": "43e70907-fd43-4a51-b50f-a94ad0f7e7f1", + "id": "64fd3e21-e45d-4b0d-aac8-c7922757df7d", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -17176,7 +17176,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"user_profiles\": [\n {\n \"user_id\": \"urn:uuid:7c235279-b339-a382-79c8-bf2be9da7a43\",\n \"profile_id\": \"d29233c4-df74-1274-3d94-33472174f43d\",\n \"ne_attribute_id\": \"faafc6f3-5111-9e77-476c-38d3b92a2949\",\n \"relationship_type\": \"contributor\"\n },\n {\n \"user_id\": \"4e341ff8-3991-5e18-0b21-423bd4681879\",\n \"profile_id\": \"12bbe16a-4056-640f-1f32-7e9166cd6d13\",\n \"ne_attribute_id\": \"urn:uuid:772630ce-00ee-e187-3c70-41ef66b42939\",\n \"relationship_type\": \"owner\"\n }\n ]\n}", + "raw": "{\n \"user_profiles\": [\n {\n \"user_id\": \"7cc7454c-b6a1-7852-ec1e-bbe8f934c988\",\n \"profile_id\": \"urn:uuid:5056fe05-46c4-1784-2836-1b9801a56b88\",\n \"ne_attribute_id\": \"d20f0d9a-6ed8-6af0-c711-8c6855651fed\",\n \"relationship_type\": \"owner\"\n },\n {\n \"user_id\": \"urn:uuid:2607015a-8dec-9169-8b83-7e7b0c6f905f\",\n \"profile_id\": \"3b80dcca-69b4-292f-f116-4b68d5525ae1\",\n \"ne_attribute_id\": \"urn:uuid:6e69e2b6-8f1f-45fb-d1e7-21d138ac206e\",\n \"relationship_type\": \"contributor\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -17204,7 +17204,7 @@ } }, { - "id": "f2129461-2732-4666-8ddb-0da1fd4d8d58", + "id": "7d0b365e-43b7-40c0-92fa-67a81774d4e7", "name": "Update multiple user-profile contributor relationships", "request": { "name": "Update multiple user-profile contributor relationships", @@ -17235,7 +17235,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"user_profiles\": [\n {\n \"id\": \"urn:uuid:f1498763-220d-a39f-589f-6041a87db79f\",\n \"user_id\": \"916678d0-fad9-8e34-63a8-e30941aa8722\",\n \"profile_id\": \"13878f0e-fadf-5edc-9f1e-cb33dc84d083\",\n \"ne_attribute_id\": \"64a7b169-54ca-54a9-fe8b-d46802e316d4\",\n \"relationship_type\": \"owner\"\n },\n {\n \"id\": \"5f6b0b53-396d-35ee-5525-a64691ff67b0\",\n \"user_id\": \"urn:uuid:45eb378d-4b98-4f0f-4d66-14cf35334bb6\",\n \"profile_id\": \"urn:uuid:fc4fb7f8-bc5b-4cd5-4d8d-486bb23d3e8a\",\n \"ne_attribute_id\": \"urn:uuid:91067074-fc70-41a2-0603-351a34c4bfdb\",\n \"relationship_type\": \"owner\"\n }\n ]\n}", + "raw": "{\n \"user_profiles\": [\n {\n \"id\": \"8a9482dc-d878-e9fa-b645-7b5129a4d147\",\n \"user_id\": \"5fcb115c-34e5-615a-8ffa-b29d7b405bca\",\n \"profile_id\": \"urn:uuid:de263912-11af-0cc4-91df-6a682a853333\",\n \"ne_attribute_id\": \"urn:uuid:c23a64eb-2e55-ad2a-7aa4-4a98d1dd7dcf\",\n \"relationship_type\": \"owner\"\n },\n {\n \"id\": \"urn:uuid:7f0710e8-8fcd-ed04-a9ed-d8aac597af8b\",\n \"user_id\": \"05424f78-de44-bada-4e7b-105d8a16662a\",\n \"profile_id\": \"urn:uuid:d272abac-b2d2-cfb3-b90d-046fa4fab5ca\",\n \"ne_attribute_id\": \"bda4f6bf-2966-d8f5-b4bf-5e34ce48179b\",\n \"relationship_type\": \"contributor\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -17247,7 +17247,7 @@ }, "response": [ { - "id": "5e14b4df-b32f-4c07-be36-56062f52ddbd", + "id": "e73c3b48-1e7f-4a26-b976-c42dbd921eeb", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -17281,7 +17281,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"user_profiles\": [\n {\n \"id\": \"urn:uuid:f1498763-220d-a39f-589f-6041a87db79f\",\n \"user_id\": \"916678d0-fad9-8e34-63a8-e30941aa8722\",\n \"profile_id\": \"13878f0e-fadf-5edc-9f1e-cb33dc84d083\",\n \"ne_attribute_id\": \"64a7b169-54ca-54a9-fe8b-d46802e316d4\",\n \"relationship_type\": \"owner\"\n },\n {\n \"id\": \"5f6b0b53-396d-35ee-5525-a64691ff67b0\",\n \"user_id\": \"urn:uuid:45eb378d-4b98-4f0f-4d66-14cf35334bb6\",\n \"profile_id\": \"urn:uuid:fc4fb7f8-bc5b-4cd5-4d8d-486bb23d3e8a\",\n \"ne_attribute_id\": \"urn:uuid:91067074-fc70-41a2-0603-351a34c4bfdb\",\n \"relationship_type\": \"owner\"\n }\n ]\n}", + "raw": "{\n \"user_profiles\": [\n {\n \"id\": \"8a9482dc-d878-e9fa-b645-7b5129a4d147\",\n \"user_id\": \"5fcb115c-34e5-615a-8ffa-b29d7b405bca\",\n \"profile_id\": \"urn:uuid:de263912-11af-0cc4-91df-6a682a853333\",\n \"ne_attribute_id\": \"urn:uuid:c23a64eb-2e55-ad2a-7aa4-4a98d1dd7dcf\",\n \"relationship_type\": \"owner\"\n },\n {\n \"id\": \"urn:uuid:7f0710e8-8fcd-ed04-a9ed-d8aac597af8b\",\n \"user_id\": \"05424f78-de44-bada-4e7b-105d8a16662a\",\n \"profile_id\": \"urn:uuid:d272abac-b2d2-cfb3-b90d-046fa4fab5ca\",\n \"ne_attribute_id\": \"bda4f6bf-2966-d8f5-b4bf-5e34ce48179b\",\n \"relationship_type\": \"contributor\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -17298,12 +17298,12 @@ "value": "application/json" } ], - "body": "{\n \"user_profiles\": [\n {\n \"id\": \"b57c37f2-a145-9261-dd4d-65c7ae2ab865\",\n \"uid\": \"laborum utirure officiaofficia i\",\n \"user_id\": \"5e37853e-60fa-7995-f4dc-333be774a3ff\",\n \"profile_id\": \"urn:uuid:427b9c30-e5be-6785-20b3-9c860d05506a\",\n \"ne_attribute_id\": \"urn:uuid:ce191096-4a96-6f8c-ad86-b61d29aa3652\",\n \"relationship_type\": \"owner\"\n },\n {\n \"id\": \"urn:uuid:635de313-d9f1-67fb-6039-32f5386359ef\",\n \"uid\": \"ea sedtemporoccaecat non reprehe\",\n \"user_id\": \"1a8082ab-ea39-ef1f-ad2a-40e4c10d3f6f\",\n \"profile_id\": \"9a5e3182-f022-0f5d-21cd-ea14ee7d6dd0\",\n \"ne_attribute_id\": \"urn:uuid:c2d1de1e-5600-381f-5aa5-05271f0b57d6\",\n \"relationship_type\": \"contributor\"\n }\n ]\n}", + "body": "{\n \"user_profiles\": [\n {\n \"id\": \"742dbb4c-5f2f-9600-5e02-e733aa8f75db\",\n \"uid\": \"ut eu dolore culpareprehenderit \",\n \"user_id\": \"e6b6f266-8905-4efc-d477-2b1d596600fc\",\n \"profile_id\": \"urn:uuid:131fbc68-3bdf-816f-c624-11832bc46e26\",\n \"ne_attribute_id\": \"4d9ad6d1-a4c3-5066-0dc9-21ede814be57\",\n \"relationship_type\": \"owner\"\n },\n {\n \"id\": \"urn:uuid:53db6361-7d10-867e-2479-2b6ea8080ac2\",\n \"uid\": \"exercitation ad ullamcoUt Except\",\n \"user_id\": \"urn:uuid:c4cd6aab-d4f5-0edd-2f42-b53e2fd80370\",\n \"profile_id\": \"4c00fbf0-c147-d6a4-98c6-3ff94224d597\",\n \"ne_attribute_id\": \"c012284f-97da-8d2c-3753-c1802b411379\",\n \"relationship_type\": \"contributor\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c8971637-6e5e-4e39-9d28-86a95269d845", + "id": "cea3be65-e25e-496d-b2b7-4b224b0d4a1a", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -17337,7 +17337,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"user_profiles\": [\n {\n \"id\": \"urn:uuid:f1498763-220d-a39f-589f-6041a87db79f\",\n \"user_id\": \"916678d0-fad9-8e34-63a8-e30941aa8722\",\n \"profile_id\": \"13878f0e-fadf-5edc-9f1e-cb33dc84d083\",\n \"ne_attribute_id\": \"64a7b169-54ca-54a9-fe8b-d46802e316d4\",\n \"relationship_type\": \"owner\"\n },\n {\n \"id\": \"5f6b0b53-396d-35ee-5525-a64691ff67b0\",\n \"user_id\": \"urn:uuid:45eb378d-4b98-4f0f-4d66-14cf35334bb6\",\n \"profile_id\": \"urn:uuid:fc4fb7f8-bc5b-4cd5-4d8d-486bb23d3e8a\",\n \"ne_attribute_id\": \"urn:uuid:91067074-fc70-41a2-0603-351a34c4bfdb\",\n \"relationship_type\": \"owner\"\n }\n ]\n}", + "raw": "{\n \"user_profiles\": [\n {\n \"id\": \"8a9482dc-d878-e9fa-b645-7b5129a4d147\",\n \"user_id\": \"5fcb115c-34e5-615a-8ffa-b29d7b405bca\",\n \"profile_id\": \"urn:uuid:de263912-11af-0cc4-91df-6a682a853333\",\n \"ne_attribute_id\": \"urn:uuid:c23a64eb-2e55-ad2a-7aa4-4a98d1dd7dcf\",\n \"relationship_type\": \"owner\"\n },\n {\n \"id\": \"urn:uuid:7f0710e8-8fcd-ed04-a9ed-d8aac597af8b\",\n \"user_id\": \"05424f78-de44-bada-4e7b-105d8a16662a\",\n \"profile_id\": \"urn:uuid:d272abac-b2d2-cfb3-b90d-046fa4fab5ca\",\n \"ne_attribute_id\": \"bda4f6bf-2966-d8f5-b4bf-5e34ce48179b\",\n \"relationship_type\": \"contributor\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -17359,7 +17359,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c4d6e33a-4f81-4099-8b03-316e7bcba961", + "id": "46dc937a-68a8-412d-8933-5d572881368b", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -17393,7 +17393,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"user_profiles\": [\n {\n \"id\": \"urn:uuid:f1498763-220d-a39f-589f-6041a87db79f\",\n \"user_id\": \"916678d0-fad9-8e34-63a8-e30941aa8722\",\n \"profile_id\": \"13878f0e-fadf-5edc-9f1e-cb33dc84d083\",\n \"ne_attribute_id\": \"64a7b169-54ca-54a9-fe8b-d46802e316d4\",\n \"relationship_type\": \"owner\"\n },\n {\n \"id\": \"5f6b0b53-396d-35ee-5525-a64691ff67b0\",\n \"user_id\": \"urn:uuid:45eb378d-4b98-4f0f-4d66-14cf35334bb6\",\n \"profile_id\": \"urn:uuid:fc4fb7f8-bc5b-4cd5-4d8d-486bb23d3e8a\",\n \"ne_attribute_id\": \"urn:uuid:91067074-fc70-41a2-0603-351a34c4bfdb\",\n \"relationship_type\": \"owner\"\n }\n ]\n}", + "raw": "{\n \"user_profiles\": [\n {\n \"id\": \"8a9482dc-d878-e9fa-b645-7b5129a4d147\",\n \"user_id\": \"5fcb115c-34e5-615a-8ffa-b29d7b405bca\",\n \"profile_id\": \"urn:uuid:de263912-11af-0cc4-91df-6a682a853333\",\n \"ne_attribute_id\": \"urn:uuid:c23a64eb-2e55-ad2a-7aa4-4a98d1dd7dcf\",\n \"relationship_type\": \"owner\"\n },\n {\n \"id\": \"urn:uuid:7f0710e8-8fcd-ed04-a9ed-d8aac597af8b\",\n \"user_id\": \"05424f78-de44-bada-4e7b-105d8a16662a\",\n \"profile_id\": \"urn:uuid:d272abac-b2d2-cfb3-b90d-046fa4fab5ca\",\n \"ne_attribute_id\": \"bda4f6bf-2966-d8f5-b4bf-5e34ce48179b\",\n \"relationship_type\": \"contributor\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -17421,7 +17421,7 @@ } }, { - "id": "0b73d6c9-f8a5-4b7c-a51e-860bd9ab5d7b", + "id": "055f6143-fb9d-4004-b7df-83f815e92a95", "name": "Delete multiple user-profile contributor relationships", "request": { "name": "Delete multiple user-profile contributor relationships", @@ -17452,7 +17452,7 @@ "method": "DELETE", "body": { "mode": "raw", - "raw": "{\n \"user_profiles\": [\n {\n \"id\": \"urn:uuid:478840eb-a46e-0f0d-4007-f3185b5be7d2\"\n },\n {\n \"id\": \"urn:uuid:09e3b7db-68c1-c2a8-8d47-59a00f7ce731\"\n }\n ]\n}", + "raw": "{\n \"user_profiles\": [\n {\n \"id\": \"urn:uuid:a246b82d-c810-c6d8-cb3e-0111dc39387e\"\n },\n {\n \"id\": \"113ba121-970f-e1e5-e480-a0d56eab2988\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -17464,7 +17464,7 @@ }, "response": [ { - "id": "92d1864c-b147-4a66-ade1-86ac0705dcfe", + "id": "6a41ed5a-4d44-4ec9-9df6-3fc9d48b34d2", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -17498,7 +17498,7 @@ "method": "DELETE", "body": { "mode": "raw", - "raw": "{\n \"user_profiles\": [\n {\n \"id\": \"urn:uuid:478840eb-a46e-0f0d-4007-f3185b5be7d2\"\n },\n {\n \"id\": \"urn:uuid:09e3b7db-68c1-c2a8-8d47-59a00f7ce731\"\n }\n ]\n}", + "raw": "{\n \"user_profiles\": [\n {\n \"id\": \"urn:uuid:a246b82d-c810-c6d8-cb3e-0111dc39387e\"\n },\n {\n \"id\": \"113ba121-970f-e1e5-e480-a0d56eab2988\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -17515,12 +17515,12 @@ "value": "application/json" } ], - "body": "{\n \"user_profiles\": [\n {\n \"id\": \"b57c37f2-a145-9261-dd4d-65c7ae2ab865\",\n \"uid\": \"laborum utirure officiaofficia i\",\n \"user_id\": \"5e37853e-60fa-7995-f4dc-333be774a3ff\",\n \"profile_id\": \"urn:uuid:427b9c30-e5be-6785-20b3-9c860d05506a\",\n \"ne_attribute_id\": \"urn:uuid:ce191096-4a96-6f8c-ad86-b61d29aa3652\",\n \"relationship_type\": \"owner\"\n },\n {\n \"id\": \"urn:uuid:635de313-d9f1-67fb-6039-32f5386359ef\",\n \"uid\": \"ea sedtemporoccaecat non reprehe\",\n \"user_id\": \"1a8082ab-ea39-ef1f-ad2a-40e4c10d3f6f\",\n \"profile_id\": \"9a5e3182-f022-0f5d-21cd-ea14ee7d6dd0\",\n \"ne_attribute_id\": \"urn:uuid:c2d1de1e-5600-381f-5aa5-05271f0b57d6\",\n \"relationship_type\": \"contributor\"\n }\n ]\n}", + "body": "{\n \"user_profiles\": [\n {\n \"id\": \"742dbb4c-5f2f-9600-5e02-e733aa8f75db\",\n \"uid\": \"ut eu dolore culpareprehenderit \",\n \"user_id\": \"e6b6f266-8905-4efc-d477-2b1d596600fc\",\n \"profile_id\": \"urn:uuid:131fbc68-3bdf-816f-c624-11832bc46e26\",\n \"ne_attribute_id\": \"4d9ad6d1-a4c3-5066-0dc9-21ede814be57\",\n \"relationship_type\": \"owner\"\n },\n {\n \"id\": \"urn:uuid:53db6361-7d10-867e-2479-2b6ea8080ac2\",\n \"uid\": \"exercitation ad ullamcoUt Except\",\n \"user_id\": \"urn:uuid:c4cd6aab-d4f5-0edd-2f42-b53e2fd80370\",\n \"profile_id\": \"4c00fbf0-c147-d6a4-98c6-3ff94224d597\",\n \"ne_attribute_id\": \"c012284f-97da-8d2c-3753-c1802b411379\",\n \"relationship_type\": \"contributor\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d3868719-fb64-4924-8df7-6f1f077af69a", + "id": "f95e20ba-8501-4e3c-bd5f-a3eaf457bb21", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -17554,7 +17554,7 @@ "method": "DELETE", "body": { "mode": "raw", - "raw": "{\n \"user_profiles\": [\n {\n \"id\": \"urn:uuid:478840eb-a46e-0f0d-4007-f3185b5be7d2\"\n },\n {\n \"id\": \"urn:uuid:09e3b7db-68c1-c2a8-8d47-59a00f7ce731\"\n }\n ]\n}", + "raw": "{\n \"user_profiles\": [\n {\n \"id\": \"urn:uuid:a246b82d-c810-c6d8-cb3e-0111dc39387e\"\n },\n {\n \"id\": \"113ba121-970f-e1e5-e480-a0d56eab2988\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -17576,7 +17576,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9ebbc5e0-63a2-4aae-8033-7c1d9732063e", + "id": "ab990293-38d4-47f8-8f43-05c2af945cc2", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -17610,7 +17610,7 @@ "method": "DELETE", "body": { "mode": "raw", - "raw": "{\n \"user_profiles\": [\n {\n \"id\": \"urn:uuid:478840eb-a46e-0f0d-4007-f3185b5be7d2\"\n },\n {\n \"id\": \"urn:uuid:09e3b7db-68c1-c2a8-8d47-59a00f7ce731\"\n }\n ]\n}", + "raw": "{\n \"user_profiles\": [\n {\n \"id\": \"urn:uuid:a246b82d-c810-c6d8-cb3e-0111dc39387e\"\n },\n {\n \"id\": \"113ba121-970f-e1e5-e480-a0d56eab2988\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -17638,7 +17638,7 @@ } }, { - "id": "b10e721b-0962-4630-a9da-bf3856ca97fe", + "id": "02d0404e-1b75-41b9-b318-732904359b05", "name": "Find user-profile contributor relationship by id", "request": { "name": "Find user-profile contributor relationship by id", @@ -17680,7 +17680,7 @@ }, "response": [ { - "id": "48303638-7ace-4e3f-a071-7a88619a4c0a", + "id": "ecd1c573-0b86-4ebe-a95c-bcc6c46d31db", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -17719,12 +17719,12 @@ "value": "application/json" } ], - "body": "{\n \"user_profile\": {\n \"id\": \"urn:uuid:d2965c02-8391-dc97-f28e-fdd2f78974f1\",\n \"uid\": \"nostrud adipisicing eiusmod situ\",\n \"user_id\": \"dd212690-34b2-1223-3165-913ff7e4bd54\",\n \"profile_id\": \"urn:uuid:d61a4048-5bb9-f924-b8f8-a0d11012daf6\",\n \"ne_attribute_id\": \"326f5cf2-dcb0-bafd-fade-85b893bf284b\",\n \"relationship_type\": \"contributor\"\n }\n}", + "body": "{\n \"user_profile\": {\n \"id\": \"urn:uuid:5c8a15f8-ca86-06c1-ff94-bcdcda3e0876\",\n \"uid\": \"in deserunt Excepteur dolorin es\",\n \"user_id\": \"urn:uuid:3abbab12-6eb7-03ee-9902-1de959a47550\",\n \"profile_id\": \"d9df0397-19ba-7c72-e662-bf1263f128cd\",\n \"ne_attribute_id\": \"urn:uuid:0bc90ff8-9a61-b20b-53f6-d8211672a66d\",\n \"relationship_type\": \"owner\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "7f96e623-fe16-479b-a9b9-26e77d020d74", + "id": "e8e89682-ee58-4425-8520-5cf2191a6986", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -17768,7 +17768,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b9aacc8f-e0b5-46b4-9963-3f1376076db7", + "id": "60618160-e264-4026-b5fe-2f12a153ff9d", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -17818,7 +17818,7 @@ } }, { - "id": "be785e32-64ec-421c-a750-5f537eae92d0", + "id": "6419a993-cee9-46c9-8223-fe76b31d6ee5", "name": "Update a user-profile contributor relationship by id", "request": { "name": "Update a user-profile contributor relationship by id", @@ -17861,7 +17861,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"user_profile\": {\n \"user_id\": \"urn:uuid:78415896-5067-3c8c-3173-cc5b749390c0\",\n \"profile_id\": \"a67abe6f-be7a-f1dd-85a0-d66bc33122e8\",\n \"ne_attribute_id\": \"urn:uuid:5940f1dc-3830-aebb-3714-4acb7ad14abd\",\n \"relationship_type\": \"owner\"\n }\n}", + "raw": "{\n \"user_profile\": {\n \"user_id\": \"urn:uuid:537dd91d-a720-7136-b065-dbac9becceba\",\n \"profile_id\": \"376fc17e-bcec-b09a-1e91-df88577b9710\",\n \"ne_attribute_id\": \"eb006717-c2d6-6b30-4101-cab7716345e9\",\n \"relationship_type\": \"owner\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -17873,7 +17873,7 @@ }, "response": [ { - "id": "ca86aea2-cb8e-4564-87ba-3c63de50a5ec", + "id": "e0da53c7-a139-4acc-90b9-dbb05ddd8636", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -17908,7 +17908,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"user_profile\": {\n \"user_id\": \"urn:uuid:78415896-5067-3c8c-3173-cc5b749390c0\",\n \"profile_id\": \"a67abe6f-be7a-f1dd-85a0-d66bc33122e8\",\n \"ne_attribute_id\": \"urn:uuid:5940f1dc-3830-aebb-3714-4acb7ad14abd\",\n \"relationship_type\": \"owner\"\n }\n}", + "raw": "{\n \"user_profile\": {\n \"user_id\": \"urn:uuid:537dd91d-a720-7136-b065-dbac9becceba\",\n \"profile_id\": \"376fc17e-bcec-b09a-1e91-df88577b9710\",\n \"ne_attribute_id\": \"eb006717-c2d6-6b30-4101-cab7716345e9\",\n \"relationship_type\": \"owner\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -17925,12 +17925,12 @@ "value": "application/json" } ], - "body": "{\n \"user_profile\": {\n \"id\": \"urn:uuid:d2965c02-8391-dc97-f28e-fdd2f78974f1\",\n \"uid\": \"nostrud adipisicing eiusmod situ\",\n \"user_id\": \"dd212690-34b2-1223-3165-913ff7e4bd54\",\n \"profile_id\": \"urn:uuid:d61a4048-5bb9-f924-b8f8-a0d11012daf6\",\n \"ne_attribute_id\": \"326f5cf2-dcb0-bafd-fade-85b893bf284b\",\n \"relationship_type\": \"contributor\"\n }\n}", + "body": "{\n \"user_profile\": {\n \"id\": \"urn:uuid:5c8a15f8-ca86-06c1-ff94-bcdcda3e0876\",\n \"uid\": \"in deserunt Excepteur dolorin es\",\n \"user_id\": \"urn:uuid:3abbab12-6eb7-03ee-9902-1de959a47550\",\n \"profile_id\": \"d9df0397-19ba-7c72-e662-bf1263f128cd\",\n \"ne_attribute_id\": \"urn:uuid:0bc90ff8-9a61-b20b-53f6-d8211672a66d\",\n \"relationship_type\": \"owner\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "95cbe634-b6be-41dc-8c10-974fb1ec9214", + "id": "699b692a-a451-4579-abb3-7622c19e284c", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -17965,7 +17965,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"user_profile\": {\n \"user_id\": \"urn:uuid:78415896-5067-3c8c-3173-cc5b749390c0\",\n \"profile_id\": \"a67abe6f-be7a-f1dd-85a0-d66bc33122e8\",\n \"ne_attribute_id\": \"urn:uuid:5940f1dc-3830-aebb-3714-4acb7ad14abd\",\n \"relationship_type\": \"owner\"\n }\n}", + "raw": "{\n \"user_profile\": {\n \"user_id\": \"urn:uuid:537dd91d-a720-7136-b065-dbac9becceba\",\n \"profile_id\": \"376fc17e-bcec-b09a-1e91-df88577b9710\",\n \"ne_attribute_id\": \"eb006717-c2d6-6b30-4101-cab7716345e9\",\n \"relationship_type\": \"owner\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -17987,7 +17987,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a39938d0-8278-429e-b247-a1b0d22f6837", + "id": "3f9f6286-4a34-4b79-b6ac-6374a73f2b2f", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -18022,7 +18022,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"user_profile\": {\n \"user_id\": \"urn:uuid:78415896-5067-3c8c-3173-cc5b749390c0\",\n \"profile_id\": \"a67abe6f-be7a-f1dd-85a0-d66bc33122e8\",\n \"ne_attribute_id\": \"urn:uuid:5940f1dc-3830-aebb-3714-4acb7ad14abd\",\n \"relationship_type\": \"owner\"\n }\n}", + "raw": "{\n \"user_profile\": {\n \"user_id\": \"urn:uuid:537dd91d-a720-7136-b065-dbac9becceba\",\n \"profile_id\": \"376fc17e-bcec-b09a-1e91-df88577b9710\",\n \"ne_attribute_id\": \"eb006717-c2d6-6b30-4101-cab7716345e9\",\n \"relationship_type\": \"owner\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -18050,7 +18050,7 @@ } }, { - "id": "9d72a55a-fccd-4465-92c1-041344f16fa5", + "id": "5712b0eb-2b21-47fd-bdc6-b6c9c45e9924", "name": "Delete a user profile assignment", "request": { "name": "Delete a user profile assignment", @@ -18092,7 +18092,7 @@ }, "response": [ { - "id": "e7f87bf4-72e9-416b-aeec-7b0d30cb5de4", + "id": "5b0a8d1f-4e2a-4902-9b79-04dd179ba9f6", "name": "User profile was destroyed", "originalRequest": { "url": { @@ -18136,7 +18136,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8afe7b25-ad9e-4f35-a0ca-fb25d3b40388", + "id": "17bb8fdb-cd26-4bab-8fd1-148becb3dbc3", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -18180,7 +18180,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7e58c619-02fe-4c81-8f42-bb504712f16e", + "id": "13063454-bd12-46c4-8ddc-25f42bdb4e19", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -18236,7 +18236,7 @@ "description": "", "item": [ { - "id": "c72af8d3-95d4-4cc8-a3f9-ac37008fc04c", + "id": "1cd3d2a4-23da-4e1f-9127-1c05ded01b30", "name": "Create a role-profile contributor relationship", "request": { "name": "Create a role-profile contributor relationship", @@ -18267,7 +18267,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"role_profile\": {\n \"role_id\": \"urn:uuid:a1566e34-4ff7-166f-df28-1ffb589ef32a\",\n \"profile_id\": \"a891052e-5dcf-e805-ad48-b385c09821d8\"\n }\n}", + "raw": "{\n \"role_profile\": {\n \"role_id\": \"urn:uuid:82f76a9d-4e6a-faf2-ee51-5af0d2a3e9d3\",\n \"profile_id\": \"4240ffc0-6422-c656-2170-65ff66f463ff\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -18279,7 +18279,7 @@ }, "response": [ { - "id": "c5e6e82e-a097-42f7-b0e5-e7d4d36ee292", + "id": "ebe5f800-5ce5-4a1a-893a-4a02e57af88d", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -18313,7 +18313,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"role_profile\": {\n \"role_id\": \"urn:uuid:a1566e34-4ff7-166f-df28-1ffb589ef32a\",\n \"profile_id\": \"a891052e-5dcf-e805-ad48-b385c09821d8\"\n }\n}", + "raw": "{\n \"role_profile\": {\n \"role_id\": \"urn:uuid:82f76a9d-4e6a-faf2-ee51-5af0d2a3e9d3\",\n \"profile_id\": \"4240ffc0-6422-c656-2170-65ff66f463ff\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -18330,12 +18330,12 @@ "value": "application/json" } ], - "body": "{\n \"role_profile\": {\n \"id\": \"461a6b3e-3419-15a9-4aea-d8f66e02be47\",\n \"uid\": \"sint nisiaute eiusmod commodo mi\",\n \"role_id\": \"682b38ad-a94e-2967-2905-41c03175c854\",\n \"profile_id\": \"urn:uuid:83b93000-5862-0950-972e-c913caac1d7e\"\n }\n}", + "body": "{\n \"role_profile\": {\n \"id\": \"urn:uuid:93d69fc1-eb4e-08ca-959d-8b871147cdf9\",\n \"uid\": \"fugiat ad sit utLorem labore cul\",\n \"role_id\": \"22d25254-61b4-2714-db45-18a3b4767b21\",\n \"profile_id\": \"adcb2cc2-b8e7-b5b2-1161-f1b3c7ed755a\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d4740579-99b6-4253-ab82-06200f57e449", + "id": "c01a933d-e251-4307-aab1-8f0ff3a099e8", "name": "Invalid input", "originalRequest": { "url": { @@ -18365,7 +18365,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"role_profile\": {\n \"role_id\": \"urn:uuid:a1566e34-4ff7-166f-df28-1ffb589ef32a\",\n \"profile_id\": \"a891052e-5dcf-e805-ad48-b385c09821d8\"\n }\n}", + "raw": "{\n \"role_profile\": {\n \"role_id\": \"urn:uuid:82f76a9d-4e6a-faf2-ee51-5af0d2a3e9d3\",\n \"profile_id\": \"4240ffc0-6422-c656-2170-65ff66f463ff\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -18387,7 +18387,7 @@ } }, { - "id": "6f8cfd48-73f1-4307-82bc-7d1a373e1bfa", + "id": "7aeec389-02c5-413c-8369-ca4d5caca4e2", "name": "Get role-profile contributor relationships", "request": { "name": "Get role-profile contributor relationships", @@ -18437,7 +18437,7 @@ "type": "text/plain" }, "key": "role_id", - "value": "ddcc300b-df84-c438-f837-90d81d0c2bdc" + "value": "urn:uuid:7f1dc9d0-8a01-cc5e-4782-40258f360dd0" }, { "disabled": false, @@ -18472,7 +18472,7 @@ }, "response": [ { - "id": "7abd5eb9-cfb7-425e-af79-10f38d340dd0", + "id": "252dc708-9754-4219-bdff-ceb8d23c4e5b", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -18517,7 +18517,7 @@ "type": "text/plain" }, "key": "role_id", - "value": "ddcc300b-df84-c438-f837-90d81d0c2bdc" + "value": "urn:uuid:7f1dc9d0-8a01-cc5e-4782-40258f360dd0" }, { "disabled": false, @@ -18565,12 +18565,12 @@ "value": "application/json" } ], - "body": "{\n \"role_profiles\": [\n {\n \"id\": \"9f2ccb2d-eb2c-b805-3dd1-ec9fbd4413dd\",\n \"uid\": \"eu cillum commodo ea Loremipsum \",\n \"role_id\": \"urn:uuid:266e682a-b361-f781-764e-b7eadc8a623a\",\n \"profile_id\": \"urn:uuid:526351db-30e9-b21b-ee3e-d3030e8c1a14\"\n },\n {\n \"id\": \"urn:uuid:3119e42b-27e3-86af-aa33-0adee865daa8\",\n \"uid\": \"dolorveniam ea ut elit deserunts\",\n \"role_id\": \"urn:uuid:94dcb2c9-406b-76f3-4b28-e28ca0f0ed82\",\n \"profile_id\": \"f166eb5b-3684-3ce5-ad25-51755f256146\"\n }\n ],\n \"_metadata\": {\n \"limit\": -82370410,\n \"offset\": 24703682,\n \"total\": -9691716,\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:6da7a05e-b256-7d20-b76b-f2bf1863552d\",\n \"uid\": \"consectetur exercitationculpa do\",\n \"role_id\": \"urn:uuid:a36a6554-4fed-d752-2a11-6f72ca732482\",\n \"profile_id\": \"12040c59-e71c-a60c-046c-3da2cb1de4d6\"\n },\n {\n \"id\": \"urn:uuid:e56d9a81-bd7f-b388-5570-bce76dbb329c\",\n \"uid\": \"idaliquaea culpa voluptateelit i\",\n \"role_id\": \"urn:uuid:71294ee8-b9ea-a963-e277-94774766b9d4\",\n \"profile_id\": \"urn:uuid:96e54996-9abd-4d57-f6e7-3ac966b8b340\"\n }\n ],\n \"_metadata\": {\n \"limit\": -29097394,\n \"offset\": 63765008,\n \"total\": -16282755,\n \"next\": \"/endpoint?limit=10&offset=60\",\n \"previous\": \"/endpoint?limit=10&offset=40\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "8722bea2-5692-4a1b-9d34-763080502666", + "id": "85fb8f9b-fd35-4a03-9b66-1a0000e4606d", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -18615,7 +18615,7 @@ "type": "text/plain" }, "key": "role_id", - "value": "ddcc300b-df84-c438-f837-90d81d0c2bdc" + "value": "urn:uuid:7f1dc9d0-8a01-cc5e-4782-40258f360dd0" }, { "disabled": false, @@ -18668,7 +18668,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9df60e12-428b-470e-8c96-1034ebe86fc8", + "id": "b8171030-97a0-45fc-a255-5a0f7824a7c6", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -18713,7 +18713,7 @@ "type": "text/plain" }, "key": "role_id", - "value": "ddcc300b-df84-c438-f837-90d81d0c2bdc" + "value": "urn:uuid:7f1dc9d0-8a01-cc5e-4782-40258f360dd0" }, { "disabled": false, @@ -18772,7 +18772,7 @@ } }, { - "id": "f32b9128-bea3-4232-a871-1cae75d62940", + "id": "9d8fef23-26c2-47b2-8cd4-3f31212624dd", "name": "Create multiple role-profile contributor relationships", "request": { "name": "Create multiple role-profile contributor relationships", @@ -18803,7 +18803,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"role_profiles\": [\n {\n \"role_id\": \"urn:uuid:8a516481-8e3c-b237-5cf5-fa19e5a165cd\",\n \"profile_id\": \"urn:uuid:128c6ba8-67d1-3f89-9c37-b4b90c548965\"\n },\n {\n \"role_id\": \"5dd2ebe1-7881-a323-07b9-e8af391dd5f5\",\n \"profile_id\": \"urn:uuid:a05041c1-6a66-718e-049b-e2c4f4299795\"\n }\n ]\n}", + "raw": "{\n \"role_profiles\": [\n {\n \"role_id\": \"ecff2016-e65a-96f3-3b80-ddb8367c6863\",\n \"profile_id\": \"b26c2032-4df0-268a-d1cc-e2805daa502b\"\n },\n {\n \"role_id\": \"urn:uuid:e46067c0-abc4-cfef-323e-7365e9f9de41\",\n \"profile_id\": \"urn:uuid:78c9e166-82dc-9d68-7e3d-de8dc2b30b98\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -18815,7 +18815,7 @@ }, "response": [ { - "id": "1c2d97e9-430d-4f5f-8f83-f1b46109aeef", + "id": "abcb1c06-52c8-4fae-9120-522144bef315", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -18849,7 +18849,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"role_profiles\": [\n {\n \"role_id\": \"urn:uuid:8a516481-8e3c-b237-5cf5-fa19e5a165cd\",\n \"profile_id\": \"urn:uuid:128c6ba8-67d1-3f89-9c37-b4b90c548965\"\n },\n {\n \"role_id\": \"5dd2ebe1-7881-a323-07b9-e8af391dd5f5\",\n \"profile_id\": \"urn:uuid:a05041c1-6a66-718e-049b-e2c4f4299795\"\n }\n ]\n}", + "raw": "{\n \"role_profiles\": [\n {\n \"role_id\": \"ecff2016-e65a-96f3-3b80-ddb8367c6863\",\n \"profile_id\": \"b26c2032-4df0-268a-d1cc-e2805daa502b\"\n },\n {\n \"role_id\": \"urn:uuid:e46067c0-abc4-cfef-323e-7365e9f9de41\",\n \"profile_id\": \"urn:uuid:78c9e166-82dc-9d68-7e3d-de8dc2b30b98\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -18866,12 +18866,12 @@ "value": "application/json" } ], - "body": "{\n \"role_profiles\": [\n {\n \"id\": \"urn:uuid:02e8e3b6-4089-1ef3-3181-c2f056a21229\",\n \"uid\": \"idnulla nisi doloresse velitlabo\",\n \"role_id\": \"8df9758a-d150-4404-1f44-50813596ad60\",\n \"profile_id\": \"urn:uuid:b3a3858a-90d4-bbd3-9e8c-cc9b4dc2c99f\"\n },\n {\n \"id\": \"79f9975e-b1a4-01b5-7896-a5bef3c6ae94\",\n \"uid\": \"veniam culpa in adipisicingmagna\",\n \"role_id\": \"urn:uuid:981edc26-13ac-c68d-47bb-a96736175974\",\n \"profile_id\": \"urn:uuid:ded415af-c5a8-4f68-e869-71d0f0475a28\"\n }\n ]\n}", + "body": "{\n \"role_profiles\": [\n {\n \"id\": \"urn:uuid:e48882e2-dbdf-d18b-aa50-6134c96c3d72\",\n \"uid\": \"nulla est non ex doloreLorem com\",\n \"role_id\": \"3abdac06-5f1f-3ee9-3e90-f5b3345d920d\",\n \"profile_id\": \"1dba48ca-6776-c218-4b0e-3effb2c2abfe\"\n },\n {\n \"id\": \"5b2676fe-eda9-ebc2-5100-ac17ec1dfabd\",\n \"uid\": \"ut id aliqua auteesse consectetu\",\n \"role_id\": \"urn:uuid:52c43080-a498-06ce-4de8-6679ec407a2e\",\n \"profile_id\": \"urn:uuid:3a9e616f-b7db-4fd1-dd24-b40f0976ecd2\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "04b7b214-3a26-45ed-bd84-1394ec6cc07d", + "id": "5f46fe92-f346-43b3-9887-1fde495883f8", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -18905,7 +18905,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"role_profiles\": [\n {\n \"role_id\": \"urn:uuid:8a516481-8e3c-b237-5cf5-fa19e5a165cd\",\n \"profile_id\": \"urn:uuid:128c6ba8-67d1-3f89-9c37-b4b90c548965\"\n },\n {\n \"role_id\": \"5dd2ebe1-7881-a323-07b9-e8af391dd5f5\",\n \"profile_id\": \"urn:uuid:a05041c1-6a66-718e-049b-e2c4f4299795\"\n }\n ]\n}", + "raw": "{\n \"role_profiles\": [\n {\n \"role_id\": \"ecff2016-e65a-96f3-3b80-ddb8367c6863\",\n \"profile_id\": \"b26c2032-4df0-268a-d1cc-e2805daa502b\"\n },\n {\n \"role_id\": \"urn:uuid:e46067c0-abc4-cfef-323e-7365e9f9de41\",\n \"profile_id\": \"urn:uuid:78c9e166-82dc-9d68-7e3d-de8dc2b30b98\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -18927,7 +18927,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c5c0f68e-316a-472f-997d-9088a04c5b1f", + "id": "91e1fd69-ec91-4ee7-a3b4-0b8fd1b14656", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -18961,7 +18961,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"role_profiles\": [\n {\n \"role_id\": \"urn:uuid:8a516481-8e3c-b237-5cf5-fa19e5a165cd\",\n \"profile_id\": \"urn:uuid:128c6ba8-67d1-3f89-9c37-b4b90c548965\"\n },\n {\n \"role_id\": \"5dd2ebe1-7881-a323-07b9-e8af391dd5f5\",\n \"profile_id\": \"urn:uuid:a05041c1-6a66-718e-049b-e2c4f4299795\"\n }\n ]\n}", + "raw": "{\n \"role_profiles\": [\n {\n \"role_id\": \"ecff2016-e65a-96f3-3b80-ddb8367c6863\",\n \"profile_id\": \"b26c2032-4df0-268a-d1cc-e2805daa502b\"\n },\n {\n \"role_id\": \"urn:uuid:e46067c0-abc4-cfef-323e-7365e9f9de41\",\n \"profile_id\": \"urn:uuid:78c9e166-82dc-9d68-7e3d-de8dc2b30b98\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -18989,7 +18989,7 @@ } }, { - "id": "de548c39-a301-42d0-8b32-fcb1065ea53a", + "id": "9f753b71-ffa0-4230-8834-9ba54cde161b", "name": "Update multiple role-profile contributor relationships", "request": { "name": "Update multiple role-profile contributor relationships", @@ -19020,7 +19020,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"role_profiles\": [\n {\n \"id\": \"af7ca699-b955-81e3-2e66-19587991120d\",\n \"role_id\": \"c3b8596b-e020-6314-c0aa-f7126e5e3096\",\n \"profile_id\": \"b3267702-49b1-604a-90b1-3d9d0d12a662\"\n },\n {\n \"id\": \"urn:uuid:f9684e1b-c017-ae5a-7335-c7417cb4e692\",\n \"role_id\": \"219d2c02-f7db-11c2-27ff-371c4a46cab6\",\n \"profile_id\": \"b983dca9-61b3-858f-3f5c-ba85b1ac3360\"\n }\n ]\n}", + "raw": "{\n \"role_profiles\": [\n {\n \"id\": \"76971eb8-9dcd-0bbc-2236-81ad3ef3de42\",\n \"role_id\": \"urn:uuid:9aaf15d5-3938-2219-0bf7-691cd66b6070\",\n \"profile_id\": \"274b80a2-56ad-c2a7-3fe4-15f25d01b7e7\"\n },\n {\n \"id\": \"237d73c9-a71f-c177-d13e-13c9ffe73530\",\n \"role_id\": \"urn:uuid:bd43cc57-686e-157f-2708-43515e3c4830\",\n \"profile_id\": \"7c1cf0cf-f818-94ad-a094-99a5c831e648\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -19032,7 +19032,7 @@ }, "response": [ { - "id": "873e90a7-1e8e-4f8e-a03c-9a276095cfa3", + "id": "4a0ef018-57a6-4657-8a51-ef393df8ab30", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -19066,7 +19066,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"role_profiles\": [\n {\n \"id\": \"af7ca699-b955-81e3-2e66-19587991120d\",\n \"role_id\": \"c3b8596b-e020-6314-c0aa-f7126e5e3096\",\n \"profile_id\": \"b3267702-49b1-604a-90b1-3d9d0d12a662\"\n },\n {\n \"id\": \"urn:uuid:f9684e1b-c017-ae5a-7335-c7417cb4e692\",\n \"role_id\": \"219d2c02-f7db-11c2-27ff-371c4a46cab6\",\n \"profile_id\": \"b983dca9-61b3-858f-3f5c-ba85b1ac3360\"\n }\n ]\n}", + "raw": "{\n \"role_profiles\": [\n {\n \"id\": \"76971eb8-9dcd-0bbc-2236-81ad3ef3de42\",\n \"role_id\": \"urn:uuid:9aaf15d5-3938-2219-0bf7-691cd66b6070\",\n \"profile_id\": \"274b80a2-56ad-c2a7-3fe4-15f25d01b7e7\"\n },\n {\n \"id\": \"237d73c9-a71f-c177-d13e-13c9ffe73530\",\n \"role_id\": \"urn:uuid:bd43cc57-686e-157f-2708-43515e3c4830\",\n \"profile_id\": \"7c1cf0cf-f818-94ad-a094-99a5c831e648\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -19083,12 +19083,12 @@ "value": "application/json" } ], - "body": "{\n \"role_profiles\": [\n {\n \"id\": \"urn:uuid:02e8e3b6-4089-1ef3-3181-c2f056a21229\",\n \"uid\": \"idnulla nisi doloresse velitlabo\",\n \"role_id\": \"8df9758a-d150-4404-1f44-50813596ad60\",\n \"profile_id\": \"urn:uuid:b3a3858a-90d4-bbd3-9e8c-cc9b4dc2c99f\"\n },\n {\n \"id\": \"79f9975e-b1a4-01b5-7896-a5bef3c6ae94\",\n \"uid\": \"veniam culpa in adipisicingmagna\",\n \"role_id\": \"urn:uuid:981edc26-13ac-c68d-47bb-a96736175974\",\n \"profile_id\": \"urn:uuid:ded415af-c5a8-4f68-e869-71d0f0475a28\"\n }\n ]\n}", + "body": "{\n \"role_profiles\": [\n {\n \"id\": \"urn:uuid:e48882e2-dbdf-d18b-aa50-6134c96c3d72\",\n \"uid\": \"nulla est non ex doloreLorem com\",\n \"role_id\": \"3abdac06-5f1f-3ee9-3e90-f5b3345d920d\",\n \"profile_id\": \"1dba48ca-6776-c218-4b0e-3effb2c2abfe\"\n },\n {\n \"id\": \"5b2676fe-eda9-ebc2-5100-ac17ec1dfabd\",\n \"uid\": \"ut id aliqua auteesse consectetu\",\n \"role_id\": \"urn:uuid:52c43080-a498-06ce-4de8-6679ec407a2e\",\n \"profile_id\": \"urn:uuid:3a9e616f-b7db-4fd1-dd24-b40f0976ecd2\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "93372e9b-2abc-4019-99be-a40a5f592e6c", + "id": "79a98e59-ce51-4930-8ef9-be8d0aa3300f", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -19122,7 +19122,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"role_profiles\": [\n {\n \"id\": \"af7ca699-b955-81e3-2e66-19587991120d\",\n \"role_id\": \"c3b8596b-e020-6314-c0aa-f7126e5e3096\",\n \"profile_id\": \"b3267702-49b1-604a-90b1-3d9d0d12a662\"\n },\n {\n \"id\": \"urn:uuid:f9684e1b-c017-ae5a-7335-c7417cb4e692\",\n \"role_id\": \"219d2c02-f7db-11c2-27ff-371c4a46cab6\",\n \"profile_id\": \"b983dca9-61b3-858f-3f5c-ba85b1ac3360\"\n }\n ]\n}", + "raw": "{\n \"role_profiles\": [\n {\n \"id\": \"76971eb8-9dcd-0bbc-2236-81ad3ef3de42\",\n \"role_id\": \"urn:uuid:9aaf15d5-3938-2219-0bf7-691cd66b6070\",\n \"profile_id\": \"274b80a2-56ad-c2a7-3fe4-15f25d01b7e7\"\n },\n {\n \"id\": \"237d73c9-a71f-c177-d13e-13c9ffe73530\",\n \"role_id\": \"urn:uuid:bd43cc57-686e-157f-2708-43515e3c4830\",\n \"profile_id\": \"7c1cf0cf-f818-94ad-a094-99a5c831e648\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -19144,7 +19144,7 @@ "_postman_previewlanguage": "json" }, { - "id": "74647578-7ac5-409f-b737-27af425e939f", + "id": "e9e2c8e3-9c72-471d-b345-eb88169de9f7", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -19178,7 +19178,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"role_profiles\": [\n {\n \"id\": \"af7ca699-b955-81e3-2e66-19587991120d\",\n \"role_id\": \"c3b8596b-e020-6314-c0aa-f7126e5e3096\",\n \"profile_id\": \"b3267702-49b1-604a-90b1-3d9d0d12a662\"\n },\n {\n \"id\": \"urn:uuid:f9684e1b-c017-ae5a-7335-c7417cb4e692\",\n \"role_id\": \"219d2c02-f7db-11c2-27ff-371c4a46cab6\",\n \"profile_id\": \"b983dca9-61b3-858f-3f5c-ba85b1ac3360\"\n }\n ]\n}", + "raw": "{\n \"role_profiles\": [\n {\n \"id\": \"76971eb8-9dcd-0bbc-2236-81ad3ef3de42\",\n \"role_id\": \"urn:uuid:9aaf15d5-3938-2219-0bf7-691cd66b6070\",\n \"profile_id\": \"274b80a2-56ad-c2a7-3fe4-15f25d01b7e7\"\n },\n {\n \"id\": \"237d73c9-a71f-c177-d13e-13c9ffe73530\",\n \"role_id\": \"urn:uuid:bd43cc57-686e-157f-2708-43515e3c4830\",\n \"profile_id\": \"7c1cf0cf-f818-94ad-a094-99a5c831e648\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -19206,7 +19206,7 @@ } }, { - "id": "dfa1e78a-c317-49eb-a002-54cb8b94ef55", + "id": "612faa10-4581-4e8f-8a98-7ab8a5dd354d", "name": "Find role-profile contributor relationship by id", "request": { "name": "Find role-profile contributor relationship by id", @@ -19248,7 +19248,7 @@ }, "response": [ { - "id": "2744834a-9ff9-42ec-890f-80bd625426ba", + "id": "cfef6b82-52de-478c-8d19-296e57e73181", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -19287,12 +19287,12 @@ "value": "application/json" } ], - "body": "{\n \"role_profile\": {\n \"id\": \"461a6b3e-3419-15a9-4aea-d8f66e02be47\",\n \"uid\": \"sint nisiaute eiusmod commodo mi\",\n \"role_id\": \"682b38ad-a94e-2967-2905-41c03175c854\",\n \"profile_id\": \"urn:uuid:83b93000-5862-0950-972e-c913caac1d7e\"\n }\n}", + "body": "{\n \"role_profile\": {\n \"id\": \"urn:uuid:93d69fc1-eb4e-08ca-959d-8b871147cdf9\",\n \"uid\": \"fugiat ad sit utLorem labore cul\",\n \"role_id\": \"22d25254-61b4-2714-db45-18a3b4767b21\",\n \"profile_id\": \"adcb2cc2-b8e7-b5b2-1161-f1b3c7ed755a\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c9a9bc79-e1db-49e6-be73-7391c3decf33", + "id": "c8a247c8-3e07-41ae-845f-9b762539e3d0", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -19336,7 +19336,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b10b1cad-8dc3-4d30-98c0-fee5b45abd07", + "id": "c6a26120-3abc-404f-945d-17caccab6a5f", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -19386,7 +19386,7 @@ } }, { - "id": "4155a459-9cd8-4c6b-8bc3-de55a52d87e6", + "id": "003c01dd-faff-47fa-b869-2700e901d155", "name": "Update a role-profile contributor relationship by id", "request": { "name": "Update a role-profile contributor relationship by id", @@ -19429,7 +19429,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"role_profile\": {\n \"role_id\": \"urn:uuid:a1566e34-4ff7-166f-df28-1ffb589ef32a\",\n \"profile_id\": \"a891052e-5dcf-e805-ad48-b385c09821d8\"\n }\n}", + "raw": "{\n \"role_profile\": {\n \"role_id\": \"urn:uuid:82f76a9d-4e6a-faf2-ee51-5af0d2a3e9d3\",\n \"profile_id\": \"4240ffc0-6422-c656-2170-65ff66f463ff\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -19441,7 +19441,7 @@ }, "response": [ { - "id": "b23f6723-71c7-4e5c-9fc3-100d03b0324d", + "id": "6b4c3e9e-d0c7-4a0e-86bc-4f85b0c71ac5", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -19476,7 +19476,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"role_profile\": {\n \"role_id\": \"urn:uuid:a1566e34-4ff7-166f-df28-1ffb589ef32a\",\n \"profile_id\": \"a891052e-5dcf-e805-ad48-b385c09821d8\"\n }\n}", + "raw": "{\n \"role_profile\": {\n \"role_id\": \"urn:uuid:82f76a9d-4e6a-faf2-ee51-5af0d2a3e9d3\",\n \"profile_id\": \"4240ffc0-6422-c656-2170-65ff66f463ff\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -19493,12 +19493,12 @@ "value": "application/json" } ], - "body": "{\n \"role_profile\": {\n \"id\": \"461a6b3e-3419-15a9-4aea-d8f66e02be47\",\n \"uid\": \"sint nisiaute eiusmod commodo mi\",\n \"role_id\": \"682b38ad-a94e-2967-2905-41c03175c854\",\n \"profile_id\": \"urn:uuid:83b93000-5862-0950-972e-c913caac1d7e\"\n }\n}", + "body": "{\n \"role_profile\": {\n \"id\": \"urn:uuid:93d69fc1-eb4e-08ca-959d-8b871147cdf9\",\n \"uid\": \"fugiat ad sit utLorem labore cul\",\n \"role_id\": \"22d25254-61b4-2714-db45-18a3b4767b21\",\n \"profile_id\": \"adcb2cc2-b8e7-b5b2-1161-f1b3c7ed755a\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "0de63825-46e4-4076-bc20-ec466bc4f902", + "id": "f87d233a-b768-4524-8e87-6860d5683fa1", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -19533,7 +19533,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"role_profile\": {\n \"role_id\": \"urn:uuid:a1566e34-4ff7-166f-df28-1ffb589ef32a\",\n \"profile_id\": \"a891052e-5dcf-e805-ad48-b385c09821d8\"\n }\n}", + "raw": "{\n \"role_profile\": {\n \"role_id\": \"urn:uuid:82f76a9d-4e6a-faf2-ee51-5af0d2a3e9d3\",\n \"profile_id\": \"4240ffc0-6422-c656-2170-65ff66f463ff\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -19555,7 +19555,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9c569995-1133-4471-9273-2840a34a8590", + "id": "f597aa47-b04c-4ebc-87df-e1b7676ca2be", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -19590,7 +19590,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"role_profile\": {\n \"role_id\": \"urn:uuid:a1566e34-4ff7-166f-df28-1ffb589ef32a\",\n \"profile_id\": \"a891052e-5dcf-e805-ad48-b385c09821d8\"\n }\n}", + "raw": "{\n \"role_profile\": {\n \"role_id\": \"urn:uuid:82f76a9d-4e6a-faf2-ee51-5af0d2a3e9d3\",\n \"profile_id\": \"4240ffc0-6422-c656-2170-65ff66f463ff\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -19618,7 +19618,7 @@ } }, { - "id": "c98ddde1-861a-40e3-836d-b06de07d1e92", + "id": "0a59e072-edd7-40db-b45d-7244623d9c42", "name": "Delete a role profile assignment", "request": { "name": "Delete a role profile assignment", @@ -19660,7 +19660,7 @@ }, "response": [ { - "id": "53cb55ab-f56c-4b5c-b658-193847256a01", + "id": "7f076bd3-1f7e-40e3-9733-e3e4978dadc3", "name": "Role profile was destroyed", "originalRequest": { "url": { @@ -19704,7 +19704,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c637ad8b-cec5-4068-9d53-40334694c82a", + "id": "d36379cd-550e-4d9d-bd8f-484dfeb5cdc0", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -19748,7 +19748,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5887db21-5eee-4403-9498-a26ccab5e0f1", + "id": "b871f859-f4af-446b-be58-525c19b1dc17", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -19804,7 +19804,7 @@ "description": "", "item": [ { - "id": "de988dd1-bff4-4577-ac2d-8675987fc526", + "id": "149840a0-a1f1-4fb4-aaa1-889eb45a1cd7", "name": "Create a create workflow", "request": { "name": "Create a create workflow", @@ -19848,7 +19848,7 @@ }, "response": [ { - "id": "e497b457-1c72-4c19-9cfd-05e5f5126434", + "id": "d6607df5-3b14-4d15-ba9e-c9332d555699", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -19900,12 +19900,12 @@ "value": "application/json" } ], - "body": "{\n \"workflow\": {\n \"id\": \"urn:uuid:86b01940-1278-f363-128d-db4eca0c163a\",\n \"uid\": \"ut in voluptateelit aute ut aliq\",\n \"workflow_id\": \"urn:uuid:2f868a88-9ef5-90d5-faf7-d0907800b7bc\",\n \"requester_id\": \"urn:uuid:8183cc09-e100-74a5-ec9c-ab70fe11daea\",\n \"requester_type\": \"NeprofileUser\",\n \"profile_id\": \"urn:uuid:d4a9d47f-ed98-9759-a71d-f898a14ba321\",\n \"profile_ids\": [\n \"urn:uuid:68aa1cb4-50ca-5ef0-5d4f-9fa5a6a90f1b\",\n \"urn:uuid:b893516c-52db-ba3e-7728-b321e5f0beb5\"\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 \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n}", + "body": "{\n \"workflow\": {\n \"id\": \"urn:uuid:a893542b-b149-071f-490b-34cc934061a4\",\n \"uid\": \"quisnisi esse quissit nisi volup\",\n \"workflow_id\": \"urn:uuid:594989b7-7181-b2b3-2697-eaed205b50b7\",\n \"requester_id\": \"ea26f6f2-78f6-59ec-8351-f723a25b6525\",\n \"requester_type\": \"NeprofileUser\",\n \"profile_id\": \"urn:uuid:ca07a3b0-9f47-abc1-f65e-f0b3c4ced4e9\",\n \"profile_ids\": [\n \"urn:uuid:64b5b75a-317c-ab9c-4607-ab71da003199\",\n \"3826aaf3-36d1-709b-f0dc-c4046fbb01d4\"\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 \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "12bb520f-53b0-4d96-95d8-85e627836e4e", + "id": "939af06c-82b2-49d3-a2f5-fe85619d3e51", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -19962,7 +19962,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4e2bacea-1888-4905-b61f-4dce8313b2cc", + "id": "7db84832-53be-468e-9dda-2932ab3efb55", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -20025,7 +20025,7 @@ } }, { - "id": "34805a0a-1f97-4c51-921f-3254e2c39f76", + "id": "25fb9728-8f90-4ab3-856c-41d812d9719c", "name": "Create an update workflow", "request": { "name": "Create an update workflow", @@ -20069,7 +20069,7 @@ }, "response": [ { - "id": "7715f38b-7686-49f9-a827-15ba2b777dd7", + "id": "9edf21e9-6573-4ead-9e8d-533744d7d209", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -20121,12 +20121,12 @@ "value": "application/json" } ], - "body": "{\n \"workflow\": {\n \"id\": \"urn:uuid:86b01940-1278-f363-128d-db4eca0c163a\",\n \"uid\": \"ut in voluptateelit aute ut aliq\",\n \"workflow_id\": \"urn:uuid:2f868a88-9ef5-90d5-faf7-d0907800b7bc\",\n \"requester_id\": \"urn:uuid:8183cc09-e100-74a5-ec9c-ab70fe11daea\",\n \"requester_type\": \"NeprofileUser\",\n \"profile_id\": \"urn:uuid:d4a9d47f-ed98-9759-a71d-f898a14ba321\",\n \"profile_ids\": [\n \"urn:uuid:68aa1cb4-50ca-5ef0-5d4f-9fa5a6a90f1b\",\n \"urn:uuid:b893516c-52db-ba3e-7728-b321e5f0beb5\"\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 \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n}", + "body": "{\n \"workflow\": {\n \"id\": \"urn:uuid:a893542b-b149-071f-490b-34cc934061a4\",\n \"uid\": \"quisnisi esse quissit nisi volup\",\n \"workflow_id\": \"urn:uuid:594989b7-7181-b2b3-2697-eaed205b50b7\",\n \"requester_id\": \"ea26f6f2-78f6-59ec-8351-f723a25b6525\",\n \"requester_type\": \"NeprofileUser\",\n \"profile_id\": \"urn:uuid:ca07a3b0-9f47-abc1-f65e-f0b3c4ced4e9\",\n \"profile_ids\": [\n \"urn:uuid:64b5b75a-317c-ab9c-4607-ab71da003199\",\n \"3826aaf3-36d1-709b-f0dc-c4046fbb01d4\"\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 \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "2d1bc806-6511-449f-a6d2-84b08bba3507", + "id": "939e8f85-8982-4873-951a-5b2763c071a0", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -20183,7 +20183,7 @@ "_postman_previewlanguage": "json" }, { - "id": "13e86ef7-9faf-432a-896b-b89914a57eca", + "id": "6cac1018-41ea-4b7e-a7ea-a4b489b92a91", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -20246,7 +20246,7 @@ } }, { - "id": "ba27083c-9d52-4bfd-a6a8-9b2fdce62143", + "id": "d0029d56-bd21-45ef-b914-f4ecbe43f72e", "name": "Create a batch workflow", "request": { "name": "Create a batch workflow", @@ -20278,7 +20278,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"workflow\": {\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"status\": \"Enabled\",\n \"uid\": \"my_uid\",\n \"name\": \"my_workflow\",\n \"options\": {\n \"all_profiles\": \"false\",\n \"multiple_requests\": \"true\"\n }\n }\n}", + "raw": "{\n \"workflow\": {\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"status\": \"Enabled\",\n \"uid\": \"my_uid\",\n \"name\": \"my_workflow\",\n \"options\": {\n \"all_profiles\": \"true\",\n \"multiple_requests\": \"true\"\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -20290,7 +20290,7 @@ }, "response": [ { - "id": "0de83845-6d1e-40f4-8170-400a0fab5195", + "id": "dd403bdb-3483-4d1b-90ee-ca50afc448f2", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -20325,7 +20325,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"workflow\": {\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"status\": \"Enabled\",\n \"uid\": \"my_uid\",\n \"name\": \"my_workflow\",\n \"options\": {\n \"all_profiles\": \"false\",\n \"multiple_requests\": \"true\"\n }\n }\n}", + "raw": "{\n \"workflow\": {\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"status\": \"Enabled\",\n \"uid\": \"my_uid\",\n \"name\": \"my_workflow\",\n \"options\": {\n \"all_profiles\": \"true\",\n \"multiple_requests\": \"true\"\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -20342,12 +20342,12 @@ "value": "application/json" } ], - "body": "{\n \"workflow\": {\n \"id\": \"urn:uuid:86b01940-1278-f363-128d-db4eca0c163a\",\n \"uid\": \"ut in voluptateelit aute ut aliq\",\n \"workflow_id\": \"urn:uuid:2f868a88-9ef5-90d5-faf7-d0907800b7bc\",\n \"requester_id\": \"urn:uuid:8183cc09-e100-74a5-ec9c-ab70fe11daea\",\n \"requester_type\": \"NeprofileUser\",\n \"profile_id\": \"urn:uuid:d4a9d47f-ed98-9759-a71d-f898a14ba321\",\n \"profile_ids\": [\n \"urn:uuid:68aa1cb4-50ca-5ef0-5d4f-9fa5a6a90f1b\",\n \"urn:uuid:b893516c-52db-ba3e-7728-b321e5f0beb5\"\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 \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n}", + "body": "{\n \"workflow\": {\n \"id\": \"urn:uuid:a893542b-b149-071f-490b-34cc934061a4\",\n \"uid\": \"quisnisi esse quissit nisi volup\",\n \"workflow_id\": \"urn:uuid:594989b7-7181-b2b3-2697-eaed205b50b7\",\n \"requester_id\": \"ea26f6f2-78f6-59ec-8351-f723a25b6525\",\n \"requester_type\": \"NeprofileUser\",\n \"profile_id\": \"urn:uuid:ca07a3b0-9f47-abc1-f65e-f0b3c4ced4e9\",\n \"profile_ids\": [\n \"urn:uuid:64b5b75a-317c-ab9c-4607-ab71da003199\",\n \"3826aaf3-36d1-709b-f0dc-c4046fbb01d4\"\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 \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "7db1aa07-2790-4651-8ffa-38fdb751c86c", + "id": "a28af04b-30b5-4e1c-949b-973807527dc4", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -20382,7 +20382,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"workflow\": {\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"status\": \"Enabled\",\n \"uid\": \"my_uid\",\n \"name\": \"my_workflow\",\n \"options\": {\n \"all_profiles\": \"false\",\n \"multiple_requests\": \"true\"\n }\n }\n}", + "raw": "{\n \"workflow\": {\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"status\": \"Enabled\",\n \"uid\": \"my_uid\",\n \"name\": \"my_workflow\",\n \"options\": {\n \"all_profiles\": \"true\",\n \"multiple_requests\": \"true\"\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -20404,7 +20404,7 @@ "_postman_previewlanguage": "json" }, { - "id": "12eaccf6-5a1e-4065-964a-5ea8ea62f323", + "id": "72e06a31-4beb-45b6-b9f9-5c9d89febb4e", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -20439,7 +20439,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"workflow\": {\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"status\": \"Enabled\",\n \"uid\": \"my_uid\",\n \"name\": \"my_workflow\",\n \"options\": {\n \"all_profiles\": \"false\",\n \"multiple_requests\": \"true\"\n }\n }\n}", + "raw": "{\n \"workflow\": {\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"status\": \"Enabled\",\n \"uid\": \"my_uid\",\n \"name\": \"my_workflow\",\n \"options\": {\n \"all_profiles\": \"true\",\n \"multiple_requests\": \"true\"\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -20467,7 +20467,7 @@ } }, { - "id": "aa3bee77-3e7a-4137-baeb-0915c1fa3c6e", + "id": "3de1bfad-7ccb-40b4-bcd0-c6736495bb05", "name": "Create an automated workflow", "request": { "name": "Create an automated workflow", @@ -20511,7 +20511,7 @@ }, "response": [ { - "id": "0a14e3dd-1ffa-4e82-85f6-e574c6f617a0", + "id": "f86ac126-f69a-47f4-b0fd-e9fb38a4c309", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -20563,12 +20563,12 @@ "value": "application/json" } ], - "body": "{\n \"workflow\": {\n \"id\": \"urn:uuid:86b01940-1278-f363-128d-db4eca0c163a\",\n \"uid\": \"ut in voluptateelit aute ut aliq\",\n \"workflow_id\": \"urn:uuid:2f868a88-9ef5-90d5-faf7-d0907800b7bc\",\n \"requester_id\": \"urn:uuid:8183cc09-e100-74a5-ec9c-ab70fe11daea\",\n \"requester_type\": \"NeprofileUser\",\n \"profile_id\": \"urn:uuid:d4a9d47f-ed98-9759-a71d-f898a14ba321\",\n \"profile_ids\": [\n \"urn:uuid:68aa1cb4-50ca-5ef0-5d4f-9fa5a6a90f1b\",\n \"urn:uuid:b893516c-52db-ba3e-7728-b321e5f0beb5\"\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 \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n}", + "body": "{\n \"workflow\": {\n \"id\": \"urn:uuid:a893542b-b149-071f-490b-34cc934061a4\",\n \"uid\": \"quisnisi esse quissit nisi volup\",\n \"workflow_id\": \"urn:uuid:594989b7-7181-b2b3-2697-eaed205b50b7\",\n \"requester_id\": \"ea26f6f2-78f6-59ec-8351-f723a25b6525\",\n \"requester_type\": \"NeprofileUser\",\n \"profile_id\": \"urn:uuid:ca07a3b0-9f47-abc1-f65e-f0b3c4ced4e9\",\n \"profile_ids\": [\n \"urn:uuid:64b5b75a-317c-ab9c-4607-ab71da003199\",\n \"3826aaf3-36d1-709b-f0dc-c4046fbb01d4\"\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 \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e5b1bb29-af5c-4d2d-996b-34397eadd9a5", + "id": "45e87511-45da-4e70-a8f8-381106973656", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -20625,7 +20625,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4b0fd853-1569-4f76-a26f-8d8203a0edd8", + "id": "0ebf3077-b057-4b20-8435-be7d37cb25a1", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -20688,7 +20688,7 @@ } }, { - "id": "6f42cad3-1c08-4866-a1d8-4b1f31438303", + "id": "7344b41a-d37a-42d8-918e-4a04a7b404ed", "name": "Create a registration workflow", "request": { "name": "Create a registration workflow", @@ -20732,7 +20732,7 @@ }, "response": [ { - "id": "2ef8a6d4-aaec-41dd-b382-b872ea97c9d2", + "id": "c09c690c-efb4-4f8c-89f7-a252364359d7", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -20784,12 +20784,12 @@ "value": "application/json" } ], - "body": "{\n \"workflow\": {\n \"id\": \"urn:uuid:86b01940-1278-f363-128d-db4eca0c163a\",\n \"uid\": \"ut in voluptateelit aute ut aliq\",\n \"workflow_id\": \"urn:uuid:2f868a88-9ef5-90d5-faf7-d0907800b7bc\",\n \"requester_id\": \"urn:uuid:8183cc09-e100-74a5-ec9c-ab70fe11daea\",\n \"requester_type\": \"NeprofileUser\",\n \"profile_id\": \"urn:uuid:d4a9d47f-ed98-9759-a71d-f898a14ba321\",\n \"profile_ids\": [\n \"urn:uuid:68aa1cb4-50ca-5ef0-5d4f-9fa5a6a90f1b\",\n \"urn:uuid:b893516c-52db-ba3e-7728-b321e5f0beb5\"\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 \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n}", + "body": "{\n \"workflow\": {\n \"id\": \"urn:uuid:a893542b-b149-071f-490b-34cc934061a4\",\n \"uid\": \"quisnisi esse quissit nisi volup\",\n \"workflow_id\": \"urn:uuid:594989b7-7181-b2b3-2697-eaed205b50b7\",\n \"requester_id\": \"ea26f6f2-78f6-59ec-8351-f723a25b6525\",\n \"requester_type\": \"NeprofileUser\",\n \"profile_id\": \"urn:uuid:ca07a3b0-9f47-abc1-f65e-f0b3c4ced4e9\",\n \"profile_ids\": [\n \"urn:uuid:64b5b75a-317c-ab9c-4607-ab71da003199\",\n \"3826aaf3-36d1-709b-f0dc-c4046fbb01d4\"\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 \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b1774e32-8e14-43f4-a1d8-a6362d3f5a93", + "id": "c0ccc7d9-d742-4404-8bfd-9710729342d5", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -20846,7 +20846,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8c3b750b-8f1e-466f-ad29-016bf711a229", + "id": "c62bc8ae-1ea5-41f4-af15-eb8ec7073a0c", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -20909,7 +20909,7 @@ } }, { - "id": "e21377ff-c89f-48a1-bea3-2cefdcef21d0", + "id": "d523bc90-5700-475b-ab8f-ff3c070b04af", "name": "Create a login workflow", "request": { "name": "Create a login workflow", @@ -20953,7 +20953,7 @@ }, "response": [ { - "id": "78722d68-7cfe-40cb-973e-5fd5bc3bfeae", + "id": "1750f0a1-fad2-4045-b363-d09d3e6f3876", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -21005,12 +21005,12 @@ "value": "application/json" } ], - "body": "{\n \"workflow\": {\n \"id\": \"urn:uuid:86b01940-1278-f363-128d-db4eca0c163a\",\n \"uid\": \"ut in voluptateelit aute ut aliq\",\n \"workflow_id\": \"urn:uuid:2f868a88-9ef5-90d5-faf7-d0907800b7bc\",\n \"requester_id\": \"urn:uuid:8183cc09-e100-74a5-ec9c-ab70fe11daea\",\n \"requester_type\": \"NeprofileUser\",\n \"profile_id\": \"urn:uuid:d4a9d47f-ed98-9759-a71d-f898a14ba321\",\n \"profile_ids\": [\n \"urn:uuid:68aa1cb4-50ca-5ef0-5d4f-9fa5a6a90f1b\",\n \"urn:uuid:b893516c-52db-ba3e-7728-b321e5f0beb5\"\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 \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n}", + "body": "{\n \"workflow\": {\n \"id\": \"urn:uuid:a893542b-b149-071f-490b-34cc934061a4\",\n \"uid\": \"quisnisi esse quissit nisi volup\",\n \"workflow_id\": \"urn:uuid:594989b7-7181-b2b3-2697-eaed205b50b7\",\n \"requester_id\": \"ea26f6f2-78f6-59ec-8351-f723a25b6525\",\n \"requester_type\": \"NeprofileUser\",\n \"profile_id\": \"urn:uuid:ca07a3b0-9f47-abc1-f65e-f0b3c4ced4e9\",\n \"profile_ids\": [\n \"urn:uuid:64b5b75a-317c-ab9c-4607-ab71da003199\",\n \"3826aaf3-36d1-709b-f0dc-c4046fbb01d4\"\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 \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "9f9f8f76-5ea0-464a-af81-77a39c579790", + "id": "fc399354-ddca-4968-8934-4222e211d965", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -21067,7 +21067,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a6f9b8c7-eb3c-4467-a4b6-dcb0ec13c50e", + "id": "266e66e1-98cc-4a26-a12b-399615025892", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -21130,7 +21130,7 @@ } }, { - "id": "b3858751-1ac9-46ee-a697-f868ca8d69eb", + "id": "2086bdfd-359a-4dc2-92c6-4c44dc643958", "name": "Create a password reset workflow", "request": { "name": "Create a password reset workflow", @@ -21174,7 +21174,7 @@ }, "response": [ { - "id": "04cfdec4-6808-4971-a7b7-afe3ed959a1a", + "id": "a939a949-2727-4094-8714-acf97cdc2e64", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -21226,12 +21226,12 @@ "value": "application/json" } ], - "body": "{\n \"workflow\": {\n \"id\": \"urn:uuid:86b01940-1278-f363-128d-db4eca0c163a\",\n \"uid\": \"ut in voluptateelit aute ut aliq\",\n \"workflow_id\": \"urn:uuid:2f868a88-9ef5-90d5-faf7-d0907800b7bc\",\n \"requester_id\": \"urn:uuid:8183cc09-e100-74a5-ec9c-ab70fe11daea\",\n \"requester_type\": \"NeprofileUser\",\n \"profile_id\": \"urn:uuid:d4a9d47f-ed98-9759-a71d-f898a14ba321\",\n \"profile_ids\": [\n \"urn:uuid:68aa1cb4-50ca-5ef0-5d4f-9fa5a6a90f1b\",\n \"urn:uuid:b893516c-52db-ba3e-7728-b321e5f0beb5\"\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 \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n}", + "body": "{\n \"workflow\": {\n \"id\": \"urn:uuid:a893542b-b149-071f-490b-34cc934061a4\",\n \"uid\": \"quisnisi esse quissit nisi volup\",\n \"workflow_id\": \"urn:uuid:594989b7-7181-b2b3-2697-eaed205b50b7\",\n \"requester_id\": \"ea26f6f2-78f6-59ec-8351-f723a25b6525\",\n \"requester_type\": \"NeprofileUser\",\n \"profile_id\": \"urn:uuid:ca07a3b0-9f47-abc1-f65e-f0b3c4ced4e9\",\n \"profile_ids\": [\n \"urn:uuid:64b5b75a-317c-ab9c-4607-ab71da003199\",\n \"3826aaf3-36d1-709b-f0dc-c4046fbb01d4\"\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 \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "6802fb98-d0d2-45d2-81b3-315a364349e4", + "id": "006f8e36-c847-431a-9e35-33a4025630fc", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -21288,7 +21288,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6b82d32f-deb7-409d-b348-68c6d8ef30f0", + "id": "3ef74652-fe22-4e55-8f27-21cfb737c5ce", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -21357,7 +21357,7 @@ "description": "", "item": [ { - "id": "81f6a2ac-f88d-4ddc-b027-03076ea9c354", + "id": "d1395a78-a007-458e-bc68-107ed3d338ce", "name": "Create an approval action", "request": { "name": "Create an approval action", @@ -21401,7 +21401,7 @@ }, "response": [ { - "id": "bfefe26f-507c-4d22-8b84-90cfee4400e2", + "id": "9fced222-2206-4551-9a0a-3d7da07449b2", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -21458,7 +21458,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ebc442aa-666a-4026-abd5-8daf00f9b57c", + "id": "789bb6fc-2ff9-4eb5-87c9-e48716e3327a", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -21515,7 +21515,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8b3502bb-b2fc-4a44-a663-39d67606a378", + "id": "bc5b77b7-73b9-47fb-8239-ef0215363ca3", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -21578,7 +21578,7 @@ } }, { - "id": "e552e010-b58e-408d-9c19-a386b5b995aa", + "id": "bbb40d3e-f1b6-4fc0-95fd-b817dbae3634", "name": "Create ask security question action", "request": { "name": "Create ask security question action", @@ -21622,7 +21622,7 @@ }, "response": [ { - "id": "79a85abc-3d0a-438b-ad57-45015496df2d", + "id": "f87e1b16-0be7-4807-8fb6-d52b7012f3a2", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -21679,7 +21679,7 @@ "_postman_previewlanguage": "json" }, { - "id": "95d9a43a-c8b7-49bf-a5c3-c693e0656fff", + "id": "484eb412-5772-4678-97ed-20570e7c23f0", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -21736,7 +21736,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cd75e102-0278-424d-b306-20e922d09bad", + "id": "6eb5c5bf-a73e-4921-87ed-0a4da25017c2", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -21799,7 +21799,7 @@ } }, { - "id": "bb669c83-df9d-4880-b44b-a0b97a468034", + "id": "fd8b6537-c503-48ef-b82e-b11c619532ae", "name": "Create an auto assign action", "request": { "name": "Create an auto assign action", @@ -21843,7 +21843,7 @@ }, "response": [ { - "id": "b7350ecb-87b9-4d14-857c-a1f33ae5d315", + "id": "c7a13407-21aa-44c3-a6cb-f706d1ec25d6", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -21900,7 +21900,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8449bcbf-bced-48c0-b560-4d511fe2947e", + "id": "0f416be3-bcec-4559-a54e-7b90d7b97128", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -21957,7 +21957,7 @@ "_postman_previewlanguage": "json" }, { - "id": "54019419-09b6-436b-ad87-58fef411d3cc", + "id": "2b52056d-3d0b-42e9-b09d-5e5cca2f7e31", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -22020,7 +22020,7 @@ } }, { - "id": "be547186-80e1-436f-bdaa-3df0f7ac9774", + "id": "4755757b-b870-46c6-aab8-4b232ee0af96", "name": "Create a batch update action", "request": { "name": "Create a batch update action", @@ -22064,7 +22064,7 @@ }, "response": [ { - "id": "b045d44c-67e7-49e4-9a83-73f9d5ecce19", + "id": "8d9774dd-9204-4374-898d-ad9a2a9c9f10", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -22121,7 +22121,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4a75fc9d-09aa-4a77-9aeb-5db46d976146", + "id": "5193a545-711e-42ce-a1e7-f70a0a7b611c", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -22178,7 +22178,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b8ece55a-436e-4838-9972-96ba4c7ee816", + "id": "5b7fd428-b4d3-4bcf-868f-f9d95d193e24", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -22241,7 +22241,7 @@ } }, { - "id": "ae4480af-43c6-4114-b90a-d7caac5aeff5", + "id": "7bb101ba-fbc8-4456-8223-cc8401d75745", "name": "Create a close session action", "request": { "name": "Create a close session action", @@ -22285,7 +22285,7 @@ }, "response": [ { - "id": "e60bc91f-2703-40a9-a8be-f27edeed3e02", + "id": "8d2ecf06-3a05-4b7f-aefe-9e8fa85d61bb", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -22342,7 +22342,7 @@ "_postman_previewlanguage": "json" }, { - "id": "214fbbde-df74-435a-826c-6c67e29ecc29", + "id": "024f84da-005d-492d-b0d5-64ae1fc7c3a8", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -22399,7 +22399,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3efeafaa-2b9d-4392-82bb-ce8b32f96985", + "id": "b229f231-067c-4da2-b14e-75ed3be1dfa2", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -22462,7 +22462,7 @@ } }, { - "id": "fb1a7f65-0288-42e6-9d65-c1441a529304", + "id": "0a6a4895-9b91-4580-b31f-de59d852a532", "name": "Create a contributors action", "request": { "name": "Create a contributors action", @@ -22506,7 +22506,7 @@ }, "response": [ { - "id": "f7fbecda-75dc-41e3-99de-33b1ed89ce4f", + "id": "17b3784f-07cc-4fbd-9a2d-52ca4a650587", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -22563,7 +22563,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2d048573-e47d-4689-bfb8-d1d2c36c1648", + "id": "5ec8fa65-4cda-4437-8b0b-c1b953458d61", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -22620,7 +22620,7 @@ "_postman_previewlanguage": "json" }, { - "id": "22893280-3587-403a-b2b3-49db85a250fa", + "id": "bef0866d-e0eb-4083-84be-ba7d9b8fc6fa", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -22683,7 +22683,7 @@ } }, { - "id": "cd1dcd71-1a25-4fb6-b7f1-4d79362b3a62", + "id": "a07a3583-1f8f-4885-a4fb-33f050a8eada", "name": "Create a create profile action", "request": { "name": "Create a create profile action", @@ -22727,7 +22727,7 @@ }, "response": [ { - "id": "ff781b1c-3dea-42d7-a0e8-e6c0c2a82e11", + "id": "7506e1f4-0b19-48c4-be68-3cefab0c491b", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -22784,7 +22784,7 @@ "_postman_previewlanguage": "json" }, { - "id": "640f0ceb-a474-4f2b-959e-6e8c73eaaafb", + "id": "79edb9a0-2096-46c0-af46-ef377df98f56", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -22841,7 +22841,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0276875a-894d-493d-8121-3340a33eec4a", + "id": "fc4d5124-7fff-444e-bdbb-ba52e1a683a3", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -22904,7 +22904,7 @@ } }, { - "id": "788888d0-41ef-4421-9657-8c7d73f0a5cd", + "id": "7072a4e3-31ca-47d1-aa6e-fa01d1fdfb0b", "name": "Create a duplicate prevention action", "request": { "name": "Create a duplicate prevention action", @@ -22948,7 +22948,7 @@ }, "response": [ { - "id": "9521d869-7e9b-41cb-b22a-a4c06f769641", + "id": "e56dc0d0-d17b-4e8d-9313-f80af064f4a8", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -23005,7 +23005,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cf4ae952-3a0b-49ce-a33b-3c180fb23198", + "id": "f00aa663-34b3-498c-9e9d-59fd7b82ce0a", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -23062,7 +23062,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4bd3eecc-ee02-4c77-8225-1218d92b7e0f", + "id": "6e0c49b7-ba71-438a-820b-34f5b46ce9de", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -23125,7 +23125,7 @@ } }, { - "id": "b7d274ae-7909-4461-833a-13633f6aef1f", + "id": "cc937c7e-b11b-4a2d-b401-c49aed91df7e", "name": "Create an email verification action", "request": { "name": "Create an email verification action", @@ -23169,7 +23169,7 @@ }, "response": [ { - "id": "11abf39a-b630-41da-9cd6-848f58d3761e", + "id": "e95a3d8a-497a-4978-a192-1b125bdf3568", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -23226,7 +23226,7 @@ "_postman_previewlanguage": "json" }, { - "id": "80ef222c-2571-4f17-b3ab-6a02015acb67", + "id": "8f93206e-3b6f-49d6-8e01-0678c4e3bad6", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -23283,7 +23283,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c00281dd-bd95-48b0-9ded-cd5ce153c053", + "id": "eac59e5f-b882-4729-aadd-25fced6dc676", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -23346,7 +23346,7 @@ } }, { - "id": "0093ac6b-cb78-44d4-9900-1ac0144f8cd9", + "id": "2c3199fd-a78b-432f-ba75-699dc147499d", "name": "Create a fulfillment action", "request": { "name": "Create a fulfillment action", @@ -23390,7 +23390,7 @@ }, "response": [ { - "id": "bfc02bfd-5b56-45f1-a580-46722e9e20a9", + "id": "b71a449a-1671-4d6e-a7fe-f40d51efee3e", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -23447,7 +23447,7 @@ "_postman_previewlanguage": "json" }, { - "id": "25a08a91-66d7-43c7-9a22-9d00315540f5", + "id": "6e2aba4c-2f82-4ded-9130-89a21891fe23", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -23504,7 +23504,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f53777a9-82e3-4022-a86a-898b0b0863fc", + "id": "8cb1535f-ac62-4956-be64-3666b7f6945b", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -23567,7 +23567,7 @@ } }, { - "id": "eceb8af1-c812-46ca-bb3d-303cb9ef4b36", + "id": "ce39fdc6-3f8f-4ccc-bbef-cafcd45801bd", "name": "Create an identity proofing action", "request": { "name": "Create an identity proofing action", @@ -23611,7 +23611,7 @@ }, "response": [ { - "id": "87d88507-a294-43b8-9645-ab6d7f61d329", + "id": "5436a622-b84a-4143-9e83-55d59c7ad7a7", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -23668,7 +23668,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8e8f0442-7e46-404b-a8b3-a4eff27c6587", + "id": "3ad2cd24-4791-4bb5-9163-52b7a4b4e4cb", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -23725,7 +23725,7 @@ "_postman_previewlanguage": "json" }, { - "id": "41f99f09-c700-41d9-8923-bdf179573710", + "id": "6be44dac-5b25-4185-baca-f7dfb0062e96", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -23788,7 +23788,7 @@ } }, { - "id": "5310cc39-e9d5-469d-9f53-c6232383dc95", + "id": "45386f49-c779-4684-8a26-db62b4925915", "name": "Create an invitation action", "request": { "name": "Create an invitation action", @@ -23832,7 +23832,7 @@ }, "response": [ { - "id": "6fcec5df-eadd-4c7f-a682-dabb34ee1fd2", + "id": "fe32b67d-1e6a-47c2-a403-f1efc1700b98", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -23889,7 +23889,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0a78ca2f-3195-4fb1-a6af-2aa6d3afd884", + "id": "765ac09a-7e56-4537-be19-a5f39aa611e0", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -23946,7 +23946,7 @@ "_postman_previewlanguage": "json" }, { - "id": "300e2234-fa81-4a4b-acae-d6a3d1d2def5", + "id": "1037712e-5c0d-4454-9a8a-66592e021114", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -24009,7 +24009,7 @@ } }, { - "id": "d6955587-1ab3-4a4c-807a-65c337853d1f", + "id": "3fe9c16b-482d-4ef5-ad32-4b1d9208746a", "name": "Create a ldap action", "request": { "name": "Create a ldap action", @@ -24053,7 +24053,7 @@ }, "response": [ { - "id": "78388e63-0795-4811-b770-aab3d1345ebf", + "id": "5f5f1a8b-a6c7-439b-afc9-0ea481c23c9d", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -24110,7 +24110,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4c83b438-8511-4005-9824-3527edd51b68", + "id": "e4903285-5ead-476e-9087-58b503c0a8d9", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -24167,7 +24167,7 @@ "_postman_previewlanguage": "json" }, { - "id": "93b8d01e-1074-4f5d-a446-8fa7952d8fc9", + "id": "57b2ca43-6ce4-44a1-8611-dbbcd4f1ef33", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -24230,7 +24230,7 @@ } }, { - "id": "25c6414a-0549-4567-b65b-c6e55177d85b", + "id": "1f1ca1f2-fef7-4d8d-a527-dec94c1d2a72", "name": "Create a notification action", "request": { "name": "Create a notification action", @@ -24274,7 +24274,7 @@ }, "response": [ { - "id": "b279e0d6-f753-4724-9cb4-d17210450612", + "id": "9dafded1-ca7c-4ffc-bcb1-6d70f5368c00", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -24331,7 +24331,7 @@ "_postman_previewlanguage": "json" }, { - "id": "289fe17c-3ce6-4189-9115-a48ac87c50fc", + "id": "a1468731-81c5-4e67-8ab9-202e80fc9238", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -24388,7 +24388,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e2a1d8ac-d08e-477b-a726-aa14f64e9bc4", + "id": "a3cee48d-e819-492d-abbb-c69e6576d91d", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -24451,7 +24451,7 @@ } }, { - "id": "a744ee42-f3e9-47f8-ba2e-1571005a28ab", + "id": "e240a14e-e7f7-4081-8ec9-7b51c651f11e", "name": "Create a password reset action", "request": { "name": "Create a password reset action", @@ -24495,7 +24495,7 @@ }, "response": [ { - "id": "878db500-703d-4373-824d-9f386d3def46", + "id": "d0154310-6810-4a38-a596-a24f296c882a", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -24552,7 +24552,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4976dab6-c821-4fce-96dc-651fe5f63db2", + "id": "6185cff4-1f80-4438-ba71-9543785b4398", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -24609,7 +24609,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6a5d6d91-868a-4c1c-9c84-142ab384c5bf", + "id": "6301105a-27dc-43de-aa2f-1ef670c1fb2f", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -24672,7 +24672,7 @@ } }, { - "id": "e40e7ffb-f3a4-44fd-b25e-6728fa670286", + "id": "71f8bde5-66bc-46c1-8911-f7d49461d32d", "name": "Create a profile check action", "request": { "name": "Create a profile check action", @@ -24716,7 +24716,7 @@ }, "response": [ { - "id": "3d82776a-2fb7-4419-97e1-d078f0846fcf", + "id": "73baeaa2-9da7-4c33-9f91-7bbbf0dcc1c8", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -24773,7 +24773,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e32dcf80-dca9-4c5e-aec2-b366fc3e7f38", + "id": "01e7e51b-cb37-4f1e-8d4a-1d84bcef3086", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -24830,7 +24830,7 @@ "_postman_previewlanguage": "json" }, { - "id": "42e0894a-4064-46be-9b86-2f81df02e89f", + "id": "50aa543e-764d-47e7-b686-d76971706107", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -24893,7 +24893,7 @@ } }, { - "id": "3b0deb28-1d78-44be-af25-49771a748c43", + "id": "b63bb6de-e2b7-4f32-8763-395ae0364761", "name": "Create a profile select action", "request": { "name": "Create a profile select action", @@ -24937,7 +24937,7 @@ }, "response": [ { - "id": "bf32346a-ed26-4825-bbe7-d3a922d85f11", + "id": "716e32ec-9d79-499a-8d19-37792d7cb5f4", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -24994,7 +24994,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9c9914c4-3db7-4eec-a0cc-b5a4194ddcda", + "id": "2f577184-dfd4-4ec0-9a66-1cf926996e0a", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -25051,7 +25051,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f9394817-8863-4a86-9435-75323156c5cb", + "id": "affea99f-8cf7-4900-b945-e99aaf09e30e", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -25114,7 +25114,7 @@ } }, { - "id": "bd9a12ab-2e78-4a85-a5de-6779e391afc0", + "id": "bdeaf927-80ed-42af-b133-23a49fe854cb", "name": "Create a request action", "request": { "name": "Create a request action", @@ -25158,7 +25158,7 @@ }, "response": [ { - "id": "22bafd8f-c2d0-4786-b0ff-b20c6530ded1", + "id": "268633f2-dbc6-4788-9e5f-e1b5cab9b1b3", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -25215,7 +25215,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0f2bc993-2c89-4171-b379-697262b57c21", + "id": "151913cd-9a80-4a65-80ef-c063b3bd09fd", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -25272,7 +25272,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fa40f371-e87d-424a-a8ad-ddf793eb58a6", + "id": "514f9342-776c-408f-9460-a4680a5a7641", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -25335,7 +25335,7 @@ } }, { - "id": "7884632b-efba-4cc2-a21e-d7da6318f543", + "id": "bbe72599-bae9-4aa1-bc9f-330693bb004a", "name": "Create a REST API action", "request": { "name": "Create a REST API action", @@ -25379,7 +25379,7 @@ }, "response": [ { - "id": "5c630f91-0935-45b7-b2cd-55982182bffb", + "id": "eb05a49c-2945-4614-a19e-65504d38734b", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -25436,7 +25436,7 @@ "_postman_previewlanguage": "json" }, { - "id": "93a2a0c4-1b4e-4916-bad9-e8cfc437ef14", + "id": "cd5ca3c4-2991-4990-a5c7-195d8debc834", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -25493,7 +25493,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6ddd9268-07c5-4805-986e-48b73c7c61e4", + "id": "3d6e6c81-563d-4fb4-b659-27ae31d49fe2", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -25556,7 +25556,7 @@ } }, { - "id": "ff5392d4-e745-4cd7-98bf-cf78c3aa79d9", + "id": "5c6da47b-c04c-42f0-9240-65e63fb24a8b", "name": "Create a review action", "request": { "name": "Create a review action", @@ -25600,7 +25600,7 @@ }, "response": [ { - "id": "78d69c2d-6c8e-447d-b2ac-7c4ad27b99bb", + "id": "54d4d014-216f-4ac6-954d-ae4ce02143dc", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -25657,7 +25657,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d6d3a8f1-40fd-43ec-b03f-79d095fd6e5b", + "id": "f994dd9b-15ce-4628-8564-11c861a7b1e3", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -25714,7 +25714,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a1d09f9b-1003-40f5-972d-22e498a7489e", + "id": "dbb8c918-cc75-4951-9f58-e5dd14534e91", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -25777,7 +25777,7 @@ } }, { - "id": "1585148c-fe6d-4567-a956-1cb45af67f77", + "id": "4774d4af-1958-497a-877d-9d6fa1bf7b74", "name": "Create a run workflow action", "request": { "name": "Create a run workflow action", @@ -25821,7 +25821,7 @@ }, "response": [ { - "id": "4e493209-329d-4a07-831f-642cfd9f29a6", + "id": "cf0b1897-ddc0-41d2-929a-38a2e7cb4484", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -25878,7 +25878,7 @@ "_postman_previewlanguage": "json" }, { - "id": "38f96228-d3b7-4588-aeb7-3fd8dd394557", + "id": "b89d6a5a-55f3-4630-826d-12e7c1006225", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -25935,7 +25935,7 @@ "_postman_previewlanguage": "json" }, { - "id": "58368a47-03f6-4b13-aebf-f979536c2be5", + "id": "04d0bf70-c802-41d0-8d55-b48ff7e0da02", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -25998,7 +25998,7 @@ } }, { - "id": "da5ad8bb-896f-4287-996e-f33e9d72ae9c", + "id": "212d7ff1-ca9e-410c-9791-123530029f94", "name": "Create a set attributes action", "request": { "name": "Create a set attributes action", @@ -26042,7 +26042,7 @@ }, "response": [ { - "id": "b44294f1-d124-4f63-98a3-1436cee76e12", + "id": "f2b20d90-d4b0-428a-b45d-6cd91e0a984c", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -26099,7 +26099,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0054aa25-6bec-40ec-9a5b-fd6ce1574587", + "id": "0a8c221a-8359-4506-8c52-5edd7f5213af", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -26156,7 +26156,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b35e5916-2314-4d3a-84c9-434b10d7a438", + "id": "a0b1999d-0051-45c3-b8c6-04d90d0c165c", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -26219,7 +26219,7 @@ } }, { - "id": "2e84d791-53c6-46b8-a65b-9df9552af253", + "id": "03f759a9-bfef-4263-a583-0c9e1410ff5f", "name": "Create set security question action", "request": { "name": "Create set security question action", @@ -26263,7 +26263,7 @@ }, "response": [ { - "id": "26c04775-b1a9-4a1e-825f-6f0bdbf0d59c", + "id": "e61d6cf4-9618-4445-927e-94ea210875ba", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -26320,7 +26320,7 @@ "_postman_previewlanguage": "json" }, { - "id": "19378b6b-a541-4a32-8b84-fb7b99141e30", + "id": "fdd255e9-6994-4887-b779-9e2b13311e2d", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -26377,7 +26377,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ec15a91d-9c28-4f5b-af19-6b3d302c6ea3", + "id": "11e5774a-bae4-45af-acb5-c1bc57fdafca", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -26440,7 +26440,7 @@ } }, { - "id": "8fccf871-c229-4886-a790-382eed7c5e0b", + "id": "a216936b-f31d-4b42-96e9-fa8bf9932047", "name": "Create a SOAP API action", "request": { "name": "Create a SOAP API action", @@ -26484,7 +26484,7 @@ }, "response": [ { - "id": "0a923247-ccd4-4c5d-9ad2-27cdebc6703e", + "id": "937be03f-f627-4065-ba63-438b95443b88", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -26541,7 +26541,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5785f76c-0650-4b79-a86d-06b7b346b8ae", + "id": "3b941007-d1ab-4678-86a3-80436752b3ae", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -26598,7 +26598,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ed8b06c5-d0c9-4ec2-8b61-df6fbfa5bc56", + "id": "cb985187-0a68-4b4c-9e95-45e1c4352108", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -26661,7 +26661,7 @@ } }, { - "id": "5d9da130-977b-4133-88c1-0dddb6f7aa9a", + "id": "2fc51463-c1a7-4517-9c62-305a3aba7d66", "name": "Create a status change action", "request": { "name": "Create a status change action", @@ -26705,7 +26705,7 @@ }, "response": [ { - "id": "756e3b67-860a-466d-a9dd-66c9fb3faa53", + "id": "0581f2da-1828-4e4b-bdf3-560e1617f1c5", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -26762,7 +26762,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bf73ee89-00ef-4807-9d01-c6ea37a1e5fe", + "id": "3a5c0807-da23-4a26-afbc-51091319fe3b", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -26819,7 +26819,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3645fa7a-9b53-43be-bc2d-0ee032afcea8", + "id": "5447e454-1397-4e5b-b103-68e9ea87bd0d", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -26882,7 +26882,7 @@ } }, { - "id": "3cd22eb0-d60f-4458-aa24-a0a6bbe4dd80", + "id": "728570c8-6acb-472d-ad76-1a6a78b0be55", "name": "Create an unassign action", "request": { "name": "Create an unassign action", @@ -26926,7 +26926,7 @@ }, "response": [ { - "id": "bf9d8318-e5ce-4f3f-8971-bab5f811204b", + "id": "f2452bbc-ed96-40c5-bc64-82e805ad51c8", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -26983,7 +26983,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bc7bbf40-fc8f-4582-af73-01c604bcad34", + "id": "7fa2b33c-141b-4908-9e5c-e96229ef1e1c", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -27040,7 +27040,7 @@ "_postman_previewlanguage": "json" }, { - "id": "00755397-4762-4c11-95d1-d6423c660db8", + "id": "8dbea294-2712-4ea8-b104-d6c5889afed3", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -27103,7 +27103,7 @@ } }, { - "id": "915f942b-61d8-4dde-8bf8-bfc6dfea5a1f", + "id": "f62851b5-9873-44f9-9ccd-76747375940e", "name": "Create an update profile action", "request": { "name": "Create an update profile action", @@ -27147,7 +27147,7 @@ }, "response": [ { - "id": "333cb6c8-1c9f-49bb-b11f-5f1754c752d6", + "id": "dd1d0e9f-d5b8-48cc-b9b7-cbc68812717f", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -27204,7 +27204,7 @@ "_postman_previewlanguage": "json" }, { - "id": "49603415-ac87-409a-9441-a1d5136f6191", + "id": "31fa3b78-f394-4833-87af-6c19d7e8d278", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -27261,7 +27261,7 @@ "_postman_previewlanguage": "json" }, { - "id": "85bad42b-7299-47e9-b640-5badf79c2fdb", + "id": "deb42d1f-b17d-49e4-997c-3a6f5e43ca17", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -27324,7 +27324,7 @@ } }, { - "id": "9768ad8a-820d-4b9e-b53d-d002485eea18", + "id": "59c04b62-10cd-4ab2-9fba-017c93afc5ab", "name": "Create a username password action", "request": { "name": "Create a username password action", @@ -27368,7 +27368,7 @@ }, "response": [ { - "id": "736d8e49-981f-45b4-b34f-33f0bab10dfb", + "id": "7c29d6c2-de50-4ac4-a982-fe624bea510b", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -27425,7 +27425,7 @@ "_postman_previewlanguage": "json" }, { - "id": "051e7ebf-d16d-4cac-bc9b-d546dafaa13e", + "id": "890c13e2-8064-4cee-b308-5534ae2dc4f8", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -27482,7 +27482,7 @@ "_postman_previewlanguage": "json" }, { - "id": "682ff00c-22af-4514-b6c2-237369833bd8", + "id": "b35f9ce9-b89e-4539-aad0-d415b203a318", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -27545,7 +27545,7 @@ } }, { - "id": "3acfb463-2cf0-4982-ac56-f72993d3ea71", + "id": "1d2eb340-361e-4fc8-87d2-b512493c7ece", "name": "Get Workflow Actions", "request": { "name": "Get Workflow Actions", @@ -27585,7 +27585,7 @@ }, "response": [ { - "id": "9614b8c0-a239-44af-833f-1c0ee59618f5", + "id": "6bedc908-c700-435b-8469-2e340f77633b", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -27638,7 +27638,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fd2f347e-b50a-45e3-bbef-d729f01d4be6", + "id": "00aef15f-3207-489c-9cd8-16c66140733c", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -27691,7 +27691,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8c01e591-4b43-4d48-9127-9bfe44a27147", + "id": "3d035782-20c3-471f-8418-5165df428746", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -27756,7 +27756,7 @@ "description": "", "item": [ { - "id": "30cea286-0880-4e7b-addd-bbe47183c5df", + "id": "e5054116-e8e3-4498-8dab-9cfeb22ac43f", "name": "Create a workflow action performer", "request": { "name": "Create a workflow action performer", @@ -27799,7 +27799,7 @@ }, "response": [ { - "id": "0257af3e-8567-4485-8c69-5fd2b0e911de", + "id": "56da968b-c176-4f37-8379-2cd0bf1f2471", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -27855,7 +27855,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f6fbba0b-3e0f-4d86-9fa0-cd8268001464", + "id": "d4feb18d-fa1d-4fff-9d9d-c7b321635ea3", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -27911,7 +27911,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3b87c39c-1d22-4068-a410-ebd5f18cbb8a", + "id": "6374670b-8f39-4e84-877e-8cc6a0d2aa7e", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -27979,7 +27979,7 @@ "description": "", "item": [ { - "id": "fea0bf11-bf32-40d8-8d19-514d958616df", + "id": "0e8f5191-0c13-44e0-9e83-d24c8e891bd2", "name": "Get workflow sessions", "request": { "name": "Get workflow sessions", @@ -28038,7 +28038,7 @@ "type": "text/plain" }, "key": "uid", - "value": "proidentaliqua ipsum reprehender" + "value": "in qui eiusmod animdolorenisi el" }, { "disabled": false, @@ -28056,7 +28056,7 @@ "type": "text/plain" }, "key": "requester_id", - "value": "ddcc300b-df84-c438-f837-90d81d0c2bdc" + "value": "urn:uuid:7f1dc9d0-8a01-cc5e-4782-40258f360dd0" }, { "disabled": false, @@ -28065,7 +28065,7 @@ "type": "text/plain" }, "key": "status", - "value": "ldap provided" + "value": "action skipped" }, { "disabled": false, @@ -28091,7 +28091,7 @@ }, "response": [ { - "id": "6cbb3862-b527-4d50-8256-27a4942e50ca", + "id": "74ba55bf-49b1-4b3c-a8bb-bc60c93f4c70", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -28145,7 +28145,7 @@ "type": "text/plain" }, "key": "uid", - "value": "proidentaliqua ipsum reprehender" + "value": "in qui eiusmod animdolorenisi el" }, { "disabled": false, @@ -28163,7 +28163,7 @@ "type": "text/plain" }, "key": "requester_id", - "value": "ddcc300b-df84-c438-f837-90d81d0c2bdc" + "value": "urn:uuid:7f1dc9d0-8a01-cc5e-4782-40258f360dd0" }, { "disabled": false, @@ -28172,7 +28172,7 @@ "type": "text/plain" }, "key": "status", - "value": "ldap provided" + "value": "action skipped" }, { "disabled": false, @@ -28211,12 +28211,12 @@ "value": "application/json" } ], - "body": "{\n \"workflow_sessions\": [\n {\n \"id\": \"c134a945-3ef9-6ead-f75a-fd403a6209c4\",\n \"uid\": \"eu nulla sed Duismagna laborum d\",\n \"workflow_id\": \"urn:uuid:32309407-4f3b-22a4-795d-8f921db570d2\",\n \"requester_id\": \"702af583-6ce5-6fd2-b5a8-01d20d3ee68e\",\n \"requester_type\": \"NeaccessUser\",\n \"profile_id\": \"0d662255-d786-10c0-bd24-3e6a5cfe5fd7\",\n \"profile_ids\": [\n \"urn:uuid:db9f72b7-4ad9-c633-b95b-fca92e931d08\",\n \"1e522932-c167-183a-2fbc-ca830ea3317e\"\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 \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n },\n {\n \"id\": \"18322750-4b0d-4d59-827b-4c630b7b6d73\",\n \"uid\": \"labore consequatlabore nulla com\",\n \"workflow_id\": \"urn:uuid:c50179c9-5690-d62e-93c1-4c059f37791f\",\n \"requester_id\": \"urn:uuid:1a5c9c61-48b8-cc27-05fa-5bd119d02d27\",\n \"requester_type\": \"NeaccessUser\",\n \"profile_id\": \"4c9d5c71-ef0d-03fa-5fb3-63057c68a795\",\n \"profile_ids\": [\n \"b7a81b79-cb72-50be-dcdc-a31cecd7ee5b\",\n \"urn:uuid:6e62451e-ca5a-0ab3-7d06-23009c933724\"\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 \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n ],\n \"_metadata\": {\n \"limit\": -24966626,\n \"offset\": 97949931,\n \"total\": -88671521,\n \"next\": \"/endpoint?limit=10&offset=60\",\n \"previous\": \"/endpoint?limit=10&offset=40\"\n }\n}", + "body": "{\n \"workflow_sessions\": [\n {\n \"id\": \"b1b9f1bf-9e08-04d8-434d-f6d9659dca96\",\n \"uid\": \"aute quisut sitincididunt minimu\",\n \"workflow_id\": \"2026982e-74f7-d032-6d25-2f3d1a6a747f\",\n \"requester_id\": \"79fb1fd8-95c7-f770-841d-ec5c786ca629\",\n \"requester_type\": \"User\",\n \"profile_id\": \"urn:uuid:646e91d5-72b4-7ddb-6a85-73b7be3c6701\",\n \"profile_ids\": [\n \"c17610d7-386e-6251-9a6d-80e2b681fa72\",\n \"urn:uuid:c24beb09-8080-804a-88eb-c01e870b6459\"\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 \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n },\n {\n \"id\": \"81259573-d9de-181f-2fea-617671ff3278\",\n \"uid\": \"ut velit Excepteur animid adipis\",\n \"workflow_id\": \"7658d521-0272-6cdb-27b4-ce2b50472b06\",\n \"requester_id\": \"urn:uuid:5c0c7d1e-524f-d877-8778-5b214a0925c9\",\n \"requester_type\": \"User\",\n \"profile_id\": \"c64c8580-52db-6a49-0054-bf3771d8c3b1\",\n \"profile_ids\": [\n \"urn:uuid:d3102bdf-49b3-7c33-a3e1-643a76eff40b\",\n \"urn:uuid:0d502d2e-5ed1-030a-6a98-b4fb0b2753bd\"\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 \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n ],\n \"_metadata\": {\n \"limit\": 59025926,\n \"offset\": -57231090,\n \"total\": 71684319,\n \"next\": \"/endpoint?limit=10&offset=60\",\n \"previous\": \"/endpoint?limit=10&offset=40\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "008a2cc5-83e2-4472-b0a1-b23e2b5b28fa", + "id": "1293fda5-931c-4175-b00a-e493a4e6c79d", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -28270,7 +28270,7 @@ "type": "text/plain" }, "key": "uid", - "value": "proidentaliqua ipsum reprehender" + "value": "in qui eiusmod animdolorenisi el" }, { "disabled": false, @@ -28288,7 +28288,7 @@ "type": "text/plain" }, "key": "requester_id", - "value": "ddcc300b-df84-c438-f837-90d81d0c2bdc" + "value": "urn:uuid:7f1dc9d0-8a01-cc5e-4782-40258f360dd0" }, { "disabled": false, @@ -28297,7 +28297,7 @@ "type": "text/plain" }, "key": "status", - "value": "ldap provided" + "value": "action skipped" }, { "disabled": false, @@ -28341,7 +28341,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d48de501-5409-44cf-9b81-e7f02519e926", + "id": "d2305522-7a38-4752-9337-538a5d6a9eb4", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -28395,7 +28395,7 @@ "type": "text/plain" }, "key": "uid", - "value": "proidentaliqua ipsum reprehender" + "value": "in qui eiusmod animdolorenisi el" }, { "disabled": false, @@ -28413,7 +28413,7 @@ "type": "text/plain" }, "key": "requester_id", - "value": "ddcc300b-df84-c438-f837-90d81d0c2bdc" + "value": "urn:uuid:7f1dc9d0-8a01-cc5e-4782-40258f360dd0" }, { "disabled": false, @@ -28422,7 +28422,7 @@ "type": "text/plain" }, "key": "status", - "value": "ldap provided" + "value": "action skipped" }, { "disabled": false, @@ -28472,7 +28472,7 @@ } }, { - "id": "da1de625-6165-4753-bc63-c46d6537a989", + "id": "d3230d9b-3651-4e0e-b9c5-0d795d1d1ac0", "name": "Create a workflow session", "request": { "name": "Create a workflow session", @@ -28513,7 +28513,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"workflow_session\": {\n \"workflow_id\": \"2cfaf19e-8e41-0a00-cac2-6048846eb67b\",\n \"requester_id\": \"urn:uuid:4ef82479-5c6f-adc5-77bd-32aed5c6441f\",\n \"requester_type\": \"NeprofileUser\",\n \"profile_id\": \"53b2c121-dab7-b27a-bb69-553b853d9022\",\n \"profile_ids\": [\n \"urn:uuid:4f462a70-fa8b-98f3-77d2-e41f6fac7551\",\n \"urn:uuid:33f08e5a-fd00-3070-ff4e-b639d0e703b3\"\n ],\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n}", + "raw": "{\n \"workflow_session\": {\n \"workflow_id\": \"urn:uuid:bd92445e-99a2-8d5c-e853-d54e9fbea44b\",\n \"requester_id\": \"59ea38a2-a875-030d-d235-9395d01eb307\",\n \"requester_type\": \"NeprofileUser\",\n \"profile_id\": \"urn:uuid:0b767991-40b2-e28c-b1ea-da8f46d8e668\",\n \"profile_ids\": [\n \"urn:uuid:c4eb2341-8558-5149-d31b-af25dfdf744c\",\n \"urn:uuid:da3401c4-eebe-977f-9cdc-26ff5babab2a\"\n ],\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -28525,7 +28525,7 @@ }, "response": [ { - "id": "9bcc3cdf-23a7-40b5-b206-1a951b867b4f", + "id": "18a73c41-4fff-4460-b609-495fa2cd5b07", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -28569,7 +28569,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"workflow_session\": {\n \"workflow_id\": \"2cfaf19e-8e41-0a00-cac2-6048846eb67b\",\n \"requester_id\": \"urn:uuid:4ef82479-5c6f-adc5-77bd-32aed5c6441f\",\n \"requester_type\": \"NeprofileUser\",\n \"profile_id\": \"53b2c121-dab7-b27a-bb69-553b853d9022\",\n \"profile_ids\": [\n \"urn:uuid:4f462a70-fa8b-98f3-77d2-e41f6fac7551\",\n \"urn:uuid:33f08e5a-fd00-3070-ff4e-b639d0e703b3\"\n ],\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n}", + "raw": "{\n \"workflow_session\": {\n \"workflow_id\": \"urn:uuid:bd92445e-99a2-8d5c-e853-d54e9fbea44b\",\n \"requester_id\": \"59ea38a2-a875-030d-d235-9395d01eb307\",\n \"requester_type\": \"NeprofileUser\",\n \"profile_id\": \"urn:uuid:0b767991-40b2-e28c-b1ea-da8f46d8e668\",\n \"profile_ids\": [\n \"urn:uuid:c4eb2341-8558-5149-d31b-af25dfdf744c\",\n \"urn:uuid:da3401c4-eebe-977f-9cdc-26ff5babab2a\"\n ],\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -28586,12 +28586,12 @@ "value": "application/json" } ], - "body": "{\n \"workflow_session\": {\n \"id\": \"57ab301c-2c71-036e-7330-ac4ebc20997b\",\n \"uid\": \"sint irureincididunt Ut voluptat\",\n \"workflow_id\": \"urn:uuid:b498e6b6-1628-f481-1f4d-921d29bbfed7\",\n \"requester_id\": \"urn:uuid:3a1eb6b0-1dc4-bd0e-8a02-2dc890eb5f68\",\n \"requester_type\": \"NeaccessUser\",\n \"profile_id\": \"urn:uuid:0f332789-ab51-a171-e9ef-56e5d98afe71\",\n \"profile_ids\": [\n \"urn:uuid:fb9ff629-8907-71e0-3e77-ccb176d5c0e2\",\n \"e0ba956b-5266-e370-8ebd-645c5c3eba62\"\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 \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n}", + "body": "{\n \"workflow_session\": {\n \"id\": \"f896902c-1330-4b85-a6a0-0823601e3230\",\n \"uid\": \"sinttempor ut dolor mollit velit\",\n \"workflow_id\": \"933fe687-ea47-9183-39f1-83da48708393\",\n \"requester_id\": \"urn:uuid:a7b3100e-5fff-e475-78c7-15fc25b2a463\",\n \"requester_type\": \"NeaccessUser\",\n \"profile_id\": \"urn:uuid:dd101acd-ba0e-ed1c-d2cd-07e30b903f0f\",\n \"profile_ids\": [\n \"urn:uuid:18b94868-f363-81e8-a5be-9b14b85acc12\",\n \"1fbadf50-233b-7c2e-6739-e15c347e6abe\"\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 \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "cb423aa9-e10d-48e1-9c55-9069a288c780", + "id": "3c26df44-419a-4816-a556-9c473c342669", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -28635,7 +28635,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"workflow_session\": {\n \"workflow_id\": \"2cfaf19e-8e41-0a00-cac2-6048846eb67b\",\n \"requester_id\": \"urn:uuid:4ef82479-5c6f-adc5-77bd-32aed5c6441f\",\n \"requester_type\": \"NeprofileUser\",\n \"profile_id\": \"53b2c121-dab7-b27a-bb69-553b853d9022\",\n \"profile_ids\": [\n \"urn:uuid:4f462a70-fa8b-98f3-77d2-e41f6fac7551\",\n \"urn:uuid:33f08e5a-fd00-3070-ff4e-b639d0e703b3\"\n ],\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n}", + "raw": "{\n \"workflow_session\": {\n \"workflow_id\": \"urn:uuid:bd92445e-99a2-8d5c-e853-d54e9fbea44b\",\n \"requester_id\": \"59ea38a2-a875-030d-d235-9395d01eb307\",\n \"requester_type\": \"NeprofileUser\",\n \"profile_id\": \"urn:uuid:0b767991-40b2-e28c-b1ea-da8f46d8e668\",\n \"profile_ids\": [\n \"urn:uuid:c4eb2341-8558-5149-d31b-af25dfdf744c\",\n \"urn:uuid:da3401c4-eebe-977f-9cdc-26ff5babab2a\"\n ],\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -28657,7 +28657,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9adeaa5b-a563-4aa4-98e0-8cc81a7e9406", + "id": "aeac0e38-8ad5-4d74-976c-168f357886cb", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -28701,7 +28701,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"workflow_session\": {\n \"workflow_id\": \"2cfaf19e-8e41-0a00-cac2-6048846eb67b\",\n \"requester_id\": \"urn:uuid:4ef82479-5c6f-adc5-77bd-32aed5c6441f\",\n \"requester_type\": \"NeprofileUser\",\n \"profile_id\": \"53b2c121-dab7-b27a-bb69-553b853d9022\",\n \"profile_ids\": [\n \"urn:uuid:4f462a70-fa8b-98f3-77d2-e41f6fac7551\",\n \"urn:uuid:33f08e5a-fd00-3070-ff4e-b639d0e703b3\"\n ],\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n}", + "raw": "{\n \"workflow_session\": {\n \"workflow_id\": \"urn:uuid:bd92445e-99a2-8d5c-e853-d54e9fbea44b\",\n \"requester_id\": \"59ea38a2-a875-030d-d235-9395d01eb307\",\n \"requester_type\": \"NeprofileUser\",\n \"profile_id\": \"urn:uuid:0b767991-40b2-e28c-b1ea-da8f46d8e668\",\n \"profile_ids\": [\n \"urn:uuid:c4eb2341-8558-5149-d31b-af25dfdf744c\",\n \"urn:uuid:da3401c4-eebe-977f-9cdc-26ff5babab2a\"\n ],\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -28729,7 +28729,7 @@ } }, { - "id": "7893d734-0af5-4c1e-8fbe-26ee9a6c1b1c", + "id": "5dc40d4c-4fc5-40ec-a483-561603c92b21", "name": "Find workflow session by id", "request": { "name": "Find workflow session by id", @@ -28771,7 +28771,7 @@ }, "response": [ { - "id": "efc2a2ea-ab4c-467f-b084-0e000a65cd9b", + "id": "8d14ca61-50b1-4f3d-a531-66e9f761e531", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -28810,12 +28810,12 @@ "value": "application/json" } ], - "body": "{\n \"workflow_session\": {\n \"id\": \"57ab301c-2c71-036e-7330-ac4ebc20997b\",\n \"uid\": \"sint irureincididunt Ut voluptat\",\n \"workflow_id\": \"urn:uuid:b498e6b6-1628-f481-1f4d-921d29bbfed7\",\n \"requester_id\": \"urn:uuid:3a1eb6b0-1dc4-bd0e-8a02-2dc890eb5f68\",\n \"requester_type\": \"NeaccessUser\",\n \"profile_id\": \"urn:uuid:0f332789-ab51-a171-e9ef-56e5d98afe71\",\n \"profile_ids\": [\n \"urn:uuid:fb9ff629-8907-71e0-3e77-ccb176d5c0e2\",\n \"e0ba956b-5266-e370-8ebd-645c5c3eba62\"\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 \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n}", + "body": "{\n \"workflow_session\": {\n \"id\": \"f896902c-1330-4b85-a6a0-0823601e3230\",\n \"uid\": \"sinttempor ut dolor mollit velit\",\n \"workflow_id\": \"933fe687-ea47-9183-39f1-83da48708393\",\n \"requester_id\": \"urn:uuid:a7b3100e-5fff-e475-78c7-15fc25b2a463\",\n \"requester_type\": \"NeaccessUser\",\n \"profile_id\": \"urn:uuid:dd101acd-ba0e-ed1c-d2cd-07e30b903f0f\",\n \"profile_ids\": [\n \"urn:uuid:18b94868-f363-81e8-a5be-9b14b85acc12\",\n \"1fbadf50-233b-7c2e-6739-e15c347e6abe\"\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 \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "83e8eb1b-c1ed-49cb-96f1-a11f24eebae5", + "id": "4c3c6104-af05-4e0b-a768-bd7e965ca532", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -28859,7 +28859,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b884fc86-7bd9-460d-bfcf-2cb598b01448", + "id": "0ea80d28-9359-49d5-8b42-a6f8dbc2a666", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -28909,7 +28909,7 @@ } }, { - "id": "6a2c4104-9202-4eeb-8f6a-3a8b532a0e27", + "id": "8c13ca77-a0f5-4181-aa95-d387552d462a", "name": "Update a workflow session by id", "request": { "name": "Update a workflow session by id", @@ -28962,7 +28962,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"workflow_session\": {\n \"workflow_id\": \"urn:uuid:94527d39-45a1-1077-7759-ea28259cd527\",\n \"requester_id\": \"749506fd-7ae5-882c-0d22-4bd13c665628\",\n \"requester_type\": \"NeaccessUser\",\n \"profile_id\": \"cb381e96-666e-0ede-5822-eb6fd2c13e46\",\n \"profile_ids\": [\n \"3605396d-6aa3-69fa-4d26-7c23eeeb9817\",\n \"8de065b6-549b-21a3-6094-e93a531df36d\"\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 \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n}", + "raw": "{\n \"workflow_session\": {\n \"workflow_id\": \"urn:uuid:c0585f28-d0dd-fb5e-8f75-523d7448f8fe\",\n \"requester_id\": \"urn:uuid:dac1b8d1-0e35-4374-8c74-6a888c29c5ee\",\n \"requester_type\": \"NeaccessUser\",\n \"profile_id\": \"a110bfca-bfb5-1a68-37bb-f250a1438362\",\n \"profile_ids\": [\n \"228f666c-61eb-dbfd-50dc-c7bb99c8c1db\",\n \"urn:uuid:9d6f0756-827d-b3bd-5470-8078d0b129c1\"\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 \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -28974,7 +28974,7 @@ }, "response": [ { - "id": "be980dcf-c7a2-439e-98c3-b0d500defba4", + "id": "ee32caa7-fae5-4a25-918e-258316f428df", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -29019,7 +29019,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"workflow_session\": {\n \"workflow_id\": \"urn:uuid:94527d39-45a1-1077-7759-ea28259cd527\",\n \"requester_id\": \"749506fd-7ae5-882c-0d22-4bd13c665628\",\n \"requester_type\": \"NeaccessUser\",\n \"profile_id\": \"cb381e96-666e-0ede-5822-eb6fd2c13e46\",\n \"profile_ids\": [\n \"3605396d-6aa3-69fa-4d26-7c23eeeb9817\",\n \"8de065b6-549b-21a3-6094-e93a531df36d\"\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 \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n}", + "raw": "{\n \"workflow_session\": {\n \"workflow_id\": \"urn:uuid:c0585f28-d0dd-fb5e-8f75-523d7448f8fe\",\n \"requester_id\": \"urn:uuid:dac1b8d1-0e35-4374-8c74-6a888c29c5ee\",\n \"requester_type\": \"NeaccessUser\",\n \"profile_id\": \"a110bfca-bfb5-1a68-37bb-f250a1438362\",\n \"profile_ids\": [\n \"228f666c-61eb-dbfd-50dc-c7bb99c8c1db\",\n \"urn:uuid:9d6f0756-827d-b3bd-5470-8078d0b129c1\"\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 \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -29036,12 +29036,12 @@ "value": "application/json" } ], - "body": "{\n \"workflow_session\": {\n \"id\": \"57ab301c-2c71-036e-7330-ac4ebc20997b\",\n \"uid\": \"sint irureincididunt Ut voluptat\",\n \"workflow_id\": \"urn:uuid:b498e6b6-1628-f481-1f4d-921d29bbfed7\",\n \"requester_id\": \"urn:uuid:3a1eb6b0-1dc4-bd0e-8a02-2dc890eb5f68\",\n \"requester_type\": \"NeaccessUser\",\n \"profile_id\": \"urn:uuid:0f332789-ab51-a171-e9ef-56e5d98afe71\",\n \"profile_ids\": [\n \"urn:uuid:fb9ff629-8907-71e0-3e77-ccb176d5c0e2\",\n \"e0ba956b-5266-e370-8ebd-645c5c3eba62\"\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 \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n}", + "body": "{\n \"workflow_session\": {\n \"id\": \"f896902c-1330-4b85-a6a0-0823601e3230\",\n \"uid\": \"sinttempor ut dolor mollit velit\",\n \"workflow_id\": \"933fe687-ea47-9183-39f1-83da48708393\",\n \"requester_id\": \"urn:uuid:a7b3100e-5fff-e475-78c7-15fc25b2a463\",\n \"requester_type\": \"NeaccessUser\",\n \"profile_id\": \"urn:uuid:dd101acd-ba0e-ed1c-d2cd-07e30b903f0f\",\n \"profile_ids\": [\n \"urn:uuid:18b94868-f363-81e8-a5be-9b14b85acc12\",\n \"1fbadf50-233b-7c2e-6739-e15c347e6abe\"\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 \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "39858cc3-aa99-4b8b-b0ba-223f098ff7b3", + "id": "45cde1b7-d0ca-4537-a0d1-3619d504a243", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -29086,7 +29086,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"workflow_session\": {\n \"workflow_id\": \"urn:uuid:94527d39-45a1-1077-7759-ea28259cd527\",\n \"requester_id\": \"749506fd-7ae5-882c-0d22-4bd13c665628\",\n \"requester_type\": \"NeaccessUser\",\n \"profile_id\": \"cb381e96-666e-0ede-5822-eb6fd2c13e46\",\n \"profile_ids\": [\n \"3605396d-6aa3-69fa-4d26-7c23eeeb9817\",\n \"8de065b6-549b-21a3-6094-e93a531df36d\"\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 \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n}", + "raw": "{\n \"workflow_session\": {\n \"workflow_id\": \"urn:uuid:c0585f28-d0dd-fb5e-8f75-523d7448f8fe\",\n \"requester_id\": \"urn:uuid:dac1b8d1-0e35-4374-8c74-6a888c29c5ee\",\n \"requester_type\": \"NeaccessUser\",\n \"profile_id\": \"a110bfca-bfb5-1a68-37bb-f250a1438362\",\n \"profile_ids\": [\n \"228f666c-61eb-dbfd-50dc-c7bb99c8c1db\",\n \"urn:uuid:9d6f0756-827d-b3bd-5470-8078d0b129c1\"\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 \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -29108,7 +29108,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2d028467-c8dc-4c17-ab9e-012f60364850", + "id": "00857e85-2dad-4ebb-9122-f0eb2b241a2a", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -29153,7 +29153,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"workflow_session\": {\n \"workflow_id\": \"urn:uuid:94527d39-45a1-1077-7759-ea28259cd527\",\n \"requester_id\": \"749506fd-7ae5-882c-0d22-4bd13c665628\",\n \"requester_type\": \"NeaccessUser\",\n \"profile_id\": \"cb381e96-666e-0ede-5822-eb6fd2c13e46\",\n \"profile_ids\": [\n \"3605396d-6aa3-69fa-4d26-7c23eeeb9817\",\n \"8de065b6-549b-21a3-6094-e93a531df36d\"\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 \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n}", + "raw": "{\n \"workflow_session\": {\n \"workflow_id\": \"urn:uuid:c0585f28-d0dd-fb5e-8f75-523d7448f8fe\",\n \"requester_id\": \"urn:uuid:dac1b8d1-0e35-4374-8c74-6a888c29c5ee\",\n \"requester_type\": \"NeaccessUser\",\n \"profile_id\": \"a110bfca-bfb5-1a68-37bb-f250a1438362\",\n \"profile_ids\": [\n \"228f666c-61eb-dbfd-50dc-c7bb99c8c1db\",\n \"urn:uuid:9d6f0756-827d-b3bd-5470-8078d0b129c1\"\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 \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -29181,7 +29181,7 @@ } }, { - "id": "ef5db996-33e6-42b4-8d4f-ae442fc9d4bf", + "id": "19dc00d3-30b5-49ce-9a12-55ca384c0247", "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", @@ -29235,7 +29235,7 @@ }, "response": [ { - "id": "a2800058-2826-470b-90ac-0b8250064947", + "id": "c08ef727-dbeb-4d21-b569-d3885e3b3878", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -29276,12 +29276,12 @@ "value": "application/json" } ], - "body": "{\n \"url\": \"ut eiusmod do eu\"\n}", + "body": "{\n \"url\": \"est ipsum reprehenderit aute Lorem\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "42376849-aa6a-4958-910f-97e636cc0137", + "id": "3941ecb3-79b5-4270-b6aa-25124c505343", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -29327,7 +29327,7 @@ "_postman_previewlanguage": "json" }, { - "id": "272842bf-a726-4d38-84b8-158e30d153fc", + "id": "3b7a120d-665d-409e-aee3-5296b11bbcce", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -29379,7 +29379,7 @@ } }, { - "id": "0c472d7a-4c5d-44e4-9dd1-49b90839ccd9", + "id": "7b584b5d-53b0-4df5-9230-e3af45df548e", "name": "Uploads a new attachment attribute value to a workflow session", "request": { "name": "Uploads a new attachment attribute value to a workflow session", @@ -29441,7 +29441,7 @@ "type": "text/plain" }, "key": "file", - "value": "velit", + "value": "commodo aute ullamco repreh", "type": "text" } ] @@ -29450,7 +29450,7 @@ }, "response": [ { - "id": "e09a26e5-c471-4edf-97f7-8662baa45b14", + "id": "27834238-ba85-4160-be22-b1699096212c", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -29494,7 +29494,7 @@ "type": "text/plain" }, "key": "file", - "value": "velit", + "value": "commodo aute ullamco repreh", "type": "text" } ] @@ -29508,12 +29508,12 @@ "value": "application/json" } ], - "body": "{\n \"url\": \"ut eiusmod do eu\"\n}", + "body": "{\n \"url\": \"est ipsum reprehenderit aute Lorem\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "693a52a3-848d-4eca-a3b2-bd3b80286dca", + "id": "f5831b01-7d4e-4ac5-a37d-3e602c8215c4", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -29557,7 +29557,7 @@ "type": "text/plain" }, "key": "file", - "value": "velit", + "value": "commodo aute ullamco repreh", "type": "text" } ] @@ -29576,7 +29576,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7caa42d8-5596-4035-9247-b50e4efc15b7", + "id": "48d9d77c-7fb7-40e5-9f7b-9d2aa831df72", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -29620,7 +29620,7 @@ "type": "text/plain" }, "key": "file", - "value": "velit", + "value": "commodo aute ullamco repreh", "type": "text" } ] @@ -29651,7 +29651,7 @@ "description": "", "item": [ { - "id": "e3df1bdb-6c08-4806-a871-ea0f1acdad65", + "id": "9b0d0313-bd96-428a-984d-d9ce750390b1", "name": "Get identity proofing result data in bulk", "request": { "name": "Get identity proofing result data in bulk", @@ -29710,7 +29710,7 @@ "type": "text/plain" }, "key": "workflow_session_id", - "value": "ddcc300b-df84-c438-f837-90d81d0c2bdc" + "value": "urn:uuid:7f1dc9d0-8a01-cc5e-4782-40258f360dd0" }, { "disabled": false, @@ -29719,7 +29719,7 @@ "type": "text/plain" }, "key": "result", - "value": "pass" + "value": "fail" }, { "disabled": false, @@ -29745,7 +29745,7 @@ }, "response": [ { - "id": "bf6e27bd-4f99-4ad4-900b-7c3548a82daa", + "id": "8e494da5-30c3-427e-95d7-d5d885c4199a", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -29799,7 +29799,7 @@ "type": "text/plain" }, "key": "workflow_session_id", - "value": "ddcc300b-df84-c438-f837-90d81d0c2bdc" + "value": "urn:uuid:7f1dc9d0-8a01-cc5e-4782-40258f360dd0" }, { "disabled": false, @@ -29808,7 +29808,7 @@ "type": "text/plain" }, "key": "result", - "value": "pass" + "value": "fail" }, { "disabled": false, @@ -29847,7 +29847,7 @@ "value": "application/json" } ], - "body": "{\n \"identity_proofing_results\": [\n {\n \"id\": \"a0b0dea9-1673-ecc4-1c0d-5fca79f4ac19\",\n \"identity_proofing_action_id\": \"urn:uuid:1a818e13-2213-0a68-7132-6d70109851aa\",\n \"workflow_session_id\": \"fde4e928-6a3f-2219-785d-2371432c76e5\",\n \"profile_id\": \"urn:uuid:15071bce-3904-8512-be79-19b9f187e12f\",\n \"proofing_workflow\": \"a638720f-4f19-9c4c-a0cd-603617d00851\",\n \"result\": \"pending\",\n \"proofing_attributes\": {\n \"result\": \"approve\"\n },\n \"created_at\": \"2024-04-14T15:09:09.094Z\",\n \"updated_at\": \"1993-05-10T11:38:56.094Z\"\n },\n {\n \"id\": \"urn:uuid:926b8aa6-0d34-5689-a456-c2ee8a3708e8\",\n \"identity_proofing_action_id\": \"urn:uuid:7dbde586-8ee4-ccf4-1316-6ebb14745f86\",\n \"workflow_session_id\": \"680eb2a8-2e6e-94f9-9b0f-f2ae8424ade2\",\n \"profile_id\": \"urn:uuid:c241464e-62a7-812d-3cb6-fab6378cde86\",\n \"proofing_workflow\": \"urn:uuid:c9ada0c7-1df7-6fed-e4fb-bbd55b1ec345\",\n \"result\": \"pass\",\n \"proofing_attributes\": {\n \"result\": \"approve\"\n },\n \"created_at\": \"1982-09-18T11:33:58.099Z\",\n \"updated_at\": \"1989-12-07T12:05:41.294Z\"\n }\n ],\n \"_metadata\": {\n \"limit\": 35610152,\n \"offset\": -12110508,\n \"total\": 75133620,\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:d8e4efb6-e4b9-cf78-91fd-a4cf96edad55\",\n \"identity_proofing_action_id\": \"37127799-fa77-cf4d-08d2-88d2aea4fb0f\",\n \"workflow_session_id\": \"urn:uuid:b241f90d-abe8-0e1a-42df-5154e98a4c7f\",\n \"profile_id\": \"45cdeb27-5ad4-dcfd-d0ed-4d299530bd16\",\n \"proofing_workflow\": \"urn:uuid:bf2626d8-26db-be24-16c7-6a16caa49e10\",\n \"result\": \"fail\",\n \"proofing_attributes\": {\n \"result\": \"approve\"\n },\n \"created_at\": \"1996-12-13T09:21:54.198Z\",\n \"updated_at\": \"2010-01-24T11:41:03.308Z\"\n },\n {\n \"id\": \"4568761b-641b-a354-d9cc-66cc1b9c925b\",\n \"identity_proofing_action_id\": \"urn:uuid:4e55ae11-0d3b-be7f-2b67-301dba6190cd\",\n \"workflow_session_id\": \"0b73c91c-6343-e3ca-6a2e-9f027d61abcf\",\n \"profile_id\": \"44ff8767-4d58-d2ea-5731-748880eeb5c9\",\n \"proofing_workflow\": \"urn:uuid:7f200c60-d79b-472e-6038-50b159c3341a\",\n \"result\": \"fail\",\n \"proofing_attributes\": {\n \"result\": \"approve\"\n },\n \"created_at\": \"1964-08-20T19:23:06.536Z\",\n \"updated_at\": \"2017-05-03T21:45:13.545Z\"\n }\n ],\n \"_metadata\": {\n \"limit\": -71454318,\n \"offset\": 98099296,\n \"total\": 4704203,\n \"next\": \"/endpoint?limit=10&offset=60\",\n \"previous\": \"/endpoint?limit=10&offset=40\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -29864,7 +29864,7 @@ "description": "", "item": [ { - "id": "ac057b28-72d7-4a03-9dec-525af2a68edc", + "id": "8159a01c-74c3-4d75-87e6-7cd6ef058a2a", "name": "Get saved advanced search queries", "request": { "name": "Get saved advanced search queries", @@ -29894,7 +29894,7 @@ }, "response": [ { - "id": "7552670c-8825-442b-9ec3-654948ffde22", + "id": "bd674595-d3b9-47f3-a448-d592ac2d8926", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -29932,7 +29932,7 @@ "value": "application/json" } ], - "body": "{\n \"advanced_search\": [\n {\n \"id\": \"81806544-dab1-4e50-c1c5-404cf162cfdd\",\n \"uid\": \"consequat aliquip laborumdolor e\",\n \"label\": \"dolore\",\n \"condition_rules_attributes\": [\n {\n \"id\": \"urn:uuid:2ce96997-15f6-866a-dbc6-9fac7aa2eafd\",\n \"uid\": \"dosit quis est sunteiusmod anim \",\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"==\",\n \"value\": \"urn:uuid:5932ea2f-ce4c-7c1c-6e7f-a2880c45e5ff\"\n },\n {\n \"id\": \"urn:uuid:06e8774b-ef18-0ce7-cbb9-f56b9e242312\",\n \"uid\": \"ex reprehenderit dolorereprehend\",\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"!=\",\n \"value\": \"db6a4e36-4716-57c9-d187-54198780414a\"\n }\n ]\n },\n {\n \"id\": \"71f4eff1-b320-e68e-c658-8bba64858be6\",\n \"uid\": \"est dolor quis magnadoaute velit\",\n \"label\": \"ipsum dolore\",\n \"condition_rules_attributes\": [\n {\n \"id\": \"urn:uuid:ffe2c1d7-6c77-545d-2a60-c0a4163291a0\",\n \"uid\": \"dolore sitpariatur ea ipsumdolor\",\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"!=\",\n \"value\": \"0bf7e84b-a60a-424d-196c-6ddf52bd1297\"\n },\n {\n \"id\": \"f9eb9ef0-95b7-321c-fb5e-613b36842a3e\",\n \"uid\": \"cillum in elit irureincididuntvo\",\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"==\",\n \"value\": \"urn:uuid:bf5b3977-9a3b-ca3d-edec-81737fad6f32\"\n }\n ]\n }\n ]\n}", + "body": "{\n \"advanced_search\": [\n {\n \"id\": \"urn:uuid:ed51a1bc-268e-2235-aa10-b783a1b87b78\",\n \"uid\": \"adipisicing insuntveniam nisi of\",\n \"label\": \"aliqua\",\n \"condition_rules_attributes\": [\n {\n \"id\": \"b9a4588c-7168-fd9c-d5d6-44a5377f7d4e\",\n \"uid\": \"dolor dolore ullamco aliqua inla\",\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"!=\",\n \"value\": \"urn:uuid:289db3ae-53ff-3a64-8477-2e0abde148b9\"\n },\n {\n \"id\": \"urn:uuid:b7878a25-1fc5-83ad-ab62-3df5467241db\",\n \"uid\": \"dolor idoccaecatoccaecat velitUt\",\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"!=\",\n \"value\": \"urn:uuid:2840499f-5dd0-5e93-3128-ccbaa1a71392\"\n }\n ]\n },\n {\n \"id\": \"cdaa5630-2d00-d462-8f27-cbf39bcbfc37\",\n \"uid\": \"nostrud veniam sint incididunt a\",\n \"label\": \"sint Excepteur enim\",\n \"condition_rules_attributes\": [\n {\n \"id\": \"urn:uuid:040bf519-24cf-0c02-52d8-5a60f5e7c6ce\",\n \"uid\": \"mollit fugiat eaelit exaute eius\",\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"!=\",\n \"value\": \"38a85e4f-d5ae-ee25-5bca-3f759b1cd5c7\"\n },\n {\n \"id\": \"urn:uuid:f9249b69-bbf5-0b26-2cdd-7624ca141e27\",\n \"uid\": \"magna proidentet utsint quis Ut \",\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"!=\",\n \"value\": \"318fefac-f15f-3b9a-df55-1c091d2d1e12\"\n }\n ]\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -29943,7 +29943,7 @@ } }, { - "id": "e15b11d6-90e3-4099-88c0-23ceec3e2f3b", + "id": "30bce0bd-6ef9-43b0-8157-3f5f0031e4b0", "name": "Save an advanced search query for later use", "request": { "name": "Save an advanced search query for later use", @@ -29974,7 +29974,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"advanced_search\": {\n \"label\": \"ullamco qui occaecat\",\n \"condition_rules_attributes\": [\n {\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"!=\",\n \"value\": \"urn:uuid:79cd4a98-1d99-77de-7be8-e9e059df2ad7\"\n },\n {\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"==\",\n \"value\": \"11b99b70-2e35-9e2b-bc6f-103556217b8a\"\n }\n ]\n }\n}", + "raw": "{\n \"advanced_search\": {\n \"label\": \"paria\",\n \"condition_rules_attributes\": [\n {\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"==\",\n \"value\": \"913e3fcf-f69a-a443-86c4-a7885fff21ae\"\n },\n {\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"==\",\n \"value\": \"urn:uuid:54471352-555c-ee08-426a-5cf2d005da5b\"\n }\n ]\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -29986,7 +29986,7 @@ }, "response": [ { - "id": "80695b79-1845-49d1-aadf-c28016b3e655", + "id": "39e91d66-9568-4555-84c1-2cd6d67cfcb3", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -30020,7 +30020,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"advanced_search\": {\n \"label\": \"ullamco qui occaecat\",\n \"condition_rules_attributes\": [\n {\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"!=\",\n \"value\": \"urn:uuid:79cd4a98-1d99-77de-7be8-e9e059df2ad7\"\n },\n {\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"==\",\n \"value\": \"11b99b70-2e35-9e2b-bc6f-103556217b8a\"\n }\n ]\n }\n}", + "raw": "{\n \"advanced_search\": {\n \"label\": \"paria\",\n \"condition_rules_attributes\": [\n {\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"==\",\n \"value\": \"913e3fcf-f69a-a443-86c4-a7885fff21ae\"\n },\n {\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"==\",\n \"value\": \"urn:uuid:54471352-555c-ee08-426a-5cf2d005da5b\"\n }\n ]\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -30037,7 +30037,7 @@ "value": "application/json" } ], - "body": "{\n \"advanced_search\": {\n \"id\": \"2cb15b2b-2ee1-aa7b-9e09-a9d5fac7b0be\",\n \"uid\": \"ut culpa estnostrud ut Excepteur\",\n \"label\": \"quis voluptate mollit Ut\",\n \"condition_rules_attributes\": [\n {\n \"id\": \"urn:uuid:012f7aa2-dc32-2c63-b7ef-aee2ce51efa4\",\n \"uid\": \"amet exercitation invelit ineius\",\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"==\",\n \"value\": \"ff1e0bbd-c1b0-7807-ddca-40ccabcb0855\"\n },\n {\n \"id\": \"ddceab84-bb2e-f492-d55a-11a7cecb5440\",\n \"uid\": \"ipsumdeserunt proident Duisconse\",\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"!=\",\n \"value\": \"d960d592-a794-71fb-18ab-2f7737aa71bc\"\n }\n ]\n }\n}", + "body": "{\n \"advanced_search\": {\n \"id\": \"6f8cdb33-7a3a-7aa8-f788-6b47f34df455\",\n \"uid\": \"sintdolor reprehenderit ullamco \",\n \"label\": \"dolor\",\n \"condition_rules_attributes\": [\n {\n \"id\": \"urn:uuid:8dad7816-687c-cc0c-456f-6f96155e1745\",\n \"uid\": \"commodo officia laboreut aliqua \",\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"==\",\n \"value\": \"2e97854b-355f-1770-2584-73859d209ad9\"\n },\n {\n \"id\": \"1f944635-7ad1-1e4e-1660-261ef7a7dc7e\",\n \"uid\": \"minim do utmollit aliquip eiusmo\",\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"==\",\n \"value\": \"ae491b73-be62-5f1f-1713-41e47495fb69\"\n }\n ]\n }\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -30048,7 +30048,7 @@ } }, { - "id": "fb0f460e-c003-4a65-bc21-777d681caadf", + "id": "94ce90d4-0cff-4133-8595-e08317a34c8b", "name": "Run an advanced search for profiles, without saving the query", "request": { "name": "Run an advanced search for profiles, without saving the query", @@ -30108,7 +30108,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"advanced_search\": {\n \"label\": \"ullamco qui occaecat\",\n \"condition_rules_attributes\": [\n {\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"!=\",\n \"value\": \"urn:uuid:79cd4a98-1d99-77de-7be8-e9e059df2ad7\"\n },\n {\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"==\",\n \"value\": \"11b99b70-2e35-9e2b-bc6f-103556217b8a\"\n }\n ]\n }\n}", + "raw": "{\n \"advanced_search\": {\n \"label\": \"paria\",\n \"condition_rules_attributes\": [\n {\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"==\",\n \"value\": \"913e3fcf-f69a-a443-86c4-a7885fff21ae\"\n },\n {\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"==\",\n \"value\": \"urn:uuid:54471352-555c-ee08-426a-5cf2d005da5b\"\n }\n ]\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -30120,7 +30120,7 @@ }, "response": [ { - "id": "bea616f3-2a0f-44d6-b5d1-cb17f337558e", + "id": "5e0ea9fa-dce7-4c3a-8116-09c4dc21ed16", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -30183,7 +30183,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"advanced_search\": {\n \"label\": \"ullamco qui occaecat\",\n \"condition_rules_attributes\": [\n {\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"!=\",\n \"value\": \"urn:uuid:79cd4a98-1d99-77de-7be8-e9e059df2ad7\"\n },\n {\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"==\",\n \"value\": \"11b99b70-2e35-9e2b-bc6f-103556217b8a\"\n }\n ]\n }\n}", + "raw": "{\n \"advanced_search\": {\n \"label\": \"paria\",\n \"condition_rules_attributes\": [\n {\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"==\",\n \"value\": \"913e3fcf-f69a-a443-86c4-a7885fff21ae\"\n },\n {\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"==\",\n \"value\": \"urn:uuid:54471352-555c-ee08-426a-5cf2d005da5b\"\n }\n ]\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -30200,7 +30200,7 @@ "value": "application/json" } ], - "body": "{\n \"profiles\": [\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"Excepteur reprehenderit deserunt\",\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 \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n },\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"et ipsum elit proidentest labori\",\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 \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n ]\n}", + "body": "{\n \"profiles\": [\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"reprehenderit Lorem dolor adcomm\",\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 \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n },\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"nulla incididunt ipsum doloreDui\",\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 \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -30211,7 +30211,7 @@ } }, { - "id": "ef2396e7-89d3-43c9-b5ee-e48002aac80d", + "id": "05296fa3-e4e3-43ab-a7b4-1516f421a235", "name": "Update a saved advanced search query", "request": { "name": "Update a saved advanced search query", @@ -30254,7 +30254,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"advanced_search\": {\n \"id\": \"urn:uuid:f5eba45c-25be-488c-2fd4-4fe803d7bbdd\",\n \"label\": \"dolor magna ullamco minim\",\n \"condition_rules_attributes\": [\n {\n \"id\": \"urn:uuid:e66b5ebc-12d1-c1e9-edf3-118c9b4eb5d9\",\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"==\",\n \"value\": \"urn:uuid:1f79c76a-46f7-b43b-074d-c382efb9b441\",\n \"_destroy\": false\n },\n {\n \"id\": \"urn:uuid:f9e99355-a520-9e66-5b45-01732a1d2752\",\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"==\",\n \"value\": \"urn:uuid:c260ab66-85e2-1cf1-a005-f55fbf530226\",\n \"_destroy\": false\n }\n ]\n }\n}", + "raw": "{\n \"advanced_search\": {\n \"id\": \"urn:uuid:2f108762-f924-c6f9-e466-3b2b84903a2e\",\n \"label\": \"cupidatat aliquip tempor\",\n \"condition_rules_attributes\": [\n {\n \"id\": \"urn:uuid:2e94ef4e-a5c0-e13e-ade9-85ea05f0174e\",\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"==\",\n \"value\": \"4d32a03d-3eb8-03e9-4622-7223dcaaa754\",\n \"_destroy\": false\n },\n {\n \"id\": \"e296a05a-4fad-4fc6-e49b-d54c150e4985\",\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"!=\",\n \"value\": \"urn:uuid:f4d170f3-3613-6796-b0b6-7278715c768a\",\n \"_destroy\": false\n }\n ]\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -30266,7 +30266,7 @@ }, "response": [ { - "id": "1f322412-a20f-4c2f-969c-9fdea3fa2a69", + "id": "53ad5065-30b4-42d5-b790-a5ce80198102", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -30301,7 +30301,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"advanced_search\": {\n \"id\": \"urn:uuid:f5eba45c-25be-488c-2fd4-4fe803d7bbdd\",\n \"label\": \"dolor magna ullamco minim\",\n \"condition_rules_attributes\": [\n {\n \"id\": \"urn:uuid:e66b5ebc-12d1-c1e9-edf3-118c9b4eb5d9\",\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"==\",\n \"value\": \"urn:uuid:1f79c76a-46f7-b43b-074d-c382efb9b441\",\n \"_destroy\": false\n },\n {\n \"id\": \"urn:uuid:f9e99355-a520-9e66-5b45-01732a1d2752\",\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"==\",\n \"value\": \"urn:uuid:c260ab66-85e2-1cf1-a005-f55fbf530226\",\n \"_destroy\": false\n }\n ]\n }\n}", + "raw": "{\n \"advanced_search\": {\n \"id\": \"urn:uuid:2f108762-f924-c6f9-e466-3b2b84903a2e\",\n \"label\": \"cupidatat aliquip tempor\",\n \"condition_rules_attributes\": [\n {\n \"id\": \"urn:uuid:2e94ef4e-a5c0-e13e-ade9-85ea05f0174e\",\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"==\",\n \"value\": \"4d32a03d-3eb8-03e9-4622-7223dcaaa754\",\n \"_destroy\": false\n },\n {\n \"id\": \"e296a05a-4fad-4fc6-e49b-d54c150e4985\",\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"!=\",\n \"value\": \"urn:uuid:f4d170f3-3613-6796-b0b6-7278715c768a\",\n \"_destroy\": false\n }\n ]\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -30318,7 +30318,7 @@ "value": "application/json" } ], - "body": "{\n \"advanced_search\": {\n \"id\": \"2cb15b2b-2ee1-aa7b-9e09-a9d5fac7b0be\",\n \"uid\": \"ut culpa estnostrud ut Excepteur\",\n \"label\": \"quis voluptate mollit Ut\",\n \"condition_rules_attributes\": [\n {\n \"id\": \"urn:uuid:012f7aa2-dc32-2c63-b7ef-aee2ce51efa4\",\n \"uid\": \"amet exercitation invelit ineius\",\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"==\",\n \"value\": \"ff1e0bbd-c1b0-7807-ddca-40ccabcb0855\"\n },\n {\n \"id\": \"ddceab84-bb2e-f492-d55a-11a7cecb5440\",\n \"uid\": \"ipsumdeserunt proident Duisconse\",\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"!=\",\n \"value\": \"d960d592-a794-71fb-18ab-2f7737aa71bc\"\n }\n ]\n }\n}", + "body": "{\n \"advanced_search\": {\n \"id\": \"6f8cdb33-7a3a-7aa8-f788-6b47f34df455\",\n \"uid\": \"sintdolor reprehenderit ullamco \",\n \"label\": \"dolor\",\n \"condition_rules_attributes\": [\n {\n \"id\": \"urn:uuid:8dad7816-687c-cc0c-456f-6f96155e1745\",\n \"uid\": \"commodo officia laboreut aliqua \",\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"==\",\n \"value\": \"2e97854b-355f-1770-2584-73859d209ad9\"\n },\n {\n \"id\": \"1f944635-7ad1-1e4e-1660-261ef7a7dc7e\",\n \"uid\": \"minim do utmollit aliquip eiusmo\",\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"==\",\n \"value\": \"ae491b73-be62-5f1f-1713-41e47495fb69\"\n }\n ]\n }\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -30329,7 +30329,7 @@ } }, { - "id": "0495d9ed-d3ee-47e2-9936-1bb7b63a60c6", + "id": "d16d13fa-c387-41fb-ba4e-dd562365c1cf", "name": "Run a saved advanced search query", "request": { "name": "Run a saved advanced search query", @@ -30400,7 +30400,7 @@ }, "response": [ { - "id": "2eda8b24-165c-4114-ac89-71fdbb500095", + "id": "b62b56e5-81f1-4c8a-8391-4f53154d07a8", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -30468,7 +30468,7 @@ "value": "application/json" } ], - "body": "{\n \"profiles\": [\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"Excepteur reprehenderit deserunt\",\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 \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n },\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"et ipsum elit proidentest labori\",\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 \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n ]\n}", + "body": "{\n \"profiles\": [\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"reprehenderit Lorem dolor adcomm\",\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 \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n },\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"nulla incididunt ipsum doloreDui\",\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 \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name\",\n \"multiple_contributor_select_attribute_uid\": \"User Name,Second User Name,Third User Name\"\n }\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -30485,7 +30485,7 @@ "description": "", "item": [ { - "id": "ae51736a-43c9-453e-b5bc-b2378c686b8e", + "id": "e86917f3-d47c-42ae-8ef1-7e6ecb8e2994", "name": "Get the status of a bulk job", "request": { "name": "Get the status of a bulk job", @@ -30508,7 +30508,7 @@ "type": "text/plain" }, "key": "job_id", - "value": "esse in in tempor" + "value": "ullamco reprehenderit exercitation velit " } ], "variable": [] @@ -30525,7 +30525,7 @@ }, "response": [ { - "id": "52b364f8-18a6-441c-8423-95bdb4c52ef1", + "id": "b3ff9da5-eacd-480b-a78d-b9fb5529d690", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -30543,7 +30543,7 @@ "type": "text/plain" }, "key": "job_id", - "value": "esse in in tempor" + "value": "ullamco reprehenderit exercitation velit " } ], "variable": [] @@ -30573,12 +30573,12 @@ "value": "application/json" } ], - "body": "{\n \"uid\": \"bc9ff182-25bd-bb0e-8d43-3f98e7fd3499\",\n \"status\": \"complete\",\n \"job_type\": \"import\",\n \"job_data\": [\n {\n \"user_id\": \"bb61c824-98d1-4792-97d0-76fcc3bd3791\",\n \"manager_id\": \"urn:uuid:0545efe3-73ad-6dd9-0fa7-f6c1aee8bd2f\",\n \"errors\": [\n \"Validation error for record in job\",\n \"Validation error for record in job\"\n ]\n },\n {\n \"user_id\": \"a7776ac6-6385-4e3a-298a-7ea752abcdfb\",\n \"manager_id\": \"7061ca52-7089-e469-7c4f-ffe2a3321912\",\n \"errors\": [\n \"Validation error for record in job\",\n \"Validation error for record in job\"\n ]\n }\n ]\n}", + "body": "{\n \"uid\": \"060463b7-c17f-916a-fe4e-952cd3589d62\",\n \"status\": \"complete\",\n \"job_type\": \"import\",\n \"job_data\": [\n {\n \"user_id\": \"urn:uuid:264a4dd3-4a6d-c2d3-3eba-b175365df82a\",\n \"manager_id\": \"urn:uuid:c9bd77ef-12a2-55c6-21e6-8e437c2881ab\",\n \"errors\": [\n \"Validation error for record in job\",\n \"Validation error for record in job\"\n ]\n },\n {\n \"user_id\": \"936ba10c-4548-d2c9-69a5-a1efc5495678\",\n \"manager_id\": \"urn:uuid:84a640fd-cf1f-0f52-1783-557f6d3a59ef\",\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": "1f8f0d2f-69dd-4f50-8df1-ddf530f70856", + "id": "15d7fe10-5a05-4a1c-aa8d-998e94a6b180", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -30596,7 +30596,7 @@ "type": "text/plain" }, "key": "job_id", - "value": "esse in in tempor" + "value": "ullamco reprehenderit exercitation velit " } ], "variable": [] @@ -30631,7 +30631,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4ab2ec04-7850-43d8-8833-db08be972be3", + "id": "6e31d659-844e-4b92-abe3-8948e8c2481b", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -30649,7 +30649,7 @@ "type": "text/plain" }, "key": "job_id", - "value": "esse in in tempor" + "value": "ullamco reprehenderit exercitation velit " } ], "variable": [] @@ -30696,7 +30696,7 @@ "description": "", "item": [ { - "id": "ae478cf6-dac5-4d3a-8ae4-f3e85fc8b8b5", + "id": "ce30de50-e498-4a2d-8e61-19750521f873", "name": "Create a form", "request": { "name": "Create a form", @@ -30739,7 +30739,7 @@ }, "response": [ { - "id": "d22cc390-44cb-4a91-aeed-239b3bf3f875", + "id": "7123e012-de8e-46b0-b92b-c70c2f846ba0", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -30795,7 +30795,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5889a6d7-f5ab-4e43-9763-666135394fc4", + "id": "8a6f77dd-57a0-4089-be92-976a1a145837", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -30851,7 +30851,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7a893fb4-e9bf-401b-a492-8c88ad40d270", + "id": "de24513e-c521-416b-aad0-e1aca54e8fed", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -30919,7 +30919,7 @@ "description": "", "item": [ { - "id": "9b1e2624-ae4f-43ca-98e4-d39d73225347", + "id": "b1d49cdb-cd4e-49b3-aded-9d9e1d990c7d", "name": "Create a form attribute", "request": { "name": "Create a form attribute", @@ -30962,7 +30962,7 @@ }, "response": [ { - "id": "33b0e34c-4ac0-4e7c-8f83-d27859245f9a", + "id": "428f1ce2-b4b8-4972-a001-f46de21d008d", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -31018,7 +31018,7 @@ "_postman_previewlanguage": "json" }, { - "id": "840a19f9-7b89-482a-96cf-03ff6fed705d", + "id": "1686f172-035a-4a4a-9a03-a171d8643fd6", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -31074,7 +31074,7 @@ "_postman_previewlanguage": "json" }, { - "id": "014bb133-47b7-470e-a0dc-1b41855b471b", + "id": "d71db003-915b-42a3-8f05-dd5f3561f844", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -31160,7 +31160,7 @@ } ], "info": { - "_postman_id": "87ae51d7-a7dd-4198-a570-b55e81d0bd7b", + "_postman_id": "efbb36d9-8264-4850-9807-ac63374dddb5", "name": "NERM 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 08701cf3..e66c780f 100644 --- a/postman/collections/sailpoint-api-v3.json +++ b/postman/collections/sailpoint-api-v3.json @@ -5,12 +5,12 @@ "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": "9cab77d0-aa08-4e00-ba76-0dd1facb890c", + "id": "1ca243a5-805e-445f-a750-4fee4a5b434a", "name": "List Access Profiles", "request": { "name": "List Access Profiles", "description": { - "content": "Use this API to get a list of access profiles.\nA token with API, ORG_ADMIN, ROLE_ADMIN, ROLE_SUBADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.", + "content": "Use this API to get a list of access profiles.\nA token with API, ORG_ADMIN, ROLE_ADMIN, ROLE_SUBADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.\n>**Note:** When you filter for access profiles that have the '+' symbol in their names, the response is blank. ", "type": "text/plain" }, "url": { @@ -24,7 +24,7 @@ { "disabled": true, "description": { - "content": "If provided, filters the returned list according to what is visible to the indicated ROLE_SUBADMIN or SOURCE_SUBADMIN Identity. The value of the parameter is either an Identity ID, or the special value **me**, which is shorthand for the calling Identity's ID.\n\nA 400 Bad Request error is returned if the **for-subadmin** parameter is specified for an Identity that is not a subadmin.", + "content": "If provided, filters the returned list according to what is visible to the indicated ROLE_SUBADMIN or SOURCE_SUBADMIN identity. The value of the parameter is either an identity ID, or the special value **me**, which is shorthand for the calling identity's ID.\n\nA 400 Bad Request error is returned if the **for-subadmin** parameter is specified for an identity that is not a subadmin.", "type": "text/plain" }, "key": "for-subadmin", @@ -78,7 +78,7 @@ { "disabled": true, "description": { - "content": "If present and not empty, additionally filters access profiles to those which are assigned to the Segment(s) with the specified IDs.\n\nIf segmentation is currently unavailable, specifying this parameter results in an error.", + "content": "If present and not empty, additionally filters access profiles to those which are assigned to the segment(s) with the specified IDs.\n\nIf segmentation is currently unavailable, specifying this parameter results in an error.", "type": "text/plain" }, "key": "for-segment-ids", @@ -107,7 +107,7 @@ }, "response": [ { - "id": "ffb02df5-dd64-46d4-b488-d630b0e7db79", + "id": "6f5d493b-d354-4630-a9da-edcffc521305", "name": "List of access profiles.", "originalRequest": { "url": { @@ -121,7 +121,7 @@ { "disabled": true, "description": { - "content": "If provided, filters the returned list according to what is visible to the indicated ROLE_SUBADMIN or SOURCE_SUBADMIN Identity. The value of the parameter is either an Identity ID, or the special value **me**, which is shorthand for the calling Identity's ID.\n\nA 400 Bad Request error is returned if the **for-subadmin** parameter is specified for an Identity that is not a subadmin.", + "content": "If provided, filters the returned list according to what is visible to the indicated ROLE_SUBADMIN or SOURCE_SUBADMIN identity. The value of the parameter is either an identity ID, or the special value **me**, which is shorthand for the calling identity's ID.\n\nA 400 Bad Request error is returned if the **for-subadmin** parameter is specified for an identity that is not a subadmin.", "type": "text/plain" }, "key": "for-subadmin", @@ -175,7 +175,7 @@ { "disabled": true, "description": { - "content": "If present and not empty, additionally filters access profiles to those which are assigned to the Segment(s) with the specified IDs.\n\nIf segmentation is currently unavailable, specifying this parameter results in an error.", + "content": "If present and not empty, additionally filters access profiles to those which are assigned to the segment(s) with the specified IDs.\n\nIf segmentation is currently unavailable, specifying this parameter results in an error.", "type": "text/plain" }, "key": "for-segment-ids", @@ -223,7 +223,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c17d186a-789c-4997-9059-a2a2cbd79dc4", + "id": "088dcf51-4617-4321-898f-dfde20b4d7f9", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -237,7 +237,7 @@ { "disabled": true, "description": { - "content": "If provided, filters the returned list according to what is visible to the indicated ROLE_SUBADMIN or SOURCE_SUBADMIN Identity. The value of the parameter is either an Identity ID, or the special value **me**, which is shorthand for the calling Identity's ID.\n\nA 400 Bad Request error is returned if the **for-subadmin** parameter is specified for an Identity that is not a subadmin.", + "content": "If provided, filters the returned list according to what is visible to the indicated ROLE_SUBADMIN or SOURCE_SUBADMIN identity. The value of the parameter is either an identity ID, or the special value **me**, which is shorthand for the calling identity's ID.\n\nA 400 Bad Request error is returned if the **for-subadmin** parameter is specified for an identity that is not a subadmin.", "type": "text/plain" }, "key": "for-subadmin", @@ -291,7 +291,7 @@ { "disabled": true, "description": { - "content": "If present and not empty, additionally filters access profiles to those which are assigned to the Segment(s) with the specified IDs.\n\nIf segmentation is currently unavailable, specifying this parameter results in an error.", + "content": "If present and not empty, additionally filters access profiles to those which are assigned to the segment(s) with the specified IDs.\n\nIf segmentation is currently unavailable, specifying this parameter results in an error.", "type": "text/plain" }, "key": "for-segment-ids", @@ -339,7 +339,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f43ce730-6602-49fc-8e5b-3a289b92843b", + "id": "c8cfe984-4980-402c-b234-9bf8e2289223", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -353,7 +353,7 @@ { "disabled": true, "description": { - "content": "If provided, filters the returned list according to what is visible to the indicated ROLE_SUBADMIN or SOURCE_SUBADMIN Identity. The value of the parameter is either an Identity ID, or the special value **me**, which is shorthand for the calling Identity's ID.\n\nA 400 Bad Request error is returned if the **for-subadmin** parameter is specified for an Identity that is not a subadmin.", + "content": "If provided, filters the returned list according to what is visible to the indicated ROLE_SUBADMIN or SOURCE_SUBADMIN identity. The value of the parameter is either an identity ID, or the special value **me**, which is shorthand for the calling identity's ID.\n\nA 400 Bad Request error is returned if the **for-subadmin** parameter is specified for an identity that is not a subadmin.", "type": "text/plain" }, "key": "for-subadmin", @@ -407,7 +407,7 @@ { "disabled": true, "description": { - "content": "If present and not empty, additionally filters access profiles to those which are assigned to the Segment(s) with the specified IDs.\n\nIf segmentation is currently unavailable, specifying this parameter results in an error.", + "content": "If present and not empty, additionally filters access profiles to those which are assigned to the segment(s) with the specified IDs.\n\nIf segmentation is currently unavailable, specifying this parameter results in an error.", "type": "text/plain" }, "key": "for-segment-ids", @@ -455,7 +455,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f7760de6-6810-4f63-bbab-5a519ad32c6b", + "id": "87c98d00-68ac-4818-9183-afe7be83f9fb", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -469,7 +469,7 @@ { "disabled": true, "description": { - "content": "If provided, filters the returned list according to what is visible to the indicated ROLE_SUBADMIN or SOURCE_SUBADMIN Identity. The value of the parameter is either an Identity ID, or the special value **me**, which is shorthand for the calling Identity's ID.\n\nA 400 Bad Request error is returned if the **for-subadmin** parameter is specified for an Identity that is not a subadmin.", + "content": "If provided, filters the returned list according to what is visible to the indicated ROLE_SUBADMIN or SOURCE_SUBADMIN identity. The value of the parameter is either an identity ID, or the special value **me**, which is shorthand for the calling identity's ID.\n\nA 400 Bad Request error is returned if the **for-subadmin** parameter is specified for an identity that is not a subadmin.", "type": "text/plain" }, "key": "for-subadmin", @@ -523,7 +523,7 @@ { "disabled": true, "description": { - "content": "If present and not empty, additionally filters access profiles to those which are assigned to the Segment(s) with the specified IDs.\n\nIf segmentation is currently unavailable, specifying this parameter results in an error.", + "content": "If present and not empty, additionally filters access profiles to those which are assigned to the segment(s) with the specified IDs.\n\nIf segmentation is currently unavailable, specifying this parameter results in an error.", "type": "text/plain" }, "key": "for-segment-ids", @@ -571,7 +571,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8eacb8bd-95e8-43aa-9b48-cb3bc7006a84", + "id": "7d12c8c3-43a6-446d-a6a9-3c7fc8a9aa2c", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -585,7 +585,7 @@ { "disabled": true, "description": { - "content": "If provided, filters the returned list according to what is visible to the indicated ROLE_SUBADMIN or SOURCE_SUBADMIN Identity. The value of the parameter is either an Identity ID, or the special value **me**, which is shorthand for the calling Identity's ID.\n\nA 400 Bad Request error is returned if the **for-subadmin** parameter is specified for an Identity that is not a subadmin.", + "content": "If provided, filters the returned list according to what is visible to the indicated ROLE_SUBADMIN or SOURCE_SUBADMIN identity. The value of the parameter is either an identity ID, or the special value **me**, which is shorthand for the calling identity's ID.\n\nA 400 Bad Request error is returned if the **for-subadmin** parameter is specified for an identity that is not a subadmin.", "type": "text/plain" }, "key": "for-subadmin", @@ -639,7 +639,7 @@ { "disabled": true, "description": { - "content": "If present and not empty, additionally filters access profiles to those which are assigned to the Segment(s) with the specified IDs.\n\nIf segmentation is currently unavailable, specifying this parameter results in an error.", + "content": "If present and not empty, additionally filters access profiles to those which are assigned to the segment(s) with the specified IDs.\n\nIf segmentation is currently unavailable, specifying this parameter results in an error.", "type": "text/plain" }, "key": "for-segment-ids", @@ -687,7 +687,7 @@ "_postman_previewlanguage": "json" }, { - "id": "50bdb6de-53e6-45b6-9cc8-1c96e4aa28ce", + "id": "d3e7563e-8ca0-4af1-93c5-dc949a8b728d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -701,7 +701,7 @@ { "disabled": true, "description": { - "content": "If provided, filters the returned list according to what is visible to the indicated ROLE_SUBADMIN or SOURCE_SUBADMIN Identity. The value of the parameter is either an Identity ID, or the special value **me**, which is shorthand for the calling Identity's ID.\n\nA 400 Bad Request error is returned if the **for-subadmin** parameter is specified for an Identity that is not a subadmin.", + "content": "If provided, filters the returned list according to what is visible to the indicated ROLE_SUBADMIN or SOURCE_SUBADMIN identity. The value of the parameter is either an identity ID, or the special value **me**, which is shorthand for the calling identity's ID.\n\nA 400 Bad Request error is returned if the **for-subadmin** parameter is specified for an identity that is not a subadmin.", "type": "text/plain" }, "key": "for-subadmin", @@ -755,7 +755,7 @@ { "disabled": true, "description": { - "content": "If present and not empty, additionally filters access profiles to those which are assigned to the Segment(s) with the specified IDs.\n\nIf segmentation is currently unavailable, specifying this parameter results in an error.", + "content": "If present and not empty, additionally filters access profiles to those which are assigned to the segment(s) with the specified IDs.\n\nIf segmentation is currently unavailable, specifying this parameter results in an error.", "type": "text/plain" }, "key": "for-segment-ids", @@ -809,7 +809,7 @@ } }, { - "id": "d530017c-b6c1-4468-bbd2-ce5bb6b301db", + "id": "d0d6c34c-82c6-4e52-bb55-4fa12756f309", "name": "Create Access Profile", "request": { "name": "Create Access Profile", @@ -851,7 +851,7 @@ }, "response": [ { - "id": "452340f0-3c55-4f74-a48e-e68b68bff8fc", + "id": "58a69dd7-66e2-4f95-9698-9bbf4772eaf4", "name": "Access profile created.", "originalRequest": { "url": { @@ -907,7 +907,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f494d864-0ee2-440f-90d6-47023b65a956", + "id": "a63d8618-5f6a-417a-9f84-441e1c968348", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -963,7 +963,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9c6c8b89-abf6-4436-a682-c9dcf26448b5", + "id": "6f8dd555-3315-46e3-8ffa-5047faa4e969", "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": "1d4b151f-945d-4f49-af8f-b2c6f8f0786a", + "id": "8176b04a-11ee-4b3a-aaf7-da31c9ad0c20", "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": "a687c95a-b891-4146-b2ca-6e41f0f25859", + "id": "38ceecbf-9cea-412d-91a3-02dfa2d0049c", "name": "Too Many Requests - Returned in response to too many requests in 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": "6a467d77-b603-4970-860b-382022e0897d", + "id": "b8960da1-1a8c-4a69-aa40-08afc2bc356a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -1193,7 +1193,7 @@ } }, { - "id": "695f883a-4d89-470b-b29f-25e6b9a91d5f", + "id": "40a74de8-a312-4fb2-b1cc-b77ee4c20c1d", "name": "Get an Access Profile", "request": { "name": "Get an Access Profile", @@ -1234,7 +1234,7 @@ }, "response": [ { - "id": "28b374f0-984e-4baf-a513-524fb5e1704b", + "id": "e04a9712-c80a-4372-ae35-5cf67075e6fd", "name": "An AccessProfile", "originalRequest": { "url": { @@ -1278,7 +1278,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3d1b8927-d01a-4382-8138-646b91ac525c", + "id": "8efe47ec-196b-4378-a710-978128aca652", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -1322,7 +1322,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d5465433-ba55-40e7-ae8b-771c1bfe7bf0", + "id": "f21c1dd0-7cf5-4aa7-8ebe-4586c4599b85", "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": "915e6e04-559f-4da1-9560-641a4183dd44", + "id": "8e32b638-c9ba-4261-9ffb-cfbc912c2561", "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": "14a79f69-5d3e-42c7-97ec-2dbfc0bcd4ed", + "id": "c455c246-f8dd-4ec3-ad6e-9fd866ecf67f", "name": "Too Many Requests - Returned in response to too many requests in 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": "f8a56cab-13c4-498f-a836-b599dbb9064d", + "id": "53c82851-fc46-456c-96f5-2669325eadbe", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -1504,7 +1504,7 @@ } }, { - "id": "971ba2d2-104d-4f30-9246-bdfafaa7d79a", + "id": "b057a1d6-dabe-4a7c-ac8b-d4a86b041213", "name": "Patch a specified Access Profile", "request": { "name": "Patch a specified Access Profile", @@ -1558,7 +1558,7 @@ }, "response": [ { - "id": "ef99f1cd-3d4b-4db1-98cd-f80620306fa9", + "id": "9c085722-ea5c-41bc-991e-ccac216fc74a", "name": "Add Entitlements", "originalRequest": { "url": { @@ -1615,7 +1615,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d7a49982-fe03-4608-afc8-6d990643222c", + "id": "63e4f79b-c3be-45d3-a629-a7851b07c086", "name": "Insert Entitlement", "originalRequest": { "url": { @@ -1672,7 +1672,7 @@ "_postman_previewlanguage": "json" }, { - "id": "702407e6-3402-4c8d-b646-7bc6be60bce6", + "id": "1e0f5abf-08c3-4ea1-a302-d6d0bb46ce67", "name": "Replace Entitlements", "originalRequest": { "url": { @@ -1729,7 +1729,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c3570024-de61-449b-8ea4-ed2ea452f63c", + "id": "7f09a1f3-6edc-4cfc-9b97-fea2075d2778", "name": "Remove Entitlement", "originalRequest": { "url": { @@ -1786,7 +1786,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1c963b72-1f15-46b1-9079-3ed8bfdd95cb", + "id": "b2407b45-ce0b-4e6d-8a9a-468f8ba76295", "name": "Replace Source", "originalRequest": { "url": { @@ -1843,7 +1843,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f36ffefc-6d95-41ad-8ab0-5f5917554d2c", + "id": "7948f2a5-e2ae-4fff-a37f-8315ab8178c2", "name": "Add Entitlements", "originalRequest": { "url": { @@ -1900,7 +1900,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5415c767-b924-4bae-9545-e6904960b653", + "id": "00460f7c-a5a7-4784-a28c-e23ff4950a56", "name": "Insert Entitlement", "originalRequest": { "url": { @@ -1957,7 +1957,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f335d2e9-b188-4235-8790-e956218a029c", + "id": "21daf20c-70eb-46d5-bae1-b5cee5d6bf50", "name": "Replace Entitlements", "originalRequest": { "url": { @@ -2014,7 +2014,7 @@ "_postman_previewlanguage": "json" }, { - "id": "68e8d11b-074f-47ee-9857-50d1faacb9cc", + "id": "33f10938-7f49-42ca-aa6c-a7e64da19ff4", "name": "Remove Entitlement", "originalRequest": { "url": { @@ -2071,7 +2071,7 @@ "_postman_previewlanguage": "json" }, { - "id": "18c54569-9a44-459f-b47a-912c8d58b1b6", + "id": "2086123c-9167-4d3b-9daf-f303feec9776", "name": "Replace Source", "originalRequest": { "url": { @@ -2128,7 +2128,7 @@ "_postman_previewlanguage": "json" }, { - "id": "906314a9-da04-4d35-bbce-f0c2cd547158", + "id": "6c415c1a-eaaf-40b0-b2f6-3128fea01876", "name": "Add Entitlements", "originalRequest": { "url": { @@ -2185,7 +2185,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ab70c8f5-7931-4fa7-99f3-49c9a9b48114", + "id": "6becc694-1c00-4d6a-829f-ba8e5c9a51cd", "name": "Insert Entitlement", "originalRequest": { "url": { @@ -2242,7 +2242,7 @@ "_postman_previewlanguage": "json" }, { - "id": "45cbad06-c1dc-4ba9-b633-5ebb7dfdcc37", + "id": "aea167d9-6596-469c-9e71-226b6012d074", "name": "Replace Entitlements", "originalRequest": { "url": { @@ -2299,7 +2299,7 @@ "_postman_previewlanguage": "json" }, { - "id": "72a27730-b056-4e53-beb9-da1a4b1125e8", + "id": "819fd4fb-18f9-4854-b9ee-6740d411741d", "name": "Remove Entitlement", "originalRequest": { "url": { @@ -2356,7 +2356,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f62ea521-280e-41c3-9e3d-c517c58e92cf", + "id": "fd3d629f-1c0b-4096-b7a4-3054195624aa", "name": "Replace Source", "originalRequest": { "url": { @@ -2413,7 +2413,7 @@ "_postman_previewlanguage": "json" }, { - "id": "220da432-ba8c-45d5-9055-b4cb2a5e9ea5", + "id": "08561634-0b8b-480f-9872-e9952d54aa3c", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -2470,7 +2470,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7a5b0315-25ea-4652-aa48-a8ea73f0fecd", + "id": "b9d2e42f-cd80-47f1-800e-723cdc16b5e3", "name": "Insert Entitlement", "originalRequest": { "url": { @@ -2527,7 +2527,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8686b973-b2a4-42a4-8410-f2c665dd6ffb", + "id": "56ab88bd-3261-4b86-bcab-de8d5503a7cb", "name": "Replace Entitlements", "originalRequest": { "url": { @@ -2584,7 +2584,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3499f762-006a-4bb0-a648-059f3661b449", + "id": "826cb6f4-9ba9-43fb-85e3-503a02674838", "name": "Remove Entitlement", "originalRequest": { "url": { @@ -2641,7 +2641,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b3389130-ea83-4f44-8f24-0c0177547429", + "id": "982e9bb2-9834-44eb-a588-959ee141b73b", "name": "Replace Source", "originalRequest": { "url": { @@ -2698,7 +2698,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f599c3ab-afdc-4ff2-a859-c6a2ad22ad2c", + "id": "e24e4fdf-c133-4377-a0ad-b7a26b246dd5", "name": "Add Entitlements", "originalRequest": { "url": { @@ -2755,7 +2755,7 @@ "_postman_previewlanguage": "json" }, { - "id": "36c0e128-8326-4bea-84aa-ba630219cfe3", + "id": "cea6a1d6-b2d1-4791-8003-2bcaca7cd16d", "name": "Insert Entitlement", "originalRequest": { "url": { @@ -2812,7 +2812,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7e7ea3ef-74fd-4553-a075-83c2760a453f", + "id": "b43efaa7-dcf7-49a7-b2d2-cbe3542f56a2", "name": "Replace Entitlements", "originalRequest": { "url": { @@ -2869,7 +2869,7 @@ "_postman_previewlanguage": "json" }, { - "id": "00c5d91e-6509-4226-9b47-439fcea27d60", + "id": "0067864d-7d97-4d60-afd0-f3355610e81f", "name": "Remove Entitlement", "originalRequest": { "url": { @@ -2926,7 +2926,7 @@ "_postman_previewlanguage": "json" }, { - "id": "44761634-ac24-4980-9a45-8b947c40e1c3", + "id": "84ec9140-34cc-49f1-b892-d66ca5b22d0f", "name": "Replace Source", "originalRequest": { "url": { @@ -2983,7 +2983,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7443d1f2-b2af-4314-a2e7-2191d3117161", + "id": "3b78fb9c-5892-410f-bb1d-b94532946f44", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -3040,7 +3040,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8362704d-5872-4e13-bd7e-adcf6b23a636", + "id": "f2eaef93-4d19-407f-9e3a-c02760e51d6d", "name": "Insert Entitlement", "originalRequest": { "url": { @@ -3097,7 +3097,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cfe4266d-c610-403f-91dd-867e9cc8350a", + "id": "8cd7cdff-3a8b-493a-91d0-8aadbfe67ffa", "name": "Replace Entitlements", "originalRequest": { "url": { @@ -3154,7 +3154,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cea6f44b-b7c4-4436-9b03-080f30b1bfae", + "id": "80573d11-02bd-4891-87d0-7bef7cb26813", "name": "Remove Entitlement", "originalRequest": { "url": { @@ -3211,7 +3211,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f0802ed0-7ef7-4c48-a9ab-1b5adc29b18b", + "id": "3c555ee3-236a-4e49-9cd5-01b67d45b70d", "name": "Replace Source", "originalRequest": { "url": { @@ -3274,7 +3274,7 @@ } }, { - "id": "13de926f-61b4-4d36-befd-1a19a9c2e058", + "id": "2db668e8-745e-4a8b-83ab-db519c96703a", "name": "Delete the specified Access Profile", "request": { "name": "Delete the specified Access Profile", @@ -3315,7 +3315,7 @@ }, "response": [ { - "id": "dd8958bf-d610-41ab-9595-f8054c4c2924", + "id": "fab47c40-3c3f-4d25-9450-75e21bdf6720", "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": "a9b56c47-8e95-40ba-a111-9124c6de7ce0", + "id": "fb98264d-75cc-4226-951e-3ea64c2cdc44", "name": "Returned when an access profile cannot be deleted as it's being used.", "originalRequest": { "url": { @@ -3393,7 +3393,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8fc8544f-9025-451e-99a1-496bc59013af", + "id": "35895a37-aa37-4ece-9dbf-cea326a1da81", "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": "7cd9940a-31c3-48e2-bbc5-af0d6da12933", + "id": "87015185-846e-4d0e-aaeb-60fcebc3bca2", "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": "2bcfd5be-fe60-4096-8ba1-9413ffc149be", + "id": "eaaacc9f-f7eb-4b89-a8fa-aed9834435bc", "name": "Too Many Requests - Returned in response to too many requests in 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": "f607965c-a60e-4e94-afea-728cf54b6b60", + "id": "eadd8ab6-b775-42b2-9c39-78f59e899a44", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -3575,7 +3575,7 @@ } }, { - "id": "8a16763d-281b-4933-904f-33e24cc53ba6", + "id": "c91d7cb6-4e94-4e28-a06b-612591b6f822", "name": "Delete Access Profile(s)", "request": { "name": "Delete Access Profile(s)", @@ -3618,7 +3618,7 @@ }, "response": [ { - "id": "eba3a3b6-5259-4148-9298-aa845fd20926", + "id": "a8d46f3e-48a3-42d8-8123-c6c2287af155", "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": "22311799-6c4b-4309-ad9f-ebc140fed559", + "id": "e4518841-4d8f-4330-ae8a-d20516bd20e8", "name": "Returned if at least one deletion will be performed.", "originalRequest": { "url": { @@ -3732,7 +3732,7 @@ "_postman_previewlanguage": "json" }, { - "id": "814b20ad-f61c-4611-ac94-9ee32352ecc2", + "id": "14f09bee-8fa8-4a7f-97fe-9a0327f0841b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -3789,7 +3789,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1e7c1272-6bb9-4939-b8ec-4cb48a0b1fb8", + "id": "e100a68e-9baf-4a18-9afa-04cff0c227c6", "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": "167ce3a6-4a46-4822-91f8-64014a08c947", + "id": "47f714b4-3dbb-4bb2-9963-f7a011e563d9", "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": "9fffd08d-3f73-4052-8881-b14eae76c010", + "id": "fecee43f-a08f-42c9-8ba0-147c0b22b10a", "name": "Too Many Requests - Returned in response to too many requests in 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": "8b0092ec-3ad4-46f2-9a16-543a28bf9112", + "id": "b52426f5-67d8-4cce-aea8-7daf07056a5d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -4023,12 +4023,12 @@ } }, { - "id": "45bbab22-65aa-49a8-a308-26fb5ec25580", + "id": "a7a6a1ab-61e0-4bda-b492-9ad9d1acce9a", "name": "List Access Profile's Entitlements", "request": { "name": "List Access Profile's Entitlements", "description": { - "content": "This API lists the Entitlements associated with a given Access Profile\n\nA token with API, ORG_ADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to invoke this API. In addition, a token with SOURCE_SUBADMIN authority must have access to the Source associated with the given Access Profile", + "content": "Use this API to get a list of an access profile's entitlements. \nA token with API, ORG_ADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API. In addition, a token with SOURCE_SUBADMIN authority must have access to the source associated with the specified access profile.\n>**Note:** When you filter for access profiles that have the '+' symbol in their names, the response is blank. ", "type": "text/plain" }, "url": { @@ -4071,7 +4071,7 @@ { "disabled": true, "description": { - "content": "Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results)\n\nFiltering is supported for the following fields and operators:\n\n**id**: *eq, in*\n\n**name**: *eq, sw*\n\n**attribute**: *eq, sw*\n\n**value**: *eq, sw*\n\n**created**: *gt, lt, ge, le*\n\n**modified**: *gt, lt, ge, le*\n\n**owner.id**: *eq, in*\n\n**source.id**: *eq, in*", + "content": "Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results)\n\nFiltering is supported for the following fields and operators:\n\n**id**: *eq, in*\n\n**name**: *eq, sw*\n\n**attribute**: *eq, sw*\n\n**value**: *eq, sw*\n\n**created**: *gt, lt, ge, le*\n\n**modified**: *gt, lt, ge, le*\n\n**owner.id**: *eq, in*\n\n**source.id**: *eq, in*\n\nFiltering is not supported for access profiles and entitlements that have the '+' symbol in their names. ", "type": "text/plain" }, "key": "filters", @@ -4094,7 +4094,7 @@ "key": "id", "disabled": true, "description": { - "content": "(Required) ID of the containing Access Profile", + "content": "(Required) ID of the access profile containing the entitlements.", "type": "text/plain" } } @@ -4111,8 +4111,8 @@ }, "response": [ { - "id": "e984868e-befc-46f2-94af-be7311b42fd4", - "name": "List of Entitlements", + "id": "61bf8ba3-5519-4e88-a612-d00fc8037ef8", + "name": "List of entitlements.", "originalRequest": { "url": { "path": [ @@ -4154,7 +4154,7 @@ { "disabled": true, "description": { - "content": "Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results)\n\nFiltering is supported for the following fields and operators:\n\n**id**: *eq, in*\n\n**name**: *eq, sw*\n\n**attribute**: *eq, sw*\n\n**value**: *eq, sw*\n\n**created**: *gt, lt, ge, le*\n\n**modified**: *gt, lt, ge, le*\n\n**owner.id**: *eq, in*\n\n**source.id**: *eq, in*", + "content": "Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results)\n\nFiltering is supported for the following fields and operators:\n\n**id**: *eq, in*\n\n**name**: *eq, sw*\n\n**attribute**: *eq, sw*\n\n**value**: *eq, sw*\n\n**created**: *gt, lt, ge, le*\n\n**modified**: *gt, lt, ge, le*\n\n**owner.id**: *eq, in*\n\n**source.id**: *eq, in*\n\nFiltering is not supported for access profiles and entitlements that have the '+' symbol in their names. ", "type": "text/plain" }, "key": "filters", @@ -4202,7 +4202,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3358b591-bc4d-4810-b396-751c078d3178", + "id": "33f92193-69c7-4413-8998-0c3cd35c1464", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -4245,7 +4245,7 @@ { "disabled": true, "description": { - "content": "Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results)\n\nFiltering is supported for the following fields and operators:\n\n**id**: *eq, in*\n\n**name**: *eq, sw*\n\n**attribute**: *eq, sw*\n\n**value**: *eq, sw*\n\n**created**: *gt, lt, ge, le*\n\n**modified**: *gt, lt, ge, le*\n\n**owner.id**: *eq, in*\n\n**source.id**: *eq, in*", + "content": "Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results)\n\nFiltering is supported for the following fields and operators:\n\n**id**: *eq, in*\n\n**name**: *eq, sw*\n\n**attribute**: *eq, sw*\n\n**value**: *eq, sw*\n\n**created**: *gt, lt, ge, le*\n\n**modified**: *gt, lt, ge, le*\n\n**owner.id**: *eq, in*\n\n**source.id**: *eq, in*\n\nFiltering is not supported for access profiles and entitlements that have the '+' symbol in their names. ", "type": "text/plain" }, "key": "filters", @@ -4293,7 +4293,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1c317e77-3f25-41dd-93aa-b2c950f9d0d4", + "id": "ff2cfc40-9b59-476b-a005-fe290325e70c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -4336,7 +4336,7 @@ { "disabled": true, "description": { - "content": "Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results)\n\nFiltering is supported for the following fields and operators:\n\n**id**: *eq, in*\n\n**name**: *eq, sw*\n\n**attribute**: *eq, sw*\n\n**value**: *eq, sw*\n\n**created**: *gt, lt, ge, le*\n\n**modified**: *gt, lt, ge, le*\n\n**owner.id**: *eq, in*\n\n**source.id**: *eq, in*", + "content": "Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results)\n\nFiltering is supported for the following fields and operators:\n\n**id**: *eq, in*\n\n**name**: *eq, sw*\n\n**attribute**: *eq, sw*\n\n**value**: *eq, sw*\n\n**created**: *gt, lt, ge, le*\n\n**modified**: *gt, lt, ge, le*\n\n**owner.id**: *eq, in*\n\n**source.id**: *eq, in*\n\nFiltering is not supported for access profiles and entitlements that have the '+' symbol in their names. ", "type": "text/plain" }, "key": "filters", @@ -4384,7 +4384,7 @@ "_postman_previewlanguage": "json" }, { - "id": "95a238b9-c85e-4cf8-9962-1f6e62f0cded", + "id": "3ffab674-f2f5-4caf-b850-5f41b1d931d1", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -4427,7 +4427,7 @@ { "disabled": true, "description": { - "content": "Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results)\n\nFiltering is supported for the following fields and operators:\n\n**id**: *eq, in*\n\n**name**: *eq, sw*\n\n**attribute**: *eq, sw*\n\n**value**: *eq, sw*\n\n**created**: *gt, lt, ge, le*\n\n**modified**: *gt, lt, ge, le*\n\n**owner.id**: *eq, in*\n\n**source.id**: *eq, in*", + "content": "Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results)\n\nFiltering is supported for the following fields and operators:\n\n**id**: *eq, in*\n\n**name**: *eq, sw*\n\n**attribute**: *eq, sw*\n\n**value**: *eq, sw*\n\n**created**: *gt, lt, ge, le*\n\n**modified**: *gt, lt, ge, le*\n\n**owner.id**: *eq, in*\n\n**source.id**: *eq, in*\n\nFiltering is not supported for access profiles and entitlements that have the '+' symbol in their names. ", "type": "text/plain" }, "key": "filters", @@ -4475,7 +4475,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9fb0ba47-506b-44ce-bc87-2abd5ee15566", + "id": "adec75bd-2bc4-49f3-8607-8c2a2b848135", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -4518,7 +4518,7 @@ { "disabled": true, "description": { - "content": "Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results)\n\nFiltering is supported for the following fields and operators:\n\n**id**: *eq, in*\n\n**name**: *eq, sw*\n\n**attribute**: *eq, sw*\n\n**value**: *eq, sw*\n\n**created**: *gt, lt, ge, le*\n\n**modified**: *gt, lt, ge, le*\n\n**owner.id**: *eq, in*\n\n**source.id**: *eq, in*", + "content": "Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results)\n\nFiltering is supported for the following fields and operators:\n\n**id**: *eq, in*\n\n**name**: *eq, sw*\n\n**attribute**: *eq, sw*\n\n**value**: *eq, sw*\n\n**created**: *gt, lt, ge, le*\n\n**modified**: *gt, lt, ge, le*\n\n**owner.id**: *eq, in*\n\n**source.id**: *eq, in*\n\nFiltering is not supported for access profiles and entitlements that have the '+' symbol in their names. ", "type": "text/plain" }, "key": "filters", @@ -4566,7 +4566,7 @@ "_postman_previewlanguage": "json" }, { - "id": "389c6023-4a03-4d7b-bf0e-b6f6c7038aa4", + "id": "83caad5f-590e-43d2-ba52-d153639186c7", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -4609,7 +4609,7 @@ { "disabled": true, "description": { - "content": "Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results)\n\nFiltering is supported for the following fields and operators:\n\n**id**: *eq, in*\n\n**name**: *eq, sw*\n\n**attribute**: *eq, sw*\n\n**value**: *eq, sw*\n\n**created**: *gt, lt, ge, le*\n\n**modified**: *gt, lt, ge, le*\n\n**owner.id**: *eq, in*\n\n**source.id**: *eq, in*", + "content": "Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results)\n\nFiltering is supported for the following fields and operators:\n\n**id**: *eq, in*\n\n**name**: *eq, sw*\n\n**attribute**: *eq, sw*\n\n**value**: *eq, sw*\n\n**created**: *gt, lt, ge, le*\n\n**modified**: *gt, lt, ge, le*\n\n**owner.id**: *eq, in*\n\n**source.id**: *eq, in*\n\nFiltering is not supported for access profiles and entitlements that have the '+' symbol in their names. ", "type": "text/plain" }, "key": "filters", @@ -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": "16a8186c-86c5-4cdc-9873-b45b1fb5b73a", + "id": "5f9375a2-7ee6-463e-aa86-6dfbc47f8502", "name": "Pending Access Request Approvals List", "request": { "name": "Pending Access Request Approvals List", @@ -4754,7 +4754,7 @@ }, "response": [ { - "id": "4c6cdd94-1c38-4bf7-81e8-83d886ccec26", + "id": "6bde39d9-b07e-41c0-a12c-926088ce7d54", "name": "List of Pending Approvals.", "originalRequest": { "url": { @@ -4853,7 +4853,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3c8135a2-aa6a-4193-a968-af4e473c172a", + "id": "ca929c08-ea15-4ddd-a5b7-ee919074bf9e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -4952,7 +4952,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f0c49692-552f-465f-b74d-32cd4fdd221a", + "id": "c2d45576-c011-45e4-8785-78fa9e6cc4b3", "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": "b65a5431-1479-4e54-a137-c0f55abfa408", + "id": "8ac3a500-7d9d-4f73-8ebc-b8454151600b", "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": "d693e6ca-1205-41f2-844b-28129e26ee01", + "id": "b3a765f7-df45-4753-a491-e9b1f8df2305", "name": "Too Many Requests - Returned in response to too many requests in 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": "2ce49183-5a18-47ce-a15c-31bc0b0a9862", + "id": "191bc76a-9a92-46f7-882b-a9d7e6330b24", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -5354,7 +5354,7 @@ } }, { - "id": "54bf4658-a6b7-4038-8cfa-ccf4d5cb637b", + "id": "de233a3e-d51e-47fb-8945-dd9850c690db", "name": "Completed Access Request Approvals List", "request": { "name": "Completed Access Request Approvals List", @@ -5439,7 +5439,7 @@ }, "response": [ { - "id": "af341a6b-47f9-42a2-8055-71f2fd29b10a", + "id": "a960aa34-11b6-4c4a-af0d-fa9f677e009b", "name": "List of Completed Approvals.", "originalRequest": { "url": { @@ -5533,12 +5533,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"id12345\",\n \"name\": \"aName\",\n \"created\": \"2017-07-11T18:45:37.098Z\",\n \"modified\": \"2018-07-25T20:22:28.104Z\",\n \"requestCreated\": \"2017-07-11T18:45:35.098Z\",\n \"requestType\": \"GRANT_ACCESS\",\n \"requester\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c7180a46faadee4016fb4e018c20648\",\n \"name\": \"William Wilson\"\n },\n \"requestedFor\": [\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c4180a46faadee4016fb4e018c20626\",\n \"name\": \"Robert Robinson\"\n }\n ],\n \"reviewedBy\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c3780a46faadee4016fb4e018c20652\",\n \"name\": \"Allen Albertson\"\n },\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Support\"\n },\n \"requestedObject\": {\n \"id\": \"2c9180835d2e5168015d32f890ca1581\",\n \"name\": \"Applied Research Access\",\n \"description\": \"Access to research information, lab results, and schematics\",\n \"type\": \"ROLE\"\n },\n \"requesterComment\": {\n \"comment\": \"This is a comment.\",\n \"created\": \"2017-07-11T18:45:37.098Z\",\n \"author\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180847e25f377017e2ae8cae4650b\",\n \"name\": \"john.doe\"\n }\n },\n \"reviewerComment\": {\n \"comment\": \"This is a comment.\",\n \"created\": \"2017-07-11T18:45:37.098Z\",\n \"author\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180847e25f377017e2ae8cae4650b\",\n \"name\": \"john.doe\"\n }\n },\n \"previousReviewersComments\": [\n {\n \"comment\": \"This is a comment.\",\n \"created\": \"2017-07-11T18:45:37.098Z\",\n \"author\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180847e25f377017e2ae8cae4650b\",\n \"name\": \"john.doe\"\n }\n },\n {\n \"comment\": \"This is a comment.\",\n \"created\": \"2017-07-11T18:45:37.098Z\",\n \"author\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180847e25f377017e2ae8cae4650b\",\n \"name\": \"john.doe\"\n }\n }\n ],\n \"forwardHistory\": [\n {\n \"oldApproverName\": \"Frank Mir\",\n \"newApproverName\": \"Al Volta\",\n \"comment\": \"Forwarding from Frank to Al\",\n \"modified\": \"2019-08-23T18:52:57.398Z\",\n \"forwarderName\": \"William Wilson\",\n \"reassignmentType\": \"AUTOMATIC_REASSIGNMENT\"\n },\n {\n \"oldApproverName\": \"Frank Mir\",\n \"newApproverName\": \"Al Volta\",\n \"comment\": \"Forwarding from Frank to Al\",\n \"modified\": \"2019-08-23T18:52:57.398Z\",\n \"forwarderName\": \"William Wilson\",\n \"reassignmentType\": \"AUTOMATIC_REASSIGNMENT\"\n }\n ],\n \"commentRequiredWhenRejected\": true,\n \"state\": \"APPROVED\",\n \"removeDate\": \"2020-07-11T00:00:00Z\",\n \"removeDateUpdateRequested\": true,\n \"currentRemoveDate\": \"2020-07-11T00:00:00Z\",\n \"sodViolationContext\": {\n \"state\": \"SUCCESS\",\n \"uuid\": \"f73d16e9-a038-46c5-b217-1246e15fdbdd\",\n \"violationCheckResult\": {\n \"message\": {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n },\n \"clientMetadata\": {\n \"requestedAppName\": \"test-app\",\n \"requestedAppId\": \"2c91808f7892918f0178b78da4a305a1\"\n },\n \"violationContexts\": [\n {\n \"policy\": {\n \"type\": \"SOD_POLICY\",\n \"id\": \"0f11f2a4-7c94-4bf3-a2bd-742580fe3bde\",\n \"name\": \"Business SOD Policy\"\n },\n \"conflictingAccessCriteria\": {\n \"leftCriteria\": {\n \"criteriaList\": [\n {\n \"existing\": true,\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c918085771e9d3301773b3cb66f6398\",\n \"name\": \"My HR Entitlement\"\n },\n {\n \"existing\": true,\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c918085771e9d3301773b3cb66f6398\",\n \"name\": \"My HR Entitlement\"\n }\n ]\n },\n \"rightCriteria\": {\n \"criteriaList\": [\n {\n \"existing\": true,\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c918085771e9d3301773b3cb66f6398\",\n \"name\": \"My HR Entitlement\"\n },\n {\n \"existing\": true,\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c918085771e9d3301773b3cb66f6398\",\n \"name\": \"My HR Entitlement\"\n }\n ]\n }\n }\n },\n {\n \"policy\": {\n \"type\": \"SOD_POLICY\",\n \"id\": \"0f11f2a4-7c94-4bf3-a2bd-742580fe3bde\",\n \"name\": \"Business SOD Policy\"\n },\n \"conflictingAccessCriteria\": {\n \"leftCriteria\": {\n \"criteriaList\": [\n {\n \"existing\": true,\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c918085771e9d3301773b3cb66f6398\",\n \"name\": \"My HR Entitlement\"\n },\n {\n \"existing\": true,\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c918085771e9d3301773b3cb66f6398\",\n \"name\": \"My HR Entitlement\"\n }\n ]\n },\n \"rightCriteria\": {\n \"criteriaList\": [\n {\n \"existing\": true,\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c918085771e9d3301773b3cb66f6398\",\n \"name\": \"My HR Entitlement\"\n },\n {\n \"existing\": true,\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c918085771e9d3301773b3cb66f6398\",\n \"name\": \"My HR Entitlement\"\n }\n ]\n }\n }\n }\n ],\n \"violatedPolicies\": [\n {\n \"type\": \"SOD_POLICY\",\n \"id\": \"0f11f2a4-7c94-4bf3-a2bd-742580fe3bde\",\n \"name\": \"Business SOD Policy\"\n },\n {\n \"type\": \"SOD_POLICY\",\n \"id\": \"0f11f2a4-7c94-4bf3-a2bd-742580fe3bde\",\n \"name\": \"Business SOD Policy\"\n }\n ]\n }\n },\n \"preApprovalTriggerResult\": {\n \"comment\": \"This request was autoapproved by our automated ETS subscriber\",\n \"decision\": \"APPROVED\",\n \"reviewer\": \"Automated AR Approval\",\n \"date\": \"2022-06-07T19:18:40.748Z\"\n },\n \"clientMetadata\": {\n \"requestedAppName\": \"test-app\",\n \"requestedAppId\": \"2c91808f7892918f0178b78da4a305a1\"\n },\n \"requestedAccounts\": \"adipisicing dolor exercitation\"\n },\n {\n \"id\": \"id12345\",\n \"name\": \"aName\",\n \"created\": \"2017-07-11T18:45:37.098Z\",\n \"modified\": \"2018-07-25T20:22:28.104Z\",\n \"requestCreated\": \"2017-07-11T18:45:35.098Z\",\n \"requestType\": \"GRANT_ACCESS\",\n \"requester\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c7180a46faadee4016fb4e018c20648\",\n \"name\": \"William Wilson\"\n },\n \"requestedFor\": [\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c4180a46faadee4016fb4e018c20626\",\n \"name\": \"Robert Robinson\"\n }\n ],\n \"reviewedBy\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c3780a46faadee4016fb4e018c20652\",\n \"name\": \"Allen Albertson\"\n },\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Support\"\n },\n \"requestedObject\": {\n \"id\": \"2c9180835d2e5168015d32f890ca1581\",\n \"name\": \"Applied Research Access\",\n \"description\": \"Access to research information, lab results, and schematics\",\n \"type\": \"ROLE\"\n },\n \"requesterComment\": {\n \"comment\": \"This is a comment.\",\n \"created\": \"2017-07-11T18:45:37.098Z\",\n \"author\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180847e25f377017e2ae8cae4650b\",\n \"name\": \"john.doe\"\n }\n },\n \"reviewerComment\": {\n \"comment\": \"This is a comment.\",\n \"created\": \"2017-07-11T18:45:37.098Z\",\n \"author\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180847e25f377017e2ae8cae4650b\",\n \"name\": \"john.doe\"\n }\n },\n \"previousReviewersComments\": [\n {\n \"comment\": \"This is a comment.\",\n \"created\": \"2017-07-11T18:45:37.098Z\",\n \"author\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180847e25f377017e2ae8cae4650b\",\n \"name\": \"john.doe\"\n }\n },\n {\n \"comment\": \"This is a comment.\",\n \"created\": \"2017-07-11T18:45:37.098Z\",\n \"author\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180847e25f377017e2ae8cae4650b\",\n \"name\": \"john.doe\"\n }\n }\n ],\n \"forwardHistory\": [\n {\n \"oldApproverName\": \"Frank Mir\",\n \"newApproverName\": \"Al Volta\",\n \"comment\": \"Forwarding from Frank to Al\",\n \"modified\": \"2019-08-23T18:52:57.398Z\",\n \"forwarderName\": \"William Wilson\",\n \"reassignmentType\": \"AUTOMATIC_REASSIGNMENT\"\n },\n {\n \"oldApproverName\": \"Frank Mir\",\n \"newApproverName\": \"Al Volta\",\n \"comment\": \"Forwarding from Frank to Al\",\n \"modified\": \"2019-08-23T18:52:57.398Z\",\n \"forwarderName\": \"William Wilson\",\n \"reassignmentType\": \"AUTOMATIC_REASSIGNMENT\"\n }\n ],\n \"commentRequiredWhenRejected\": true,\n \"state\": \"APPROVED\",\n \"removeDate\": \"2020-07-11T00:00:00Z\",\n \"removeDateUpdateRequested\": true,\n \"currentRemoveDate\": \"2020-07-11T00:00:00Z\",\n \"sodViolationContext\": {\n \"state\": \"SUCCESS\",\n \"uuid\": \"f73d16e9-a038-46c5-b217-1246e15fdbdd\",\n \"violationCheckResult\": {\n \"message\": {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n },\n \"clientMetadata\": {\n \"requestedAppName\": \"test-app\",\n \"requestedAppId\": \"2c91808f7892918f0178b78da4a305a1\"\n },\n \"violationContexts\": [\n {\n \"policy\": {\n \"type\": \"SOD_POLICY\",\n \"id\": \"0f11f2a4-7c94-4bf3-a2bd-742580fe3bde\",\n \"name\": \"Business SOD Policy\"\n },\n \"conflictingAccessCriteria\": {\n \"leftCriteria\": {\n \"criteriaList\": [\n {\n \"existing\": true,\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c918085771e9d3301773b3cb66f6398\",\n \"name\": \"My HR Entitlement\"\n },\n {\n \"existing\": true,\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c918085771e9d3301773b3cb66f6398\",\n \"name\": \"My HR Entitlement\"\n }\n ]\n },\n \"rightCriteria\": {\n \"criteriaList\": [\n {\n \"existing\": true,\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c918085771e9d3301773b3cb66f6398\",\n \"name\": \"My HR Entitlement\"\n },\n {\n \"existing\": true,\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c918085771e9d3301773b3cb66f6398\",\n \"name\": \"My HR Entitlement\"\n }\n ]\n }\n }\n },\n {\n \"policy\": {\n \"type\": \"SOD_POLICY\",\n \"id\": \"0f11f2a4-7c94-4bf3-a2bd-742580fe3bde\",\n \"name\": \"Business SOD Policy\"\n },\n \"conflictingAccessCriteria\": {\n \"leftCriteria\": {\n \"criteriaList\": [\n {\n \"existing\": true,\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c918085771e9d3301773b3cb66f6398\",\n \"name\": \"My HR Entitlement\"\n },\n {\n \"existing\": true,\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c918085771e9d3301773b3cb66f6398\",\n \"name\": \"My HR Entitlement\"\n }\n ]\n },\n \"rightCriteria\": {\n \"criteriaList\": [\n {\n \"existing\": true,\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c918085771e9d3301773b3cb66f6398\",\n \"name\": \"My HR Entitlement\"\n },\n {\n \"existing\": true,\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c918085771e9d3301773b3cb66f6398\",\n \"name\": \"My HR Entitlement\"\n }\n ]\n }\n }\n }\n ],\n \"violatedPolicies\": [\n {\n \"type\": \"SOD_POLICY\",\n \"id\": \"0f11f2a4-7c94-4bf3-a2bd-742580fe3bde\",\n \"name\": \"Business SOD Policy\"\n },\n {\n \"type\": \"SOD_POLICY\",\n \"id\": \"0f11f2a4-7c94-4bf3-a2bd-742580fe3bde\",\n \"name\": \"Business SOD Policy\"\n }\n ]\n }\n },\n \"preApprovalTriggerResult\": {\n \"comment\": \"This request was autoapproved by our automated ETS subscriber\",\n \"decision\": \"APPROVED\",\n \"reviewer\": \"Automated AR Approval\",\n \"date\": \"2022-06-07T19:18:40.748Z\"\n },\n \"clientMetadata\": {\n \"requestedAppName\": \"test-app\",\n \"requestedAppId\": \"2c91808f7892918f0178b78da4a305a1\"\n },\n \"requestedAccounts\": \"Duis minim labore\"\n }\n]", + "body": "[\n {\n \"id\": \"id12345\",\n \"name\": \"aName\",\n \"created\": \"2017-07-11T18:45:37.098Z\",\n \"modified\": \"2018-07-25T20:22:28.104Z\",\n \"requestCreated\": \"2017-07-11T18:45:35.098Z\",\n \"requestType\": \"GRANT_ACCESS\",\n \"requester\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c7180a46faadee4016fb4e018c20648\",\n \"name\": \"William Wilson\"\n },\n \"requestedFor\": [\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c4180a46faadee4016fb4e018c20626\",\n \"name\": \"Robert Robinson\"\n }\n ],\n \"reviewedBy\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c3780a46faadee4016fb4e018c20652\",\n \"name\": \"Allen Albertson\"\n },\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Support\"\n },\n \"requestedObject\": {\n \"id\": \"2c9180835d2e5168015d32f890ca1581\",\n \"name\": \"Applied Research Access\",\n \"description\": \"Access to research information, lab results, and schematics\",\n \"type\": \"ROLE\"\n },\n \"requesterComment\": {\n \"comment\": \"This is a comment.\",\n \"created\": \"2017-07-11T18:45:37.098Z\",\n \"author\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180847e25f377017e2ae8cae4650b\",\n \"name\": \"john.doe\"\n }\n },\n \"reviewerComment\": {\n \"comment\": \"This is a comment.\",\n \"created\": \"2017-07-11T18:45:37.098Z\",\n \"author\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180847e25f377017e2ae8cae4650b\",\n \"name\": \"john.doe\"\n }\n },\n \"previousReviewersComments\": [\n {\n \"comment\": \"This is a comment.\",\n \"created\": \"2017-07-11T18:45:37.098Z\",\n \"author\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180847e25f377017e2ae8cae4650b\",\n \"name\": \"john.doe\"\n }\n },\n {\n \"comment\": \"This is a comment.\",\n \"created\": \"2017-07-11T18:45:37.098Z\",\n \"author\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180847e25f377017e2ae8cae4650b\",\n \"name\": \"john.doe\"\n }\n }\n ],\n \"forwardHistory\": [\n {\n \"oldApproverName\": \"Frank Mir\",\n \"newApproverName\": \"Al Volta\",\n \"comment\": \"Forwarding from Frank to Al\",\n \"modified\": \"2019-08-23T18:52:57.398Z\",\n \"forwarderName\": \"William Wilson\",\n \"reassignmentType\": \"AUTOMATIC_REASSIGNMENT\"\n },\n {\n \"oldApproverName\": \"Frank Mir\",\n \"newApproverName\": \"Al Volta\",\n \"comment\": \"Forwarding from Frank to Al\",\n \"modified\": \"2019-08-23T18:52:57.398Z\",\n \"forwarderName\": \"William Wilson\",\n \"reassignmentType\": \"AUTOMATIC_REASSIGNMENT\"\n }\n ],\n \"commentRequiredWhenRejected\": true,\n \"state\": \"APPROVED\",\n \"removeDate\": \"2020-07-11T00:00:00Z\",\n \"removeDateUpdateRequested\": true,\n \"currentRemoveDate\": \"2020-07-11T00:00:00Z\",\n \"sodViolationContext\": {\n \"state\": \"SUCCESS\",\n \"uuid\": \"f73d16e9-a038-46c5-b217-1246e15fdbdd\",\n \"violationCheckResult\": {\n \"message\": {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n },\n \"clientMetadata\": {\n \"requestedAppName\": \"test-app\",\n \"requestedAppId\": \"2c91808f7892918f0178b78da4a305a1\"\n },\n \"violationContexts\": [\n {\n \"policy\": {\n \"type\": \"SOD_POLICY\",\n \"id\": \"0f11f2a4-7c94-4bf3-a2bd-742580fe3bde\",\n \"name\": \"Business SOD Policy\"\n },\n \"conflictingAccessCriteria\": {\n \"leftCriteria\": {\n \"criteriaList\": [\n {\n \"existing\": true,\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c918085771e9d3301773b3cb66f6398\",\n \"name\": \"My HR Entitlement\"\n },\n {\n \"existing\": true,\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c918085771e9d3301773b3cb66f6398\",\n \"name\": \"My HR Entitlement\"\n }\n ]\n },\n \"rightCriteria\": {\n \"criteriaList\": [\n {\n \"existing\": true,\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c918085771e9d3301773b3cb66f6398\",\n \"name\": \"My HR Entitlement\"\n },\n {\n \"existing\": true,\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c918085771e9d3301773b3cb66f6398\",\n \"name\": \"My HR Entitlement\"\n }\n ]\n }\n }\n },\n {\n \"policy\": {\n \"type\": \"SOD_POLICY\",\n \"id\": \"0f11f2a4-7c94-4bf3-a2bd-742580fe3bde\",\n \"name\": \"Business SOD Policy\"\n },\n \"conflictingAccessCriteria\": {\n \"leftCriteria\": {\n \"criteriaList\": [\n {\n \"existing\": true,\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c918085771e9d3301773b3cb66f6398\",\n \"name\": \"My HR Entitlement\"\n },\n {\n \"existing\": true,\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c918085771e9d3301773b3cb66f6398\",\n \"name\": \"My HR Entitlement\"\n }\n ]\n },\n \"rightCriteria\": {\n \"criteriaList\": [\n {\n \"existing\": true,\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c918085771e9d3301773b3cb66f6398\",\n \"name\": \"My HR Entitlement\"\n },\n {\n \"existing\": true,\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c918085771e9d3301773b3cb66f6398\",\n \"name\": \"My HR Entitlement\"\n }\n ]\n }\n }\n }\n ],\n \"violatedPolicies\": [\n {\n \"type\": \"SOD_POLICY\",\n \"id\": \"0f11f2a4-7c94-4bf3-a2bd-742580fe3bde\",\n \"name\": \"Business SOD Policy\"\n },\n {\n \"type\": \"SOD_POLICY\",\n \"id\": \"0f11f2a4-7c94-4bf3-a2bd-742580fe3bde\",\n \"name\": \"Business SOD Policy\"\n }\n ]\n }\n },\n \"preApprovalTriggerResult\": {\n \"comment\": \"This request was autoapproved by our automated ETS subscriber\",\n \"decision\": \"APPROVED\",\n \"reviewer\": \"Automated AR Approval\",\n \"date\": \"2022-06-07T19:18:40.748Z\"\n },\n \"clientMetadata\": {\n \"requestedAppName\": \"test-app\",\n \"requestedAppId\": \"2c91808f7892918f0178b78da4a305a1\"\n },\n \"requestedAccounts\": \"dolor ut\"\n },\n {\n \"id\": \"id12345\",\n \"name\": \"aName\",\n \"created\": \"2017-07-11T18:45:37.098Z\",\n \"modified\": \"2018-07-25T20:22:28.104Z\",\n \"requestCreated\": \"2017-07-11T18:45:35.098Z\",\n \"requestType\": \"GRANT_ACCESS\",\n \"requester\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c7180a46faadee4016fb4e018c20648\",\n \"name\": \"William Wilson\"\n },\n \"requestedFor\": [\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c4180a46faadee4016fb4e018c20626\",\n \"name\": \"Robert Robinson\"\n }\n ],\n \"reviewedBy\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c3780a46faadee4016fb4e018c20652\",\n \"name\": \"Allen Albertson\"\n },\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Support\"\n },\n \"requestedObject\": {\n \"id\": \"2c9180835d2e5168015d32f890ca1581\",\n \"name\": \"Applied Research Access\",\n \"description\": \"Access to research information, lab results, and schematics\",\n \"type\": \"ROLE\"\n },\n \"requesterComment\": {\n \"comment\": \"This is a comment.\",\n \"created\": \"2017-07-11T18:45:37.098Z\",\n \"author\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180847e25f377017e2ae8cae4650b\",\n \"name\": \"john.doe\"\n }\n },\n \"reviewerComment\": {\n \"comment\": \"This is a comment.\",\n \"created\": \"2017-07-11T18:45:37.098Z\",\n \"author\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180847e25f377017e2ae8cae4650b\",\n \"name\": \"john.doe\"\n }\n },\n \"previousReviewersComments\": [\n {\n \"comment\": \"This is a comment.\",\n \"created\": \"2017-07-11T18:45:37.098Z\",\n \"author\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180847e25f377017e2ae8cae4650b\",\n \"name\": \"john.doe\"\n }\n },\n {\n \"comment\": \"This is a comment.\",\n \"created\": \"2017-07-11T18:45:37.098Z\",\n \"author\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180847e25f377017e2ae8cae4650b\",\n \"name\": \"john.doe\"\n }\n }\n ],\n \"forwardHistory\": [\n {\n \"oldApproverName\": \"Frank Mir\",\n \"newApproverName\": \"Al Volta\",\n \"comment\": \"Forwarding from Frank to Al\",\n \"modified\": \"2019-08-23T18:52:57.398Z\",\n \"forwarderName\": \"William Wilson\",\n \"reassignmentType\": \"AUTOMATIC_REASSIGNMENT\"\n },\n {\n \"oldApproverName\": \"Frank Mir\",\n \"newApproverName\": \"Al Volta\",\n \"comment\": \"Forwarding from Frank to Al\",\n \"modified\": \"2019-08-23T18:52:57.398Z\",\n \"forwarderName\": \"William Wilson\",\n \"reassignmentType\": \"AUTOMATIC_REASSIGNMENT\"\n }\n ],\n \"commentRequiredWhenRejected\": true,\n \"state\": \"APPROVED\",\n \"removeDate\": \"2020-07-11T00:00:00Z\",\n \"removeDateUpdateRequested\": true,\n \"currentRemoveDate\": \"2020-07-11T00:00:00Z\",\n \"sodViolationContext\": {\n \"state\": \"SUCCESS\",\n \"uuid\": \"f73d16e9-a038-46c5-b217-1246e15fdbdd\",\n \"violationCheckResult\": {\n \"message\": {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"The request was syntactically correct but its content is semantically invalid.\"\n },\n \"clientMetadata\": {\n \"requestedAppName\": \"test-app\",\n \"requestedAppId\": \"2c91808f7892918f0178b78da4a305a1\"\n },\n \"violationContexts\": [\n {\n \"policy\": {\n \"type\": \"SOD_POLICY\",\n \"id\": \"0f11f2a4-7c94-4bf3-a2bd-742580fe3bde\",\n \"name\": \"Business SOD Policy\"\n },\n \"conflictingAccessCriteria\": {\n \"leftCriteria\": {\n \"criteriaList\": [\n {\n \"existing\": true,\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c918085771e9d3301773b3cb66f6398\",\n \"name\": \"My HR Entitlement\"\n },\n {\n \"existing\": true,\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c918085771e9d3301773b3cb66f6398\",\n \"name\": \"My HR Entitlement\"\n }\n ]\n },\n \"rightCriteria\": {\n \"criteriaList\": [\n {\n \"existing\": true,\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c918085771e9d3301773b3cb66f6398\",\n \"name\": \"My HR Entitlement\"\n },\n {\n \"existing\": true,\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c918085771e9d3301773b3cb66f6398\",\n \"name\": \"My HR Entitlement\"\n }\n ]\n }\n }\n },\n {\n \"policy\": {\n \"type\": \"SOD_POLICY\",\n \"id\": \"0f11f2a4-7c94-4bf3-a2bd-742580fe3bde\",\n \"name\": \"Business SOD Policy\"\n },\n \"conflictingAccessCriteria\": {\n \"leftCriteria\": {\n \"criteriaList\": [\n {\n \"existing\": true,\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c918085771e9d3301773b3cb66f6398\",\n \"name\": \"My HR Entitlement\"\n },\n {\n \"existing\": true,\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c918085771e9d3301773b3cb66f6398\",\n \"name\": \"My HR Entitlement\"\n }\n ]\n },\n \"rightCriteria\": {\n \"criteriaList\": [\n {\n \"existing\": true,\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c918085771e9d3301773b3cb66f6398\",\n \"name\": \"My HR Entitlement\"\n },\n {\n \"existing\": true,\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c918085771e9d3301773b3cb66f6398\",\n \"name\": \"My HR Entitlement\"\n }\n ]\n }\n }\n }\n ],\n \"violatedPolicies\": [\n {\n \"type\": \"SOD_POLICY\",\n \"id\": \"0f11f2a4-7c94-4bf3-a2bd-742580fe3bde\",\n \"name\": \"Business SOD Policy\"\n },\n {\n \"type\": \"SOD_POLICY\",\n \"id\": \"0f11f2a4-7c94-4bf3-a2bd-742580fe3bde\",\n \"name\": \"Business SOD Policy\"\n }\n ]\n }\n },\n \"preApprovalTriggerResult\": {\n \"comment\": \"This request was autoapproved by our automated ETS subscriber\",\n \"decision\": \"APPROVED\",\n \"reviewer\": \"Automated AR Approval\",\n \"date\": \"2022-06-07T19:18:40.748Z\"\n },\n \"clientMetadata\": {\n \"requestedAppName\": \"test-app\",\n \"requestedAppId\": \"2c91808f7892918f0178b78da4a305a1\"\n },\n \"requestedAccounts\": \"occaecat cupidatat velit\"\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a4ee6017-a144-41e3-9e6a-c70e42b8181f", + "id": "89a4d19e-f8ce-4543-9eff-2ee054b03826", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -5637,7 +5637,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dcd70b52-e860-4a3c-923d-f6f3673ae777", + "id": "488f1f11-25da-480a-8abd-9aeb4416e425", "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": "59913ebc-81fd-4366-b843-f4c30533a535", + "id": "e215a507-67ca-4307-af8e-4a977efa78e2", "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": "4144d156-c811-4e30-8cff-1adbcb7fd57d", + "id": "73281547-7a3e-4766-a9d2-f0607d1afc67", "name": "Too Many Requests - Returned in response to too many requests in 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": "6a20f642-bf73-425c-8921-6f9a02f93aaf", + "id": "cb1a5c12-b292-4c71-b5c2-714f76d3ed0e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -6039,7 +6039,7 @@ } }, { - "id": "bba564df-d31b-43b6-88a9-692b4d875690", + "id": "89030fbd-f34b-4430-9473-eabd36d34783", "name": "Approve Access Request Approval", "request": { "name": "Approve Access Request Approval", @@ -6094,7 +6094,7 @@ }, "response": [ { - "id": "9021e682-1f40-4887-8d41-6d1479309b8f", + "id": "0a6ee0cd-ca45-4c3a-b0d1-a1e6cd00c48d", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -6152,7 +6152,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7d126480-d4eb-4f44-aaf1-c80740df09ee", + "id": "f8c941c1-09ed-4b75-a777-ba8f61d468d4", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -6210,7 +6210,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ba449f78-66f5-4ab2-8eb6-82d7c3311260", + "id": "ce620740-df90-46e7-b987-70f21dd6c7e0", "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": "c80841ff-cf4e-451b-9830-a80854004dba", + "id": "43c5a06e-5786-47e0-b6f5-7ad28d19d5b4", "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": "64fb366e-d4f0-4d41-9ccc-57e6fd548e5e", + "id": "caaef6c3-8e42-423e-95b7-1460f12c7dd8", "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": "530b8ab4-7bed-4f49-9e38-adc5a2be009b", + "id": "12f49c1d-41b4-4b0a-b943-285ac7922991", "name": "Too Many Requests - Returned in response to too many requests in 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": "727a2a47-281c-4739-9ca9-d65287f82a96", + "id": "cd390615-ee8c-492a-b34a-9b9b63d12a81", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -6506,7 +6506,7 @@ } }, { - "id": "fbdaf42d-189e-4b92-b10c-bed93f16362e", + "id": "14e2f32a-bd9d-41ab-9363-1b84cc2ab069", "name": "Reject Access Request Approval", "request": { "name": "Reject Access Request Approval", @@ -6561,7 +6561,7 @@ }, "response": [ { - "id": "3586dc78-4df5-4c3e-af72-37e565fa8969", + "id": "9f25e6b6-fc8b-4fd7-9b40-50dc930606c6", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -6619,7 +6619,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bac45101-3618-432d-999d-8e1bcbc924c4", + "id": "737e8d09-f0ce-442d-8d9e-70dc6aa6bc72", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -6677,7 +6677,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1a664442-0be8-41d9-b1f7-b60721fbe632", + "id": "2af46082-dd63-479d-b5ec-2819e26602fe", "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": "6fad842f-aecc-4334-9720-7cd197ed5673", + "id": "7016d357-5a46-4e6f-b630-a63c34d80c46", "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": "603231e7-b4c3-47ea-9452-ff2e21198c0f", + "id": "9fef46bc-225b-4f0b-a277-5546ae5693ad", "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": "56659885-3419-44f6-820c-4c7d89f3b8c3", + "id": "5e7411f7-f8a7-417a-8eab-5d6cab16f482", "name": "Too Many Requests - Returned in response to too many requests in 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": "8d10e39a-cdd0-48d0-9a31-1957f2e19189", + "id": "dfc7dcd8-3684-43c0-bf28-0b6c43b865d5", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -6973,7 +6973,7 @@ } }, { - "id": "748d5b0d-1bfc-4ae1-b678-f4579b8513d4", + "id": "2c09fdd8-68d3-4d2a-b7b4-c9fd9d5fcc6d", "name": "Forward Access Request Approval", "request": { "name": "Forward Access Request Approval", @@ -7028,7 +7028,7 @@ }, "response": [ { - "id": "42a86fab-631f-4e84-9686-0ae97bc447df", + "id": "3b589964-9403-4f79-ae8e-94df434d33ea", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -7086,7 +7086,7 @@ "_postman_previewlanguage": "json" }, { - "id": "395518e9-76b6-4861-b39a-e7df51b39041", + "id": "11a09c66-037c-4743-a804-6c9549a7bd9b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -7144,7 +7144,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3de16372-e035-427a-909e-4c083bcffbea", + "id": "03fd4dac-fa67-418f-8649-63ff64b5a96a", "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": "8d4103dd-62a8-4081-a542-bbd45cadc5d5", + "id": "202d9a0c-b8dd-4882-a28d-0576da03b31b", "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": "53aaa57d-db53-4628-b6bd-3659b348e875", + "id": "d11f48ac-f952-4811-bba5-774e1c527c66", "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": "da049f5e-ae97-4b30-8494-8149b4427dd4", + "id": "f8b841ed-c1d0-4ee8-8db5-29a131ff6995", "name": "Too Many Requests - Returned in response to too many requests in 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": "8f778fd8-3971-40d6-8e57-b5710dc3b9eb", + "id": "2aab036b-47c0-4b3e-afd1-6fd81ed60340", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -7440,7 +7440,7 @@ } }, { - "id": "e320da99-5fa7-488e-8bc1-c2b0160629c4", + "id": "5502f556-5413-4066-b73c-b0f396aae9d6", "name": "Get Access Requests Approvals Number", "request": { "name": "Get Access Requests Approvals Number", @@ -7489,7 +7489,7 @@ }, "response": [ { - "id": "ce43d21b-c516-49fd-94ec-fbdfcb9b86c1", + "id": "c2657327-e104-4713-8166-744c6934b377", "name": "Number of pending, approved, rejected access request approvals.", "originalRequest": { "url": { @@ -7552,7 +7552,7 @@ "_postman_previewlanguage": "json" }, { - "id": "420b80b7-3590-49a4-a662-e1ecbdfdfccb", + "id": "8251f37f-0c03-4c09-bf0f-23f030b38098", "name": "Client Error - Returned if the query parameter is invalid.", "originalRequest": { "url": { @@ -7615,7 +7615,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d3d41b17-6d3f-462c-a3fe-ec5891a8eac2", + "id": "2cfd9656-87eb-46f2-9e0f-fbf9b0d1022b", "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": "84c2c9b0-205b-4c5a-9200-d3c7c260e788", + "id": "e3136f90-750a-436e-808a-44d4b2cdedfd", "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": "0ed17db0-60a2-4469-964d-23b6d4128e17", + "id": "ce61b5cb-4668-4268-91f4-a4bf7d9e79aa", "name": "Too Many Requests - Returned in response to too many requests in 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": "f1de987e-2c20-4034-81c9-6e9aa24afad5", + "id": "e897fca3-94ba-4fbb-9d0f-7998305e3bf4", "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": "26e51105-c668-4c76-aab0-c9180270b3a7", + "id": "cc8ae1e7-26b6-4751-8fb6-518e91f2931a", "name": "Submit Access Request", "request": { "name": "Submit Access Request", @@ -7921,7 +7921,7 @@ }, "response": [ { - "id": "e081dbbe-118a-4c5b-9d47-67dd11c1ccc2", + "id": "87e4b69b-6cdb-4454-a416-78c3fcc04c4e", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -7977,7 +7977,7 @@ "_postman_previewlanguage": "json" }, { - "id": "202e7002-f8b0-4b59-8542-91fc27e8a5b4", + "id": "bedd6351-3de0-474d-a9b4-8497f7bc0bdd", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -8033,7 +8033,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5d76ec03-0ae9-4e86-b225-cc3262dfccbc", + "id": "3e65c910-03ee-4bd1-84f8-f94459236a33", "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": "c04994dc-7dbd-4153-882a-ef99bb874edf", + "id": "c66fb761-54c3-47a8-9025-d20a1cf35ae9", "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": "381a2f81-a017-4e39-8794-4191ecb096df", + "id": "430cd05b-f5fd-40f3-b188-5f71da3fda6f", "name": "Too Many Requests - Returned in response to too many requests in 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": "cd6c4ee1-9edf-4ffd-b85a-5bdf968f3a47", + "id": "1c17d926-35f2-42a2-9930-c8a5fdc4ac7b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -8263,7 +8263,7 @@ } }, { - "id": "2310d566-3ad5-4071-a862-67c851c19bc5", + "id": "b255f62a-bf43-468c-8def-fcaaa84cbaa0", "name": "Cancel Access Request", "request": { "name": "Cancel Access Request", @@ -8306,7 +8306,7 @@ }, "response": [ { - "id": "b89db3d3-10a4-4a2c-b9fb-157550dc161f", + "id": "815744c5-4848-414a-b8fd-4342aa106b9b", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -8363,7 +8363,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7cb4fe0a-d2d2-402d-ab8d-7a482b4f1a91", + "id": "c090f64c-de7a-465c-9269-31e8c9ea683a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -8420,7 +8420,7 @@ "_postman_previewlanguage": "json" }, { - "id": "69b8d264-84de-4b8d-9567-000078e3df65", + "id": "5915b35a-3262-4593-a157-9340b20135b6", "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": "5dc5f873-480a-46a6-aa75-a5814556e484", + "id": "2064bd75-54bb-4098-832e-6d0828b214ff", "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": "b2be99a9-bd2f-4794-a35c-e3aaffd770f9", + "id": "66bb6ccc-43d6-4919-a288-96af34611fb9", "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": "50ffa49d-7979-4566-84b7-e5503bbd58a1", + "id": "c764776e-5f06-412d-b138-76877a6ec43d", "name": "Too Many Requests - Returned in response to too many requests in 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": "d5712035-a9b1-4822-9dfd-61366332a32a", + "id": "5bb76afd-fd62-437b-a92a-6f6079cf222b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -8711,7 +8711,7 @@ } }, { - "id": "66f43d8e-3e0a-4750-a059-5deaf87bf5a7", + "id": "4264756f-99e2-4440-af60-af97db987269", "name": "Get Access Request Configuration", "request": { "name": "Get Access Request Configuration", @@ -8740,7 +8740,7 @@ }, "response": [ { - "id": "937ffa51-965f-4a91-87d5-1c93459bdd39", + "id": "24a087dd-9f95-4f92-9991-9d54272a166a", "name": "Access Request Configuration Details.", "originalRequest": { "url": { @@ -8783,7 +8783,7 @@ "_postman_previewlanguage": "json" }, { - "id": "467c234a-9c21-4ec4-b754-fb7352d6d791", + "id": "93bfde5a-2675-495c-b0a3-4ceb02448b71", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -8826,7 +8826,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b3ef9d96-f25c-4e1f-9dd1-cc3897cb4dd6", + "id": "635bd2a8-204f-4bed-ba3c-5bea071b6d2f", "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": "7fae5faa-3eb1-4aba-ada3-47beea08a8a5", + "id": "567ca994-199e-47fa-b4f1-5e584e8d939b", "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": "0b96a7d7-2b22-4c6b-af34-227b33d4a9bb", + "id": "89ec337d-b0b0-4e10-8ea7-628b2088b082", "name": "Too Many Requests - Returned in response to too many requests in 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": "3770d60c-0ff2-45f0-a348-2b8f4dae8b9c", + "id": "14696537-bbac-4740-8ac2-b5f4d158a567", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -9004,7 +9004,7 @@ } }, { - "id": "abc0b4cb-f04f-48ee-a5ea-c106d52288b1", + "id": "733acde7-27e1-4196-af26-2f5c10b8edf2", "name": "Update Access Request Configuration", "request": { "name": "Update Access Request Configuration", @@ -9046,7 +9046,7 @@ }, "response": [ { - "id": "16038eaa-e50f-4b06-ac7a-d0c7767e54be", + "id": "ce5548e2-de67-4207-a70f-4fb1dfcef5e5", "name": "Access Request Configuration Details.", "originalRequest": { "url": { @@ -9102,7 +9102,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9790e9d6-940d-4bbe-a8ea-be6a7ea78341", + "id": "a12f00bc-1ac6-4e6a-a832-386d282734a7", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -9158,7 +9158,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b3094ff4-d07c-4c00-a0e7-4eb55c0f01aa", + "id": "49d9ff9f-c72e-4ad1-8ce1-e464693649c7", "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": "cb889b24-b38c-43e7-94ab-147b158aff0d", + "id": "bdf7dedb-c0ba-473b-9383-596502d1ed58", "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": "3f3c559d-5424-4d64-ba56-64812b992f84", + "id": "75e2a153-fe8e-49c8-b3d4-71b6c46f5f5f", "name": "Too Many Requests - Returned in response to too many requests in 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": "aed14562-80c8-42b3-bd6d-97c296df666f", + "id": "7484eff5-7ec7-419f-b8c8-dc388ea7fae2", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -9388,7 +9388,7 @@ } }, { - "id": "11ae096f-9a4d-45c3-be46-e730a940a4ff", + "id": "50c689b8-765d-4425-adf5-342448c6eda3", "name": "Access Request Status", "request": { "name": "Access Request Status", @@ -9499,7 +9499,7 @@ }, "response": [ { - "id": "c2291db4-de8f-4722-9cae-5c5842bd983f", + "id": "9b695cfb-acd7-42bc-ad5c-c6cc3cb001aa", "name": "List of requested item statuses.", "originalRequest": { "url": { @@ -9624,7 +9624,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b132669d-712f-4d69-884c-e944f8565713", + "id": "e1d868ea-1676-449c-a662-646a72efd0db", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -9749,7 +9749,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a015272c-41ba-4568-b78d-a43c94fea4c2", + "id": "73c9bad2-f64d-4070-9eb5-9e94fbc7c715", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -9874,7 +9874,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ba497540-17e8-4ea1-bb90-8278e08f5ee9", + "id": "12fb3f55-ebca-49b2-b360-dec23b44c58b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -9999,7 +9999,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bc9bd62b-d447-4f0e-888b-3cc9452bb86c", + "id": "3dfcad8a-53fd-451d-a817-584a04cb9deb", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -10124,7 +10124,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0870c114-0fe8-4919-8132-a0a7cc16f7cd", + "id": "4b027606-cffd-44f0-b296-acd95abf6641", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -10261,7 +10261,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": "f50236a3-6c0f-497b-8304-41f253d79840", + "id": "0e38744b-c320-4a9a-9dba-865f2704777e", "name": "List Account Activities", "request": { "name": "List Account Activities", @@ -10363,7 +10363,7 @@ }, "response": [ { - "id": "dd9d89da-8c0a-4284-9731-71c2eddc2a06", + "id": "e27eb054-6159-4f5d-96c2-c61a380fff0f", "name": "List of account activities", "originalRequest": { "url": { @@ -10479,7 +10479,7 @@ "_postman_previewlanguage": "json" }, { - "id": "24c3a7b7-2eba-468b-8f8d-0266ad36c74b", + "id": "a04aaa7a-39ca-4680-9f5e-7746e6120d13", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -10595,7 +10595,7 @@ "_postman_previewlanguage": "json" }, { - "id": "64c350b5-37ce-487b-8f94-9fc544ba6e64", + "id": "5d1d0591-8b05-464c-bdab-dc65c8bd4b83", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -10711,7 +10711,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8af45240-b5ed-4134-bf57-91d93d63f65f", + "id": "d44768f7-763f-45e2-9ba4-ea9f87611d13", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -10827,7 +10827,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d67db19f-5a6e-4000-82c9-25e1b7d1e835", + "id": "1cebb6d1-d4d6-4ecd-a3f3-fcd05286e1cd", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -10943,7 +10943,7 @@ "_postman_previewlanguage": "json" }, { - "id": "094a118a-c751-48a9-bfe8-61d9e97d024f", + "id": "bf4fa793-afdc-42d5-a252-fd8ed84983a5", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -11065,7 +11065,7 @@ } }, { - "id": "85813392-43a9-4a1f-964f-483d6beb7204", + "id": "962ff5f5-fad4-4c19-9d20-014556418bab", "name": "Get an Account Activity", "request": { "name": "Get an Account Activity", @@ -11106,7 +11106,7 @@ }, "response": [ { - "id": "c188330c-f5f9-43ff-a360-5a2865ef4447", + "id": "87bc4ec8-8f4f-4ad3-a162-508ed2916b99", "name": "An account activity object", "originalRequest": { "url": { @@ -11150,7 +11150,7 @@ "_postman_previewlanguage": "json" }, { - "id": "76068c0a-6d24-4440-bebc-4cbe48276807", + "id": "82b559a3-e5b4-4558-bb6d-50985dba7db9", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -11194,7 +11194,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b8b0da92-4e2b-47f8-9c01-c47c0268e7b1", + "id": "016e6527-47a0-483d-af4d-d978b4c1b6c2", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -11238,7 +11238,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dd1470b8-f212-41b0-b496-03c959ffaedd", + "id": "c1c067cd-6dbe-4ef0-b2c7-393c9e40dfbb", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -11282,7 +11282,7 @@ "_postman_previewlanguage": "json" }, { - "id": "10fa76dc-6106-4187-b114-734f4814d3a0", + "id": "e2c1f2d0-2d54-4a42-b157-65e860e60600", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -11326,7 +11326,7 @@ "_postman_previewlanguage": "json" }, { - "id": "23177bc0-5626-4ca3-842b-0e72826e30fb", + "id": "cb816ee6-ac15-4839-bd25-f613eb9646c9", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -11370,7 +11370,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f68e2661-256d-4a92-b241-dfc2b77f0418", + "id": "605d24d9-d479-4efc-8612-bcda9157b531", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -11426,7 +11426,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": "d3d88392-a7ff-4411-8cc3-cc19ed297525", + "id": "e2ffb4ae-2ca7-4abc-8fcd-d9e3bbc36162", "name": "Returns account usage insights", "request": { "name": "Returns account usage insights", @@ -11505,7 +11505,7 @@ }, "response": [ { - "id": "037a5f0b-5f43-44a4-afa4-e62177f371ec", + "id": "82cecb5d-7e35-46d7-9329-888addc84802", "name": "Summary of account usage insights for past 12 months.", "originalRequest": { "url": { @@ -11587,7 +11587,7 @@ "_postman_previewlanguage": "json" }, { - "id": "552a22df-749c-4771-b822-e19f0c70756c", + "id": "178d74c0-3823-46af-bba4-07c4330062e0", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -11669,7 +11669,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2422b9d1-2a1f-40c6-b8b5-94c7118cd464", + "id": "ac9223b5-7918-4195-b91f-47e5bb2b44e1", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -11751,7 +11751,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e4b0bbf4-3f10-413a-a5f8-26e5ecac0356", + "id": "eea1c40d-f417-4aef-be5c-3b9380afafbc", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -11833,7 +11833,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b382c533-cb61-4b18-8c9e-b74ad9e18a73", + "id": "4f6906b3-86a5-4153-bab0-75fcd6b40a75", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -11915,7 +11915,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fa0b9428-a206-4544-90e2-4ee317d70cce", + "id": "376fdb7b-ba69-4eff-bd3d-bc229c90a4c9", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -12009,7 +12009,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": "fc9ab773-82e6-4de0-93fa-9ca11676c40b", + "id": "80ba3d10-db93-46ce-ade0-e94c3c436d9b", "name": "Accounts List", "request": { "name": "Accounts List", @@ -12084,7 +12084,7 @@ }, "response": [ { - "id": "73303e70-ab10-4a07-a5cf-bd3f04775f48", + "id": "532abc89-d4c6-41c6-a388-faf3d0aa9a60", "name": "List of account objects", "originalRequest": { "url": { @@ -12173,7 +12173,7 @@ "_postman_previewlanguage": "json" }, { - "id": "827d3263-206b-40f6-b316-c4116eeb9375", + "id": "96c8f3c0-fe48-476b-8b31-aa691ce0e21d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -12262,7 +12262,7 @@ "_postman_previewlanguage": "json" }, { - "id": "30dee703-81c4-48d8-8295-2a6da3bb1b0b", + "id": "5959a181-0fd0-404a-8f77-68e3a3ea9321", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -12351,7 +12351,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f66469d7-fa70-48e9-be9e-e7c3f0fcbc50", + "id": "7a569676-8bbe-4645-b4cd-11d2e29e754f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -12440,7 +12440,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bb572d68-c8b2-4bc1-890b-6fe6b3591896", + "id": "b907eadd-2306-41ae-8e52-ab02fa0f4903", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -12529,7 +12529,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dee1f49f-346d-4d0a-b11f-ecf4a6968800", + "id": "43ef0d70-0084-47b4-abcb-64fd69bbbb49", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -12624,7 +12624,7 @@ } }, { - "id": "74669fae-1250-4099-a3f8-86085f32adf7", + "id": "19054fa0-17c9-4cc5-882e-4f5c80cf0c4e", "name": "Create Account", "request": { "name": "Create Account", @@ -12666,7 +12666,7 @@ }, "response": [ { - "id": "1c46c912-fcde-4912-bb6d-ace442912b30", + "id": "a8002a9a-e453-4233-8ae5-876bda81c27a", "name": "Async task details", "originalRequest": { "url": { @@ -12722,7 +12722,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0dcaa281-6209-4a49-afff-c25be77d733d", + "id": "37fabd01-0ede-4f3e-8a5c-d9451069bed6", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -12778,7 +12778,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6870d220-f168-4f56-b16c-7942c47fd49f", + "id": "59371572-3639-40e3-b251-a6318eb5173c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -12834,7 +12834,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8d651878-6070-4a2e-a720-28f597773f0d", + "id": "db7c6221-a06e-450e-a46f-1cef965bece3", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -12890,7 +12890,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d72eb446-15c2-4662-a134-43db53f680c2", + "id": "c5f09103-fe06-4877-aa24-63cc542b94fd", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -12946,7 +12946,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c66c386b-dfa0-45a1-9de0-5b0ffb56c6fe", + "id": "f5829ffb-f231-458c-8fbc-447e89ef0fe6", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -13008,7 +13008,7 @@ } }, { - "id": "ac73dfdd-3c37-4108-8913-dc67385a7d00", + "id": "7c195288-58d3-4251-819e-0ef221456199", "name": "Account Details", "request": { "name": "Account Details", @@ -13049,7 +13049,7 @@ }, "response": [ { - "id": "665d9987-48a9-40dc-8d4e-f90cddb23dd2", + "id": "0286bb65-b8d2-472a-8923-91b822fe1048", "name": "Account object.", "originalRequest": { "url": { @@ -13093,7 +13093,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2c8e5d8f-72bb-4ceb-8f3a-9889276bb6a3", + "id": "6d87dbac-5748-4a5e-a002-be31f7ce4043", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -13137,7 +13137,7 @@ "_postman_previewlanguage": "json" }, { - "id": "563ba4c7-cb31-4364-a3b9-4d2e0f36fee8", + "id": "a79524e7-8d75-4751-a55f-be2917a79bcf", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -13181,7 +13181,7 @@ "_postman_previewlanguage": "json" }, { - "id": "84b5919a-a1e5-4a7f-8f81-7ecdb691ccb2", + "id": "44cac535-3db7-4082-8094-b0758c4b1846", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -13225,7 +13225,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c883f1da-aa66-4cad-8e51-45f65328a0d9", + "id": "3c56b26d-9831-4ed1-8eea-d9c27e6a12b3", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -13269,7 +13269,7 @@ "_postman_previewlanguage": "json" }, { - "id": "510e9543-905c-42b9-bae4-f9784c7fb251", + "id": "a059c713-345a-478a-a54f-a91b07c7cc38", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -13313,7 +13313,7 @@ "_postman_previewlanguage": "json" }, { - "id": "35c2de29-843c-49a0-a288-5c99ce2fb3e3", + "id": "de6ea49a-0761-4deb-8174-0756a0375fb7", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -13363,12 +13363,12 @@ } }, { - "id": "e30f784c-f045-4029-baf3-3a30439fb2fb", + "id": "164706da-df7e-46f0-8405-ea8481e1cf1b", "name": "Update Account", "request": { "name": "Update Account", "description": { - "content": "This updates account details. A token with ORG_ADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.\nThis endpoint supports updating an account's correlation. The identityId and manuallyCorrelated fields can be modified for any account. The attributes fields can be modified just for flat file accounts. To re-assign an account from one identity to another, replace the current identityId with a new value. If the account you're assigning was provisioned by IdentityNow, it's possible IdentityNow could create a new account for the previous identity as soon as the account is moved. If the account you're assigning is authoritative, this will cause the previous identity to become uncorrelated and could even result in its deletion. All accounts that are reassigned will be set to manuallyCorrelated: true unless otherwise specified", + "content": "Use this API to update account details. A token with ORG_ADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.\nThis API supports updating an account's correlation. You can modify only the `identityId` and `manuallyCorrelated` fields for any flat file account. To reassign an account from one identity to another, replace the current `identityId` with a new value. If the account you're assigning was provisioned by Identity Security Cloud (ISC), it's possible for ISC to create a new account for the previous identity as soon as the account is moved. If the account you're assigning is authoritative, this causes the previous identity to become uncorrelated and can even result in its deletion. All accounts that are reassigned will be set to `manuallyCorrelated: true` unless you specify otherwise.\n>**Note:** The `attributes` field can only be modified for flat file accounts. ", "type": "text/plain" }, "url": { @@ -13417,7 +13417,7 @@ }, "response": [ { - "id": "703bec6f-cccd-4391-a207-090db5fa10f5", + "id": "53171b51-d2ab-4c90-b603-a55033583f8d", "name": "Uncorrelate account", "originalRequest": { "url": { @@ -13474,7 +13474,7 @@ "_postman_previewlanguage": "json" }, { - "id": "221e5b97-7936-4611-9d0b-0f8020779935", + "id": "82b0e921-bd24-4c66-bc17-a8d871e9056f", "name": "Reassign account", "originalRequest": { "url": { @@ -13531,7 +13531,7 @@ "_postman_previewlanguage": "json" }, { - "id": "318f989a-1b38-49eb-a646-72741689dad5", + "id": "71c8d347-32f0-400c-8b27-780e786df195", "name": "Add account attribute", "originalRequest": { "url": { @@ -13588,7 +13588,7 @@ "_postman_previewlanguage": "json" }, { - "id": "10eaffce-fcfd-439d-abc6-83e7fcccedbd", + "id": "8efbd470-e1e2-48e3-9beb-18a9d65be550", "name": "Replace account attribute", "originalRequest": { "url": { @@ -13645,7 +13645,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cb437a93-0ea3-4aa3-9214-e06e74d2745c", + "id": "e895f620-e362-4e01-a894-203c56bd73de", "name": "Remove account attribute", "originalRequest": { "url": { @@ -13702,7 +13702,7 @@ "_postman_previewlanguage": "json" }, { - "id": "055cd3c9-d59d-48fc-9e0c-bf32692ddd38", + "id": "859aa40e-6ae9-4cb7-806c-f53b297217c5", "name": "Uncorrelate account", "originalRequest": { "url": { @@ -13759,7 +13759,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7231f139-487d-4e9b-87ed-604d7d9d593d", + "id": "07e25e7b-8973-40cd-a57d-6af23af2fbfc", "name": "Reassign account", "originalRequest": { "url": { @@ -13816,7 +13816,7 @@ "_postman_previewlanguage": "json" }, { - "id": "09ff8a2d-b09f-4aa0-bf79-00d487304d03", + "id": "5469a680-2561-4cf7-97c5-55e309cc55b4", "name": "Add account attribute", "originalRequest": { "url": { @@ -13873,7 +13873,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eecee9ec-0faa-4e4b-a2a3-e04faf8bf712", + "id": "0b11f7c9-ed3c-4256-b56f-a0ac979e025b", "name": "Replace account attribute", "originalRequest": { "url": { @@ -13930,7 +13930,7 @@ "_postman_previewlanguage": "json" }, { - "id": "841650fe-f195-477e-a300-363384100c00", + "id": "cc6d6c68-784b-43be-a049-84bcc746dec4", "name": "Remove account attribute", "originalRequest": { "url": { @@ -13987,7 +13987,7 @@ "_postman_previewlanguage": "json" }, { - "id": "59ae017e-2447-4112-b350-bffb7935dfd4", + "id": "a47f65b0-feae-43bf-9ecd-228a4aa61c0b", "name": "Uncorrelate account", "originalRequest": { "url": { @@ -14044,7 +14044,7 @@ "_postman_previewlanguage": "json" }, { - "id": "277c53c5-d74c-4152-a594-686312f392d1", + "id": "4ae68f70-82ab-4913-abf0-c8cafb550a7d", "name": "Reassign account", "originalRequest": { "url": { @@ -14101,7 +14101,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b08a9a09-d25c-468b-b998-c7e0ce31686c", + "id": "c88c5214-f0e6-4d2a-9769-7396d4786071", "name": "Add account attribute", "originalRequest": { "url": { @@ -14158,7 +14158,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6e249f96-494b-46f7-bbf3-612c27f70a0d", + "id": "293d6865-37e1-4e1e-b3c6-9e73a6759066", "name": "Replace account attribute", "originalRequest": { "url": { @@ -14215,7 +14215,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8e9cf7cf-f073-410e-8aa5-ccdec2606e20", + "id": "4f9266dc-c25b-4610-97c9-cc4fbb135b17", "name": "Remove account attribute", "originalRequest": { "url": { @@ -14272,7 +14272,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d7c02c58-fe48-442b-9b49-a8f373272c6a", + "id": "6a9a39cc-d77b-4888-ad9a-eee00a9ec8a3", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -14329,7 +14329,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fc80b69d-9b81-462d-a031-41e86240168b", + "id": "eeeebf20-7fcc-45a3-bd1a-72258f116294", "name": "Reassign account", "originalRequest": { "url": { @@ -14386,7 +14386,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e381f1a0-798f-4ae5-8bde-52b24aa6664c", + "id": "296d22e6-91d1-42c6-9dba-ecbe69178154", "name": "Add account attribute", "originalRequest": { "url": { @@ -14443,7 +14443,7 @@ "_postman_previewlanguage": "json" }, { - "id": "48258f72-08f2-40c3-903c-6c7b80d41266", + "id": "73bfc22e-1284-4f41-9b9e-4828e32816df", "name": "Replace account attribute", "originalRequest": { "url": { @@ -14500,7 +14500,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4efbab39-ec57-4fd7-a3ab-bc9806e1f757", + "id": "e83575ea-24e9-4315-915c-61ab4242a41e", "name": "Remove account attribute", "originalRequest": { "url": { @@ -14557,7 +14557,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ad303dc0-4491-4cb4-bb35-ecf8a9d5b1dc", + "id": "1a8a9464-584f-4d24-bf3a-ed2010f165c0", "name": "An example of a 404 response object", "originalRequest": { "url": { @@ -14614,7 +14614,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1aec2483-05b6-4cb6-a0b0-86361b177e40", + "id": "0a74bf23-33c0-42fe-ad29-13776ca0d8c8", "name": "Reassign account", "originalRequest": { "url": { @@ -14671,7 +14671,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f31d600b-a6c2-43f9-be98-64dd73076517", + "id": "0b402c01-61bc-4249-9a48-654de522aafb", "name": "Add account attribute", "originalRequest": { "url": { @@ -14728,7 +14728,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eef3bbd1-db5f-4e13-9701-e23bdf944685", + "id": "8c379ff3-2912-4053-acc0-e017d5eb5979", "name": "Replace account attribute", "originalRequest": { "url": { @@ -14785,7 +14785,7 @@ "_postman_previewlanguage": "json" }, { - "id": "976f7634-8dcc-46d6-b821-95842ae9f352", + "id": "f00ee779-0650-4f06-a51a-a7da9594829d", "name": "Remove account attribute", "originalRequest": { "url": { @@ -14842,7 +14842,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2ea5a978-6e73-4632-a03e-4fad5c7e99c5", + "id": "0cf8b214-427c-4e2a-bbbe-52829c0703e8", "name": "Uncorrelate account", "originalRequest": { "url": { @@ -14899,7 +14899,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dee646ac-2914-4703-aa10-861feb7e7835", + "id": "d8a3461d-07bf-454d-9b51-d75867cba67a", "name": "Reassign account", "originalRequest": { "url": { @@ -14956,7 +14956,7 @@ "_postman_previewlanguage": "json" }, { - "id": "72eb1453-7eb1-4423-8858-655f98883a2b", + "id": "21359287-4c90-4ed7-b121-926498888880", "name": "Add account attribute", "originalRequest": { "url": { @@ -15013,7 +15013,7 @@ "_postman_previewlanguage": "json" }, { - "id": "42ae224e-f215-4054-9b68-daa96bc172a1", + "id": "45ab1ca1-0dfb-4e8e-b91c-e7200f07aae1", "name": "Replace account attribute", "originalRequest": { "url": { @@ -15070,7 +15070,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dd692bd8-96e0-4aa6-af69-00f26e7f6d8a", + "id": "35689edc-11ba-4795-b9c4-f8d0d29636aa", "name": "Remove account attribute", "originalRequest": { "url": { @@ -15127,7 +15127,7 @@ "_postman_previewlanguage": "json" }, { - "id": "62460636-ec08-4385-8c0c-348528734a3e", + "id": "3daa3423-fd8e-4df0-b998-bf305ea27e00", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -15184,7 +15184,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ddb904c4-0a80-4fe6-89e4-b9dacf174b25", + "id": "0a546943-8719-40e5-8124-1c30b0fe2218", "name": "Reassign account", "originalRequest": { "url": { @@ -15241,7 +15241,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2ca51b91-a991-476e-99f7-66798d8cb368", + "id": "1ce9629f-6203-4cec-b211-4df4f3870dec", "name": "Add account attribute", "originalRequest": { "url": { @@ -15298,7 +15298,7 @@ "_postman_previewlanguage": "json" }, { - "id": "385ed510-2246-4181-8c42-eddfb0c7f47a", + "id": "71489da4-86a6-4d50-ab04-5e6bfe448372", "name": "Replace account attribute", "originalRequest": { "url": { @@ -15355,7 +15355,7 @@ "_postman_previewlanguage": "json" }, { - "id": "795573cd-e8cb-402f-9031-bf408752f193", + "id": "9324beec-6a68-470f-8bdf-ae3f115ad247", "name": "Remove account attribute", "originalRequest": { "url": { @@ -15418,7 +15418,7 @@ } }, { - "id": "15f0e52f-e9e8-482d-aace-2914a85a7396", + "id": "a6bef466-2975-4652-ba61-d223113637e7", "name": "Update Account", "request": { "name": "Update Account", @@ -15472,7 +15472,7 @@ }, "response": [ { - "id": "f52a35bd-a258-4dd7-954d-27d91deefac2", + "id": "c2613459-35e4-465a-829a-71f93b49bf31", "name": "Async task details.", "originalRequest": { "url": { @@ -15529,7 +15529,7 @@ "_postman_previewlanguage": "json" }, { - "id": "382940fa-dd6f-43b9-857a-c2e4055978e2", + "id": "e641f0ac-abb8-4ea4-8d57-231d8c3885f2", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -15586,7 +15586,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7a659cd5-1cb7-49c0-9a78-efe6bbddbe13", + "id": "dbb6eeb8-699a-456d-9982-758ff9e774f9", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -15643,7 +15643,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e17de929-9a6e-45e2-973d-abc273862d57", + "id": "116a6164-5455-445d-98f1-25dad426bc8e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -15700,7 +15700,7 @@ "_postman_previewlanguage": "json" }, { - "id": "58c6d803-ef82-48cd-9cb8-7f01360a0d90", + "id": "95b3b19f-07d7-4cc7-a9a9-b8ded98dcbdd", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -15757,7 +15757,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a659db78-ff3c-40da-8e57-7c7cfe5d2d7c", + "id": "ea932bc9-ed67-4643-b2b7-a0d39f35be0e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -15814,7 +15814,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e15b5896-1756-4112-a6a4-395abf602139", + "id": "568db1e3-ca73-425e-bdec-8065c071bcde", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -15877,7 +15877,7 @@ } }, { - "id": "0eee8ae4-3eea-4e78-a503-c15e15da357c", + "id": "e635d6f2-bd8b-4b30-93ec-7dd605e5cb40", "name": "Delete Account", "request": { "name": "Delete Account", @@ -15918,7 +15918,7 @@ }, "response": [ { - "id": "f387d7c1-a2e0-4dca-9e1f-6eb66bfc182c", + "id": "aa35e00c-e009-4fe7-941a-c08c38b5ab0b", "name": "Async task details.", "originalRequest": { "url": { @@ -15962,7 +15962,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ad96b3e7-45b9-4924-a86b-98bb224de480", + "id": "d0ed07b6-0f12-416f-836e-6d2f58a0dbac", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -16006,7 +16006,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5a961b10-7d66-415b-b402-2fa56dcc4b3b", + "id": "a789ec76-0e7b-43bd-abe7-ddaec687abe5", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -16050,7 +16050,7 @@ "_postman_previewlanguage": "json" }, { - "id": "108b6b0a-be44-46c5-b61b-4a555e076ba2", + "id": "b2f4b5bd-0c5b-47ef-85c6-7b6ea574d358", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -16094,7 +16094,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6b3a26f6-91bd-4ae4-bc7e-b8224e6f69fc", + "id": "41eda59e-9298-4f54-b03e-ede418c0e293", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -16138,7 +16138,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c10a5df9-f81b-4470-8554-6182fa533f76", + "id": "7fe45fb3-3b7d-4221-926d-22c3d23e8ce9", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -16182,7 +16182,7 @@ "_postman_previewlanguage": "json" }, { - "id": "44595ebe-b62d-4411-a3b0-405e3c5adcf9", + "id": "c96ab3c0-f17e-483d-90eb-5dffd47bb328", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -16232,7 +16232,7 @@ } }, { - "id": "12a76ffe-1f70-4477-98e7-f233136477d2", + "id": "13d884e4-d11c-46f2-8a5b-a4a7c2aa6d97", "name": "Account Entitlements", "request": { "name": "Account Entitlements", @@ -16302,7 +16302,7 @@ }, "response": [ { - "id": "c4f3387d-6979-4796-98cf-74353806a309", + "id": "b15d4825-f7f1-42a5-82a1-ab1dfb2c58c6", "name": "An array of account entitlements", "originalRequest": { "url": { @@ -16375,7 +16375,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a9f0b2f1-d937-4f01-a789-ee05255db6bb", + "id": "47afed51-355c-4bfb-b78d-83952fcb4ae1", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -16448,7 +16448,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3b25cbcd-05a0-4a53-9c47-c3cc67c927c4", + "id": "90c70ad5-9cca-4a62-a712-e930e1e8b5a4", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -16521,7 +16521,7 @@ "_postman_previewlanguage": "json" }, { - "id": "293f5fe1-201d-464f-9ae0-5a96dbde3449", + "id": "f20e9003-9d3c-42e6-bc40-1e974b485cff", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -16594,7 +16594,7 @@ "_postman_previewlanguage": "json" }, { - "id": "605a6e4c-a956-44f6-ab9c-7a55acbb0519", + "id": "d11ef259-a81a-429b-8168-40b0414e7069", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -16667,7 +16667,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8aeef8a7-ef50-47c8-94a4-e4d513fa7cbc", + "id": "6d4d3f60-8fa2-413d-af34-d0d6c9dd7c48", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -16740,7 +16740,7 @@ "_postman_previewlanguage": "json" }, { - "id": "718c3626-4293-4e86-a61d-956b9e3a1c12", + "id": "f70472b2-3aca-454c-937a-c908920fc396", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -16819,7 +16819,7 @@ } }, { - "id": "defeb84f-62cd-4222-977c-dfe18396ed1b", + "id": "c9d727ee-6003-4c8f-ad60-6808c937e469", "name": "Reload Account", "request": { "name": "Reload Account", @@ -16861,7 +16861,7 @@ }, "response": [ { - "id": "bdb3e516-0dd6-438d-b2f6-aa3e270105fc", + "id": "eb84c5fd-d39d-4e91-aa53-76f1117bec80", "name": "Async task details", "originalRequest": { "url": { @@ -16906,7 +16906,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5a36896e-6e57-4490-8b5c-eed4fe662e14", + "id": "646acdb9-d6f7-49b6-afd2-1cc2063d8594", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -16951,7 +16951,7 @@ "_postman_previewlanguage": "json" }, { - "id": "46362948-2eda-463c-bc8a-d64e8ba4658e", + "id": "e16d648c-e78b-440b-b4c3-7a9871acbc6a", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -16996,7 +16996,7 @@ "_postman_previewlanguage": "json" }, { - "id": "143836d7-eddd-45a2-a6fe-f763423befbd", + "id": "d0674a5f-3727-4df9-ad63-b8cbd3af7360", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -17041,7 +17041,7 @@ "_postman_previewlanguage": "json" }, { - "id": "53a8be20-8e77-49c7-8ae4-0c15a3f52e53", + "id": "b6075f5f-49d9-43fd-8ef7-9a16f9bd246d", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -17086,7 +17086,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dd4aa67d-de36-4ca3-ae55-184ba9f09efc", + "id": "17dae841-bbcc-47af-9c18-1ede2c9d1a53", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -17131,7 +17131,7 @@ "_postman_previewlanguage": "json" }, { - "id": "add88253-877c-42f2-a203-0dc3794ebb49", + "id": "88e2af7c-036b-4e25-babe-983202ca0204", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -17182,7 +17182,7 @@ } }, { - "id": "0e9279dd-1afd-4152-a057-ffe533a22abc", + "id": "da76ebb3-9fb6-4f40-81b0-7b8fc748e978", "name": "Enable Account", "request": { "name": "Enable Account", @@ -17237,7 +17237,7 @@ }, "response": [ { - "id": "d8c0eb32-d7d7-4485-98cd-34b808b3fe30", + "id": "5ab6c2ad-7c16-4878-811a-03f575fc6f6f", "name": "Async task details", "originalRequest": { "url": { @@ -17295,7 +17295,7 @@ "_postman_previewlanguage": "json" }, { - "id": "18d605ca-6949-4dbc-af5b-9c08b7bc63b5", + "id": "2a160309-cc53-436e-9605-9fe90867f9f9", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -17353,7 +17353,7 @@ "_postman_previewlanguage": "json" }, { - "id": "48a025c4-76b2-4d01-b1cd-19ccf169c835", + "id": "5aba86ff-3187-46da-9bcf-b8ad1e740b71", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -17411,7 +17411,7 @@ "_postman_previewlanguage": "json" }, { - "id": "09ac4ceb-4469-4ceb-9fb5-314273d17aa9", + "id": "b4d49ad2-6bc3-458b-b323-b0404cbceb94", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -17469,7 +17469,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e7f99bab-832d-46f4-9e06-22d74d15e019", + "id": "528cb097-dcc6-4252-82c8-ec9f3e9ab2fe", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -17527,7 +17527,7 @@ "_postman_previewlanguage": "json" }, { - "id": "54483ee5-1880-4e47-8846-ab918d69d89c", + "id": "2f32e0a3-9d80-45c0-82a3-f7cf14c7b9b8", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -17585,7 +17585,7 @@ "_postman_previewlanguage": "json" }, { - "id": "898c8919-c394-4a78-8a80-24a8b57d79c9", + "id": "96127e09-9406-4568-9f04-5006da0678f2", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -17649,7 +17649,7 @@ } }, { - "id": "a70d6e88-a091-4bca-9386-b28228c2d0af", + "id": "0b755968-8283-499b-a43f-0cc13e1379be", "name": "Disable Account", "request": { "name": "Disable Account", @@ -17704,7 +17704,7 @@ }, "response": [ { - "id": "a2502d23-f3b9-4d73-a6da-cabcaec6c3f8", + "id": "dd5a3135-e99d-4851-9678-40e2bab54f79", "name": "Async task details", "originalRequest": { "url": { @@ -17762,7 +17762,7 @@ "_postman_previewlanguage": "json" }, { - "id": "42cf3181-9c4a-4859-8230-e858e87b5bf8", + "id": "10b3f25d-0f72-4d11-b22c-a2548aaf4acb", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -17820,7 +17820,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4675d111-5d6b-4c9a-951d-978a3e4002ee", + "id": "76911034-2008-4323-937f-6177b94888f5", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -17878,7 +17878,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e3e17fbf-251e-4f78-a6ff-61292ac92a33", + "id": "e15c4fcc-ce3d-45a9-93b7-6f147772d46e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -17936,7 +17936,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f09dddc4-8da0-4784-8b09-694951de2f22", + "id": "a8e7f8e3-c94e-417f-8066-acf5040aaabc", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -17994,7 +17994,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7493baee-32b9-48d4-a598-e82012952179", + "id": "0e5d9f5d-44ce-4c67-bada-32fbc2171aa4", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -18052,7 +18052,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f9df2038-ada1-4196-bf3b-6ff5ccab4588", + "id": "592ba2d4-c41c-4077-9d02-a9c53b9f7b55", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -18116,7 +18116,7 @@ } }, { - "id": "2fb1ca9d-d0fc-4a1c-b06e-b7ec27249aed", + "id": "52b6d5a8-4bff-4214-8bf3-988b94e0a297", "name": "Unlock Account", "request": { "name": "Unlock Account", @@ -18171,7 +18171,7 @@ }, "response": [ { - "id": "c612ae68-5275-4ac5-bb52-8e22c42eea58", + "id": "aeed74c3-927a-4702-ac21-243a290bf1f2", "name": "Async task details", "originalRequest": { "url": { @@ -18229,7 +18229,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7fd23f16-ed29-4194-9197-a61535d52fcc", + "id": "7c79a0dc-30dc-410f-878c-8d895247eb71", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -18287,7 +18287,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7af17be7-89aa-44ea-8261-2643c7853398", + "id": "e14d42f6-b7f4-458f-9d01-d9d195463c4b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -18345,7 +18345,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4d3a27a9-23b2-4111-81f1-ff3d3203ebed", + "id": "6514b7ea-b7b0-4d3a-93e1-0a2be6dd1407", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -18403,7 +18403,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fdca9c0d-53f4-451b-ac40-152a77cb1e86", + "id": "85246d95-9c34-40e8-8d86-ceb3f3f97bb9", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -18461,7 +18461,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a138410d-bd42-4b8b-b5ce-e4704ba714f5", + "id": "e8d6131c-98b0-4a1d-a1f1-f51a4673e2fd", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -18519,7 +18519,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eacd2463-48f4-487d-a601-e5f7be52a9c7", + "id": "a5b6b5dd-635f-4a2a-9672-edc9a3f33c8a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -18589,7 +18589,7 @@ "description": "Use this API to discover applications within your Okta connector and receive connector recommendations by manually uploading application names.\n", "item": [ { - "id": "bbd53a2f-f564-4bb5-98fe-950e8e614996", + "id": "4feb4553-7b93-4ad9-9161-d6c58d88005c", "name": "CSV template download for discovery", "request": { "name": "CSV template download for discovery", @@ -18618,7 +18618,7 @@ }, "response": [ { - "id": "4e3f4470-05e6-4108-9f04-84d9bbe695ed", + "id": "7893e3bc-ef7d-4d47-b6df-8c7c37d8e067", "name": "A CSV file download was successful.", "originalRequest": { "url": { @@ -18661,7 +18661,7 @@ "_postman_previewlanguage": "text" }, { - "id": "0b23d355-4f2a-49af-b695-77b89092a526", + "id": "41468cc5-c555-48ab-8ee3-2e1f29729ee8", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -18704,7 +18704,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1d599442-d298-4710-9e44-49cae658ec8b", + "id": "d6f8e0da-438e-421c-81dd-993cead1b76e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -18747,7 +18747,7 @@ "_postman_previewlanguage": "json" }, { - "id": "349afc93-9d99-4129-8164-1a7dd3acecc5", + "id": "23978283-c4ce-4df8-bc23-0e414b44a920", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -18790,7 +18790,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5f10f394-236c-4f35-91f1-4f4a18f57b73", + "id": "bbb2e97c-1a50-4ec4-8c23-f6ec1004c07f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -18833,7 +18833,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3afb37ac-c3f4-41a9-b281-ca4e02574bb2", + "id": "d886f139-1071-4e11-a826-52c241d14d9c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -18882,7 +18882,7 @@ } }, { - "id": "6606baaf-3712-47ad-90d5-7b9622d297dc", + "id": "a6f3a752-cc06-49ed-856f-aef7f6bc2d70", "name": "CSV Upload to discover applications", "request": { "name": "CSV Upload to discover applications", @@ -18928,7 +18928,7 @@ }, "response": [ { - "id": "48b668ec-6b96-4bc8-9c17-b2b6c4aa482f", + "id": "bfe628ff-2b1d-4765-839c-6e8c9ddc54e2", "name": "The CSV has been successfully processed.", "originalRequest": { "url": { @@ -18978,7 +18978,7 @@ "_postman_previewlanguage": "text" }, { - "id": "83fbb844-3261-41c0-8162-8604fa625190", + "id": "af3a3fc3-64c7-43d4-8160-309bf83b806d", "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": { @@ -19038,7 +19038,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4d328bad-51a5-4b1a-9918-57ffe373f7e9", + "id": "91123796-7297-4aee-b670-00885e0e9fc8", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -19098,7 +19098,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c9627919-79c0-4191-8456-5a178e71d646", + "id": "057684a1-6514-49bd-ae9b-fc8e64202e89", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -19158,7 +19158,7 @@ "_postman_previewlanguage": "json" }, { - "id": "35657a16-c6d3-443f-b685-ab3dfbdaf71e", + "id": "3b98989c-dd80-4ca8-9abe-9a4a40dd26be", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -19218,7 +19218,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fc471f45-261a-4376-9ee2-e2e29444b70b", + "id": "57fc9266-bc27-4b10-8e21-15023ee1646c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -19284,7 +19284,7 @@ } }, { - "id": "3d82c26f-83f5-49d2-8201-f3d707b5d43d", + "id": "9e98d13e-9bde-46f3-9afd-5f33da179626", "name": "Retrieve discovered applications for tenant", "request": { "name": "Retrieve discovered applications for tenant", @@ -19350,7 +19350,7 @@ }, "response": [ { - "id": "ca3c6990-baa7-49ea-b4ec-c9b0fd0287d1", + "id": "2193244a-d8eb-4fc2-9c43-775d2228dcb0", "name": "Successfully retrieved list of discovered applications.", "originalRequest": { "url": { @@ -19430,7 +19430,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a252c5ef-68da-47f3-bf3e-41b973ec60eb", + "id": "10d5cc1d-0e82-4833-9527-e1dae2aa8e97", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -19510,7 +19510,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c90b8807-ed2c-4b42-be32-a2e4121fd952", + "id": "63dcb84b-8150-4d8c-92fa-bb500bea5f65", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -19590,7 +19590,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c7be1d97-6309-4925-b8c7-df4d52145b0b", + "id": "83f781c8-787a-4d3f-a8a3-97d6bb1067a6", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -19670,7 +19670,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ded7aeef-88bc-49a6-a143-018aeccff517", + "id": "7ea08dfe-e8f3-480a-b3fb-34172e72cbc5", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -19750,7 +19750,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9f80b813-10f6-442c-a265-e348fae61763", + "id": "263cf1a7-ae85-417c-b7eb-cc6cd296aaa4", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -19836,7 +19836,7 @@ } }, { - "id": "1891fa73-3942-4bc2-baf2-561a9e46b82e", + "id": "79527381-88bd-4168-9357-1e2c5a446be1", "name": "List vendor connector mappings", "request": { "name": "List vendor connector mappings", @@ -19865,7 +19865,7 @@ }, "response": [ { - "id": "5f8ab72d-4d42-4336-b4cf-7932cd7a1db1", + "id": "06823381-1e67-4f93-8ebf-2f54c858a738", "name": "Successfully retrieved list.", "originalRequest": { "url": { @@ -19908,7 +19908,7 @@ "_postman_previewlanguage": "json" }, { - "id": "056aa6ef-bd97-4f79-a415-cef1acb227c8", + "id": "e6074f84-3168-47f8-9f2a-1a3773782f7d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -19951,7 +19951,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5ef8622c-5922-4bfe-9381-cfae8e3297b0", + "id": "b61d741b-9187-457a-b90f-b2a2a235467f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -19994,7 +19994,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b8abf5d8-e68d-40f5-8487-3d119ef8c1f8", + "id": "549e31af-1359-4060-9c98-58bc7c64bba8", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -20037,7 +20037,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cb0fb541-e6c5-4526-b41d-8eb65fbf1bb9", + "id": "6a33eb23-a935-4a07-90c3-467f8cdd6f41", "name": "Method Not Allowed - indicates that the server knows the request method, but the target resource doesn't support this method.", "originalRequest": { "url": { @@ -20080,7 +20080,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a3058951-58d8-4d11-b729-6f8b5a3c3abe", + "id": "b5435846-fa79-403e-9d90-eeb135c3f472", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -20123,7 +20123,7 @@ "_postman_previewlanguage": "json" }, { - "id": "614e9c9b-ca5e-4b60-b489-43f510f48de7", + "id": "f58c1308-4065-461b-8107-43c1d0cb84a8", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -20178,7 +20178,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": "ed5d78e2-9035-479b-b88d-6aa7bd3d0b3b", + "id": "4aedc151-e13a-4e78-8d01-5578e7a0e867", "name": "Auth User Details", "request": { "name": "Auth User Details", @@ -20219,7 +20219,7 @@ }, "response": [ { - "id": "d9293687-c160-4d9d-802b-d81b02e617fb", + "id": "ce091a39-d09d-4a39-aec0-b0f6a97811fc", "name": "The specified user's authentication system details.", "originalRequest": { "url": { @@ -20263,7 +20263,7 @@ "_postman_previewlanguage": "json" }, { - "id": "be8437ba-c31e-445d-9bdf-dbab6cc2295c", + "id": "02f5336b-0143-417a-8b54-57e0b7bc2ab6", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -20307,7 +20307,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8b887f31-ed57-43c6-84b5-0327ce0fc4fa", + "id": "0b0c74ce-b506-4843-b4ca-8a846f6a701d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -20351,7 +20351,7 @@ "_postman_previewlanguage": "json" }, { - "id": "84d9dc67-99dc-4812-bd6f-3d126badecad", + "id": "acda8a5f-7e8a-4256-ab24-336e21329ac6", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -20395,7 +20395,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1c294f00-3775-4406-a58a-ae04dbd1fc0f", + "id": "cda5cdd3-9569-4a36-9d74-01891332c874", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -20439,7 +20439,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a09b3de8-2551-4b67-bd8f-0dfedd7c6ed6", + "id": "230a9030-7de1-43fa-8f24-1698599e1666", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -20483,7 +20483,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8b6ad31a-89fd-4c4b-bfeb-53f587e6a7bd", + "id": "bdcfc3d3-8264-468c-b083-e6d8db5ea57e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -20533,7 +20533,7 @@ } }, { - "id": "84009acb-87fa-434d-8afe-766d876f831f", + "id": "acfcf072-460a-4918-a098-b9573996d15c", "name": "Auth User Update", "request": { "name": "Auth User Update", @@ -20587,7 +20587,7 @@ }, "response": [ { - "id": "0401f1c5-d561-4f44-9f8e-b33ab54298dc", + "id": "01b65359-a834-42be-b9f9-7dcf35a0c33d", "name": "Auth user updated.", "originalRequest": { "url": { @@ -20644,7 +20644,7 @@ "_postman_previewlanguage": "json" }, { - "id": "98d71880-6ada-488b-978f-485e33c394b9", + "id": "5281f02a-4c9e-4aa4-b731-f1e018c6ff0a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -20701,7 +20701,7 @@ "_postman_previewlanguage": "json" }, { - "id": "357bce95-e535-4bdf-a593-024eb61c09bf", + "id": "a6288592-43b5-4b7b-848a-0e9b7693f141", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -20758,7 +20758,7 @@ "_postman_previewlanguage": "json" }, { - "id": "240518fa-29e8-4d64-98e4-07962fa61257", + "id": "ec97c654-66f1-4eb8-bcbf-3d9fd4d83c9a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -20815,7 +20815,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c1dc3763-2877-47f6-beb3-69329a1408c2", + "id": "7e1b48f3-f0c8-42c1-a8b7-a166a7a8975f", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -20872,7 +20872,7 @@ "_postman_previewlanguage": "json" }, { - "id": "34d280e1-7acf-4a44-b08a-75fdd18fcc78", + "id": "b2a96ddf-ba96-4032-a8a2-a166f8ce35b6", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -20929,7 +20929,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a13bfba2-afef-4dcc-9591-6f5044255895", + "id": "9d326f10-000c-44a2-897b-a16bdaf7d220", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -20998,7 +20998,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": "6a864af1-ac0b-456a-a0e4-431fef754700", + "id": "037abee3-a2d1-48ec-b15e-9aacc670f3ee", "name": "List of branding items", "request": { "name": "List of branding items", @@ -21027,7 +21027,7 @@ }, "response": [ { - "id": "f799512e-e428-4e62-8e7f-3123df181c8f", + "id": "6abd0bf3-f8ea-40ec-9c5a-4b9d07550618", "name": "A list of branding items.", "originalRequest": { "url": { @@ -21065,12 +21065,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"name\": \"default\",\n \"productName\": \"product name\",\n \"actionButtonColor\": \"0074D9\",\n \"activeLinkColor\": \"dolore Excepteur amet\",\n \"navigationColor\": \"pariatur officia ad\",\n \"emailFromAddress\": \"no-reply@sailpoint.com\",\n \"standardLogoURL\": \"\",\n \"loginInformationalMessage\": \"\"\n },\n {\n \"name\": \"default\",\n \"productName\": \"product name\",\n \"actionButtonColor\": \"0074D9\",\n \"activeLinkColor\": \"dolor tem\",\n \"navigationColor\": \"Ut officia dolor\",\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\": \"sint occaecat amet Ut\",\n \"navigationColor\": \"tempor\",\n \"emailFromAddress\": \"no-reply@sailpoint.com\",\n \"standardLogoURL\": \"\",\n \"loginInformationalMessage\": \"\"\n },\n {\n \"name\": \"default\",\n \"productName\": \"product name\",\n \"actionButtonColor\": \"0074D9\",\n \"activeLinkColor\": \"reprehenderit\",\n \"navigationColor\": \"deserunt\",\n \"emailFromAddress\": \"no-reply@sailpoint.com\",\n \"standardLogoURL\": \"\",\n \"loginInformationalMessage\": \"\"\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "4048ac94-dfc9-4a43-8a6a-c5ef3f4a81cc", + "id": "f5f9f42b-58ea-4a96-ae35-fee4af1b31ba", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -21113,7 +21113,7 @@ "_postman_previewlanguage": "json" }, { - "id": "51be3c77-7994-42d0-b032-0226f3f3819a", + "id": "35f38627-449f-4c73-99f8-aad63309062d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -21156,7 +21156,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b968ac2c-d011-4c0f-b19f-413bcda38924", + "id": "c3a4e0ef-3255-45a9-aa0c-4fb5c262168d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -21199,7 +21199,7 @@ "_postman_previewlanguage": "json" }, { - "id": "64267aea-6572-4fc8-af47-a536b221d1e5", + "id": "b36e4efb-22d7-4eff-93ae-f97d2a775c06", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -21242,7 +21242,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fb4b17f8-2d8e-457d-b6d5-afdd3c98d464", + "id": "44cabe4b-de22-43b0-ba12-25a2e1987fa6", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -21291,7 +21291,7 @@ } }, { - "id": "cf5f07a2-03a8-492b-b6b5-0191b2d451d3", + "id": "73d250a3-1bc7-44cd-bc3e-c144f84cc794", "name": "Create a branding item", "request": { "name": "Create a branding item", @@ -21356,7 +21356,7 @@ "type": "text/plain" }, "key": "activeLinkColor", - "value": "magna eiusmod", + "value": "aliquip culpa qui ullamco", "type": "text" }, { @@ -21365,7 +21365,7 @@ "type": "text/plain" }, "key": "navigationColor", - "value": "sed dolor dolor ut", + "value": "anim ex ut", "type": "text" }, { @@ -21400,7 +21400,7 @@ }, "response": [ { - "id": "497dacd5-df17-42bb-b8dd-526239a0270a", + "id": "af978a78-c941-48b3-9a60-d3b9ad026ef1", "name": "Branding item created", "originalRequest": { "url": { @@ -21468,7 +21468,7 @@ "type": "text/plain" }, "key": "activeLinkColor", - "value": "magna eiusmod", + "value": "aliquip culpa qui ullamco", "type": "text" }, { @@ -21477,7 +21477,7 @@ "type": "text/plain" }, "key": "navigationColor", - "value": "sed dolor dolor ut", + "value": "anim ex ut", "type": "text" }, { @@ -21518,12 +21518,12 @@ "value": "application/json" } ], - "body": "{\n \"name\": \"default\",\n \"productName\": \"product name\",\n \"actionButtonColor\": \"0074D9\",\n \"activeLinkColor\": \"velit est proident labore irure\",\n \"navigationColor\": \"deserunt proident voluptate Lorem\",\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 adipisicing eu\",\n \"navigationColor\": \"in\",\n \"emailFromAddress\": \"no-reply@sailpoint.com\",\n \"standardLogoURL\": \"\",\n \"loginInformationalMessage\": \"\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "8769e67d-99b4-4180-9a93-9699631aec20", + "id": "42756eaa-a002-47a8-ae6a-faaedd9a6775", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -21591,7 +21591,7 @@ "type": "text/plain" }, "key": "activeLinkColor", - "value": "magna eiusmod", + "value": "aliquip culpa qui ullamco", "type": "text" }, { @@ -21600,7 +21600,7 @@ "type": "text/plain" }, "key": "navigationColor", - "value": "sed dolor dolor ut", + "value": "anim ex ut", "type": "text" }, { @@ -21646,7 +21646,7 @@ "_postman_previewlanguage": "json" }, { - "id": "92c867a8-1239-4621-9542-1bd602083fd9", + "id": "83475a9a-ecf6-4214-9297-50d6ecea1c06", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -21714,7 +21714,7 @@ "type": "text/plain" }, "key": "activeLinkColor", - "value": "magna eiusmod", + "value": "aliquip culpa qui ullamco", "type": "text" }, { @@ -21723,7 +21723,7 @@ "type": "text/plain" }, "key": "navigationColor", - "value": "sed dolor dolor ut", + "value": "anim ex ut", "type": "text" }, { @@ -21769,7 +21769,7 @@ "_postman_previewlanguage": "json" }, { - "id": "53f9b422-d135-4815-a4c8-b1d074a4b805", + "id": "4681eebd-0ea7-4f07-b97c-2762dbfe4f56", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -21837,7 +21837,7 @@ "type": "text/plain" }, "key": "activeLinkColor", - "value": "magna eiusmod", + "value": "aliquip culpa qui ullamco", "type": "text" }, { @@ -21846,7 +21846,7 @@ "type": "text/plain" }, "key": "navigationColor", - "value": "sed dolor dolor ut", + "value": "anim ex ut", "type": "text" }, { @@ -21892,7 +21892,7 @@ "_postman_previewlanguage": "json" }, { - "id": "58555797-98ef-4dea-a7be-3b0fda671307", + "id": "4a8ff6eb-6be8-4e01-b557-ffb8b0dc36ff", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -21960,7 +21960,7 @@ "type": "text/plain" }, "key": "activeLinkColor", - "value": "magna eiusmod", + "value": "aliquip culpa qui ullamco", "type": "text" }, { @@ -21969,7 +21969,7 @@ "type": "text/plain" }, "key": "navigationColor", - "value": "sed dolor dolor ut", + "value": "anim ex ut", "type": "text" }, { @@ -22015,7 +22015,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dbc31122-991a-4033-b096-609f8ab45030", + "id": "1e12983d-72e0-44c6-8c53-4947c1f2f4bc", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -22083,7 +22083,7 @@ "type": "text/plain" }, "key": "activeLinkColor", - "value": "magna eiusmod", + "value": "aliquip culpa qui ullamco", "type": "text" }, { @@ -22092,7 +22092,7 @@ "type": "text/plain" }, "key": "navigationColor", - "value": "sed dolor dolor ut", + "value": "anim ex ut", "type": "text" }, { @@ -22144,7 +22144,7 @@ } }, { - "id": "e13f8144-8e30-48ba-ac38-8329a447db55", + "id": "4e2ba2b2-67dd-42c7-b3f9-035529a8182a", "name": "Get a branding item", "request": { "name": "Get a branding item", @@ -22185,7 +22185,7 @@ }, "response": [ { - "id": "53183073-79dd-4dd0-9d3a-32c3fbb0ead4", + "id": "2d15ddbf-e2da-459c-83c7-20810dc0fd27", "name": "A branding item object", "originalRequest": { "url": { @@ -22224,12 +22224,12 @@ "value": "application/json" } ], - "body": "{\n \"name\": \"default\",\n \"productName\": \"product name\",\n \"actionButtonColor\": \"0074D9\",\n \"activeLinkColor\": \"velit est proident labore irure\",\n \"navigationColor\": \"deserunt proident voluptate Lorem\",\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 adipisicing eu\",\n \"navigationColor\": \"in\",\n \"emailFromAddress\": \"no-reply@sailpoint.com\",\n \"standardLogoURL\": \"\",\n \"loginInformationalMessage\": \"\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "356e7af8-d9c4-48d2-85e3-b6d4ac229c51", + "id": "28cc5179-bd26-4866-8c49-4e48676ef356", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -22273,7 +22273,7 @@ "_postman_previewlanguage": "json" }, { - "id": "61e8388e-8718-4264-9e9c-d58dad26776e", + "id": "f380104e-ad2c-4a4a-8ee7-6adcf77b8d36", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -22317,7 +22317,7 @@ "_postman_previewlanguage": "json" }, { - "id": "67512a62-c5d2-43b0-a91d-c1013cf357e0", + "id": "9dde35ef-aa48-4187-a6cc-30e1f1061111", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -22361,7 +22361,7 @@ "_postman_previewlanguage": "json" }, { - "id": "287e9968-e6e9-420b-8d22-d5d7f25d1452", + "id": "a6dc0469-6735-43f5-8ab5-88db5ba9f95c", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -22405,7 +22405,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1599a06b-33ec-4f97-847f-9b609addb65c", + "id": "f4e62b02-2464-4fa8-bf44-68b9ba4b6b5c", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -22449,7 +22449,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e5283494-13f0-412b-892c-038b0296fef6", + "id": "f7d2267a-e686-47be-80e8-46adee1bb30b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -22499,7 +22499,7 @@ } }, { - "id": "c924ad4a-92bd-448f-9ba2-77b377a79331", + "id": "725482b7-44a5-4bc3-8381-ffcb062ee2db", "name": "Update a branding item", "request": { "name": "Update a branding item", @@ -22576,7 +22576,7 @@ "type": "text/plain" }, "key": "activeLinkColor", - "value": "magna eiusmod", + "value": "aliquip culpa qui ullamco", "type": "text" }, { @@ -22585,7 +22585,7 @@ "type": "text/plain" }, "key": "navigationColor", - "value": "sed dolor dolor ut", + "value": "anim ex ut", "type": "text" }, { @@ -22620,7 +22620,7 @@ }, "response": [ { - "id": "95951086-8fd9-40e1-8200-43865b9313b3", + "id": "5e92f1ed-cc0d-41a9-9563-9bd30e24975f", "name": "Branding item updated", "originalRequest": { "url": { @@ -22689,7 +22689,7 @@ "type": "text/plain" }, "key": "activeLinkColor", - "value": "magna eiusmod", + "value": "aliquip culpa qui ullamco", "type": "text" }, { @@ -22698,7 +22698,7 @@ "type": "text/plain" }, "key": "navigationColor", - "value": "sed dolor dolor ut", + "value": "anim ex ut", "type": "text" }, { @@ -22739,12 +22739,12 @@ "value": "application/json" } ], - "body": "{\n \"name\": \"default\",\n \"productName\": \"product name\",\n \"actionButtonColor\": \"0074D9\",\n \"activeLinkColor\": \"velit est proident labore irure\",\n \"navigationColor\": \"deserunt proident voluptate Lorem\",\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 adipisicing eu\",\n \"navigationColor\": \"in\",\n \"emailFromAddress\": \"no-reply@sailpoint.com\",\n \"standardLogoURL\": \"\",\n \"loginInformationalMessage\": \"\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "938a7517-245a-438e-a7d6-6efb755dc220", + "id": "49c47a16-0229-407c-a1a5-de78e88e8af3", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -22813,7 +22813,7 @@ "type": "text/plain" }, "key": "activeLinkColor", - "value": "magna eiusmod", + "value": "aliquip culpa qui ullamco", "type": "text" }, { @@ -22822,7 +22822,7 @@ "type": "text/plain" }, "key": "navigationColor", - "value": "sed dolor dolor ut", + "value": "anim ex ut", "type": "text" }, { @@ -22868,7 +22868,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1ef01fe9-1d63-4dba-8c04-60ed36f00282", + "id": "299eef5c-f008-4bba-bcb9-c59a0799eac0", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -22937,7 +22937,7 @@ "type": "text/plain" }, "key": "activeLinkColor", - "value": "magna eiusmod", + "value": "aliquip culpa qui ullamco", "type": "text" }, { @@ -22946,7 +22946,7 @@ "type": "text/plain" }, "key": "navigationColor", - "value": "sed dolor dolor ut", + "value": "anim ex ut", "type": "text" }, { @@ -22992,7 +22992,7 @@ "_postman_previewlanguage": "json" }, { - "id": "025bf199-85a7-4580-ad3d-eae2664aabd4", + "id": "07c38da9-9462-460c-a075-5ea85e1e0605", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -23061,7 +23061,7 @@ "type": "text/plain" }, "key": "activeLinkColor", - "value": "magna eiusmod", + "value": "aliquip culpa qui ullamco", "type": "text" }, { @@ -23070,7 +23070,7 @@ "type": "text/plain" }, "key": "navigationColor", - "value": "sed dolor dolor ut", + "value": "anim ex ut", "type": "text" }, { @@ -23116,7 +23116,7 @@ "_postman_previewlanguage": "json" }, { - "id": "47027466-4e0e-417d-a982-792f80b67788", + "id": "abe87db8-8e68-42b9-853f-48b6a617b0f3", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -23185,7 +23185,7 @@ "type": "text/plain" }, "key": "activeLinkColor", - "value": "magna eiusmod", + "value": "aliquip culpa qui ullamco", "type": "text" }, { @@ -23194,7 +23194,7 @@ "type": "text/plain" }, "key": "navigationColor", - "value": "sed dolor dolor ut", + "value": "anim ex ut", "type": "text" }, { @@ -23240,7 +23240,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5e5bdcfb-d9a9-46c8-8d23-03705ee24959", + "id": "a96a26f1-0adb-4bdf-98a5-03b8abd15afb", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -23309,7 +23309,7 @@ "type": "text/plain" }, "key": "activeLinkColor", - "value": "magna eiusmod", + "value": "aliquip culpa qui ullamco", "type": "text" }, { @@ -23318,7 +23318,7 @@ "type": "text/plain" }, "key": "navigationColor", - "value": "sed dolor dolor ut", + "value": "anim ex ut", "type": "text" }, { @@ -23364,7 +23364,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e81161c2-7e2c-4a9a-9f06-67c15dd072eb", + "id": "77faf3a4-986d-45b2-833f-64aea83672bf", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -23433,7 +23433,7 @@ "type": "text/plain" }, "key": "activeLinkColor", - "value": "magna eiusmod", + "value": "aliquip culpa qui ullamco", "type": "text" }, { @@ -23442,7 +23442,7 @@ "type": "text/plain" }, "key": "navigationColor", - "value": "sed dolor dolor ut", + "value": "anim ex ut", "type": "text" }, { @@ -23494,7 +23494,7 @@ } }, { - "id": "53bdd3ee-76d9-42c8-b4e8-77d58ef273dd", + "id": "826e9805-922a-412f-b719-797c2d1ae708", "name": "Delete a branding item", "request": { "name": "Delete a branding item", @@ -23535,7 +23535,7 @@ }, "response": [ { - "id": "22722bf4-68ea-4103-9b03-1cecf08784a9", + "id": "b8c2c488-e500-45f0-a430-7bb99538c447", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -23569,7 +23569,7 @@ "_postman_previewlanguage": "text" }, { - "id": "b9e02795-6f81-45b2-a9c4-f9c6086e88a0", + "id": "0523cbe6-cc61-459e-8db3-2b775e1f8325", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -23613,7 +23613,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e6c06ec6-6f1c-4bde-90e8-66d30fd94823", + "id": "421d0404-e341-4e82-8871-7ca68dcf06c0", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -23657,7 +23657,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d41f6921-e010-4c45-8ee5-90921af5a66f", + "id": "2a41575f-8dfe-4fe0-8dea-5a21edc9a457", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -23701,7 +23701,7 @@ "_postman_previewlanguage": "json" }, { - "id": "45e706d6-4303-4e81-a48e-73a0fa91abdd", + "id": "06e264c8-59b8-4174-9077-66681a157f5c", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -23745,7 +23745,7 @@ "_postman_previewlanguage": "json" }, { - "id": "291d857c-e091-4ea7-9b54-ddb1651ba1ce", + "id": "51a17adb-f53c-429d-aa65-c05cccd33667", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -23789,7 +23789,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fde80ed4-ff66-49a9-a59b-c3f6eecda8cb", + "id": "ab9a16e4-c679-4d7b-8c59-82eff64f387a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -23845,7 +23845,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": "f6ecdab0-6190-4ae6-9527-54408b3c8de4", + "id": "d1fc4890-4818-427c-9629-ad78959ed2e9", "name": "Create Campaign Filter", "request": { "name": "Create Campaign Filter", @@ -23887,7 +23887,7 @@ }, "response": [ { - "id": "2c37c488-d06f-4da2-9983-22a4b14c0cdd", + "id": "35d9abab-251a-49f3-9bab-c0b4ba4cee34", "name": "Created successfully.", "originalRequest": { "url": { @@ -23943,7 +23943,7 @@ "_postman_previewlanguage": "json" }, { - "id": "de5cb51c-f43f-4e6f-aed9-9d408ac01ffe", + "id": "6e83f61f-2b13-438f-9bdc-95c8c10ecb11", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -23999,7 +23999,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f05cbfd5-fd58-4063-b594-fc55cda66040", + "id": "ecb97381-f661-4f1b-ae1b-2acb28ed1b6d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -24055,7 +24055,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a3dd7254-5d65-4c4d-9eae-9e5c74b163ac", + "id": "315cc949-cb72-4569-b5fa-4e59d5e53fec", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -24111,7 +24111,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8627336c-deb4-4b1d-bef6-0e7cbb089d09", + "id": "c11e0c4a-00ca-4b5d-a2ff-546ea8de231f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -24167,7 +24167,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9c68a261-cc4f-48c6-a56f-41a88ef6fadc", + "id": "a3670131-3de2-4019-88a3-7c8186ec8a70", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -24229,7 +24229,7 @@ } }, { - "id": "778957a9-caa7-4d15-aed4-3897cb2d0f68", + "id": "6a7b5748-d40f-40e9-94b7-f5482878cd91", "name": "List Campaign Filters", "request": { "name": "List Campaign Filters", @@ -24286,7 +24286,7 @@ }, "response": [ { - "id": "9151bb10-a7aa-4bb7-ac0b-dc9d0ccdc13d", + "id": "9ed0f88d-d006-4500-8546-8074eb097f1c", "name": "List of campaign filter objects.", "originalRequest": { "url": { @@ -24357,7 +24357,7 @@ "_postman_previewlanguage": "json" }, { - "id": "89b74b05-d7e3-4514-8707-f57002677a08", + "id": "3382d5a7-a31b-4796-9eef-23987b971b9f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -24428,7 +24428,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eb57d791-c194-42c4-8a58-8f5f5c8a598b", + "id": "0e340106-51ee-43f8-949c-cf5dd71ec75e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -24499,7 +24499,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f902a086-a38d-4630-a1f6-c5bb00afcf9c", + "id": "87dd2abf-553c-433e-a8bc-80d8ead6b91a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -24570,7 +24570,7 @@ "_postman_previewlanguage": "json" }, { - "id": "464d13a9-e616-448b-b401-cb47b1c2ffe9", + "id": "305529bb-82df-4326-b6e6-ed1d00088ee4", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -24641,7 +24641,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b69ba26d-b0ca-4abd-b65e-7623248e9bb0", + "id": "6eac7e7a-22f1-4624-bdf1-bd94764d26da", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -24718,7 +24718,7 @@ } }, { - "id": "3eaf25c9-45ca-4cd0-aa02-90ac51e96412", + "id": "38df6303-5b67-4caf-8bb2-301fc93a3168", "name": "Get Campaign Filter by ID", "request": { "name": "Get Campaign Filter by ID", @@ -24763,7 +24763,7 @@ }, "response": [ { - "id": "a9308d08-f051-45c7-bca3-a6cf9fb5d688", + "id": "87364f74-44a4-470f-8e78-84718c3a077d", "name": "A campaign filter object.", "originalRequest": { "url": { @@ -24807,7 +24807,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dad9ac3c-f0fe-4af7-88f4-498f5f39efcc", + "id": "88d608c2-1759-45e2-9ac0-7982737a0013", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -24851,7 +24851,7 @@ "_postman_previewlanguage": "json" }, { - "id": "34a7f580-df35-4a00-ad8b-e8b1560e196c", + "id": "b30f3540-7182-48df-b43a-76f915d28d04", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -24895,7 +24895,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c5511e15-38ff-4a81-99af-55003bfe29d4", + "id": "deea702f-ef80-471f-a92d-8ffa7ec214fb", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -24939,7 +24939,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0fd87659-68c6-4433-86b6-926f307bf218", + "id": "41bfd2f8-0703-44ec-a36b-7529aca96a25", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -24983,7 +24983,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dc3fe2ab-d676-4daf-85d7-316eef64181a", + "id": "543ae39b-fe59-413f-ade8-76f5658b05c2", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -25027,7 +25027,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e3b4974b-5ff1-487d-9909-d973daf1e905", + "id": "91c952ad-3b62-4dca-b50e-600e5b754566", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -25077,7 +25077,7 @@ } }, { - "id": "401b7404-cc0c-413a-8d3d-1ce924c7eefc", + "id": "0bf3763a-4a32-4073-b88a-7d3d2ce8fee8", "name": "Updates a Campaign Filter", "request": { "name": "Updates a Campaign Filter", @@ -25135,7 +25135,7 @@ }, "response": [ { - "id": "8531f14d-216b-4b18-b4ba-b30172411e50", + "id": "cc1e5a3d-4e26-4fa6-bc56-54d6deb23072", "name": "Created successfully.", "originalRequest": { "url": { @@ -25192,7 +25192,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9e827e3e-aa7f-4f12-904a-1416da617bc1", + "id": "e3562406-a917-42b4-862f-1e05bc2296e1", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -25249,7 +25249,7 @@ "_postman_previewlanguage": "json" }, { - "id": "69e2dc0b-a34d-4321-9e6d-042ad89628ea", + "id": "95b9826d-6f64-44a1-86b0-d060f48d9e71", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -25306,7 +25306,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ee49e09e-f5a0-4d50-8492-d2d15bbdf5e8", + "id": "aebb0962-3748-4c94-a8f6-7f29ef44398d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -25363,7 +25363,7 @@ "_postman_previewlanguage": "json" }, { - "id": "595f7ebd-a148-4ae7-8867-d7185e9d8d0b", + "id": "4db74e1f-6387-4567-ac61-2c4e37661efb", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -25420,7 +25420,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ed32407c-b781-40d6-ac1f-da5efc9fa702", + "id": "1c565427-3677-4307-be48-ee91b33049f5", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -25483,7 +25483,7 @@ } }, { - "id": "87a01ca7-e1f1-404f-aab0-637ea1c1fc52", + "id": "785bee03-065d-4d86-866f-529ab741712f", "name": "Deletes Campaign Filters", "request": { "name": "Deletes Campaign Filters", @@ -25526,7 +25526,7 @@ }, "response": [ { - "id": "5c664fd7-cabe-4e5b-822d-0bdb342dae5f", + "id": "e5892374-20ac-4ead-8224-f8a339c4a9fc", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -25573,7 +25573,7 @@ "_postman_previewlanguage": "text" }, { - "id": "f5070748-2d6d-4e65-ae2c-537ec1117fe2", + "id": "2ea32efa-12df-4b34-a0ef-6c23d96b4051", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -25630,7 +25630,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7ddecdcb-3600-4e09-b141-a37ea2f8ccb3", + "id": "1d8c4a0f-ca00-4462-948d-2f46ebc407cd", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -25687,7 +25687,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8919c8e6-dfe2-4fd6-a9e0-23ae1597557d", + "id": "b1c07c5d-5318-4e84-9bb1-ee961caabb45", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -25744,7 +25744,7 @@ "_postman_previewlanguage": "json" }, { - "id": "56938a11-6ab4-4dbc-a0e1-6ce9b60aeced", + "id": "4c7a0251-e8af-4291-a74d-029b8cdcc681", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -25801,7 +25801,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7c2e3f74-3ef1-49a8-bd54-b9aafc8dd9bb", + "id": "4e06cdd3-14c8-4bf4-8394-5a6dfbfb7234", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -25858,7 +25858,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3b20cee3-3b02-4746-b22a-332ca7183082", + "id": "e1ac96ad-66c3-4c0e-8b3c-f368f7aedc62", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -25927,7 +25927,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": "a559177a-7291-4a07-a512-9ffc71a5c7f7", + "id": "8eb4704b-9710-4e33-a798-793ab7aac11e", "name": "List Campaigns", "request": { "name": "List Campaigns", @@ -26011,7 +26011,7 @@ }, "response": [ { - "id": "5fe79f5b-62fc-4662-a6b3-c9c9d104dd27", + "id": "c6ac1e29-b9e8-4889-9fe1-c9c58543d7e1", "name": "Slim Campaign", "originalRequest": { "url": { @@ -26109,7 +26109,7 @@ "_postman_previewlanguage": "json" }, { - "id": "23ee81a3-54fa-4328-b115-a29eaa81e9e7", + "id": "715d448f-d03b-4f45-8233-51221a69438d", "name": "Full Campaign", "originalRequest": { "url": { @@ -26207,7 +26207,7 @@ "_postman_previewlanguage": "json" }, { - "id": "16d774fd-c3ee-436d-8ac1-73b8124eff2a", + "id": "c317dbf9-195d-4103-b436-41802a5b1031", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -26305,7 +26305,7 @@ "_postman_previewlanguage": "json" }, { - "id": "322b0d72-bae3-40db-a44c-5684a3f58790", + "id": "e6e58c34-ec54-4a0f-ad85-b82059c8a985", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -26403,7 +26403,7 @@ "_postman_previewlanguage": "json" }, { - "id": "af257209-22bd-43e5-9f41-aa7fbf2e025e", + "id": "3c60ed1f-c106-45af-802f-76d4aaf4401d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -26501,7 +26501,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e88eafc6-8399-4fb5-9997-b4eceba0e3f9", + "id": "48c17426-3797-412c-aa7e-2119f575c840", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -26599,7 +26599,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6a350e76-f6ea-4779-806d-b0ca4e6af08d", + "id": "eae0c1c2-891c-4672-affb-16e8ccfdf615", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -26703,7 +26703,7 @@ } }, { - "id": "1247764c-526e-4448-a367-16e760439389", + "id": "ceb00c33-8748-4703-834d-4a5f31600edc", "name": "Create a campaign", "request": { "name": "Create a campaign", @@ -26745,7 +26745,7 @@ }, "response": [ { - "id": "066f35ec-4557-4110-b00f-98a96a399c2d", + "id": "f365feda-8e9b-4c99-9f17-c0bcdf3c0eae", "name": "Manager", "originalRequest": { "url": { @@ -26801,7 +26801,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7583aa80-2641-4a3c-b445-a2f4bb9e40e6", + "id": "20cbbcae-71d4-4134-a9f3-52e2912c4cee", "name": "Search", "originalRequest": { "url": { @@ -26857,7 +26857,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cd06bd32-9564-42ad-bc10-f06fde03254c", + "id": "9cfd3051-d3ab-4983-a345-18cb66e651d3", "name": "Source Owner", "originalRequest": { "url": { @@ -26913,7 +26913,7 @@ "_postman_previewlanguage": "json" }, { - "id": "35773918-ef82-4e4e-90a4-cfbb68d7c378", + "id": "be4f3916-b357-4247-aa8f-533395e1ccc8", "name": "Role Composition", "originalRequest": { "url": { @@ -26969,7 +26969,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d97860bd-09a1-44e9-9708-9f005a4a5a6c", + "id": "4ae9f417-f0b6-4710-8e85-6ac077769685", "name": "Manager", "originalRequest": { "url": { @@ -27025,7 +27025,7 @@ "_postman_previewlanguage": "json" }, { - "id": "29093a14-5824-4420-b5a5-73ee0fc28767", + "id": "5fd35001-3923-4075-a1b5-f77f7f854136", "name": "Search", "originalRequest": { "url": { @@ -27081,7 +27081,7 @@ "_postman_previewlanguage": "json" }, { - "id": "53029218-edb5-4967-826e-1648cc443b97", + "id": "5fcac7a6-2a80-4949-a0c7-49047f5a1026", "name": "Source Owner", "originalRequest": { "url": { @@ -27137,7 +27137,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dccf335d-97be-4b9d-bb8e-e652470ba578", + "id": "05b327c2-b74f-45fe-9399-9e95f7a56452", "name": "Role Composition", "originalRequest": { "url": { @@ -27193,7 +27193,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ab01f6e0-aaa7-4fe8-a258-1bc4361f232d", + "id": "ccb2522d-514b-4bfa-a550-be11707b6efa", "name": "Manager", "originalRequest": { "url": { @@ -27249,7 +27249,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b90ea2df-c302-4533-ae6a-c0510a266bab", + "id": "9ee745cf-3f42-47f8-8ffe-5cdedb1b7a70", "name": "Search", "originalRequest": { "url": { @@ -27305,7 +27305,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bebcb6a9-ad04-4d48-892c-297a3245ad27", + "id": "512c4e19-40b5-449a-8a3f-c8ea32400399", "name": "Source Owner", "originalRequest": { "url": { @@ -27361,7 +27361,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2b84102f-e448-441c-8fd7-5355f8af11c7", + "id": "ccec91b0-0656-41c1-8cda-5e91f1155b80", "name": "Role Composition", "originalRequest": { "url": { @@ -27417,7 +27417,7 @@ "_postman_previewlanguage": "json" }, { - "id": "134f43ac-2dd8-47e1-b7b8-4198cb6379cb", + "id": "8a4837b3-254e-4b47-ba59-d9a59497d5fb", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -27473,7 +27473,7 @@ "_postman_previewlanguage": "json" }, { - "id": "83c09be8-cae6-4271-bcd9-72611f09cdc9", + "id": "fa1842c6-f85f-4e94-b556-b320a66bc5df", "name": "Search", "originalRequest": { "url": { @@ -27529,7 +27529,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f973b126-177c-4f51-8fda-bb4ffc251d7d", + "id": "de577752-4076-4aae-8b76-458f59f3e32a", "name": "Source Owner", "originalRequest": { "url": { @@ -27585,7 +27585,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a5b179a3-8b9c-456f-9af8-8ebe403f8098", + "id": "af8b1228-ea10-4c2d-8307-33ae0801573e", "name": "Role Composition", "originalRequest": { "url": { @@ -27641,7 +27641,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f781a2cb-5179-4ba3-95e2-bcdbc415baaf", + "id": "5d2fe0a1-f86e-4d91-a83f-c7405843beeb", "name": "Manager", "originalRequest": { "url": { @@ -27697,7 +27697,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8ed50339-d6c5-4eaf-a9a5-570018e4f19b", + "id": "0e580a25-bae6-4891-9c7c-69aa4076f020", "name": "Search", "originalRequest": { "url": { @@ -27753,7 +27753,7 @@ "_postman_previewlanguage": "json" }, { - "id": "68f76a3b-c899-42ef-aabf-e0e8d8f27b2c", + "id": "3310f8ba-a878-4b3a-8b64-d853a29898a5", "name": "Source Owner", "originalRequest": { "url": { @@ -27809,7 +27809,7 @@ "_postman_previewlanguage": "json" }, { - "id": "39a044af-0029-46e4-a495-2da52f68489a", + "id": "926c92ee-1641-49f0-a160-355ef47a190c", "name": "Role Composition", "originalRequest": { "url": { @@ -27865,7 +27865,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0c4a214d-d76c-4243-8fc0-6bf7e2069dc0", + "id": "a488b730-e50d-4dd2-93ef-b6deab6fe488", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -27921,7 +27921,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ecb43cdf-2965-40d6-b0f5-7665f4a8575c", + "id": "e85a23d3-d569-4df4-a65e-bc9aecac07f3", "name": "Search", "originalRequest": { "url": { @@ -27977,7 +27977,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7e56f2f6-eea7-4822-9688-72de2ff04f53", + "id": "fe76e0fa-b2b3-4501-a75f-64d560fa5b73", "name": "Source Owner", "originalRequest": { "url": { @@ -28033,7 +28033,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2d4235ae-a72d-4dd4-87b6-689b7e0f3653", + "id": "dc2d2f1d-6797-4cf2-9bd4-32607221648b", "name": "Role Composition", "originalRequest": { "url": { @@ -28095,7 +28095,7 @@ } }, { - "id": "fffe8039-5897-4155-a426-905c244c5c0a", + "id": "69b51652-12de-4fa1-acf8-6c672452550d", "name": "Get Campaign", "request": { "name": "Get Campaign", @@ -28146,7 +28146,7 @@ }, "response": [ { - "id": "b55ea4b7-4a54-4570-8c2f-a70e204f4ec3", + "id": "03b66005-b5e3-41d6-98a6-455be7e43248", "name": "Manager", "originalRequest": { "url": { @@ -28200,7 +28200,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6e72ba91-0103-49ed-8666-a3dc2ee1dd35", + "id": "3937a301-87de-4a8c-84d7-e1067154a657", "name": "Search", "originalRequest": { "url": { @@ -28254,7 +28254,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d1888720-4c6e-45e5-8186-e1706ac324e9", + "id": "9895304b-d434-42ef-9a0b-d30394733aba", "name": "Source Owner", "originalRequest": { "url": { @@ -28308,7 +28308,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ef6246f1-2386-4794-80d7-326ca7daffb1", + "id": "8eb08d80-00e2-4785-b89f-14117ca21eb9", "name": "RoleComposition", "originalRequest": { "url": { @@ -28362,7 +28362,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fb70dbc2-d84a-4310-b81f-7ad6c36721eb", + "id": "02314bc0-2191-4923-8474-4d4a4747decd", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -28416,7 +28416,7 @@ "_postman_previewlanguage": "json" }, { - "id": "faa89a3b-c002-4a77-9c20-d68fd31341bc", + "id": "2e945cc6-e654-4506-aecd-6d8983530301", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -28470,7 +28470,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c88d552b-f049-4c0e-a623-f39b771cca28", + "id": "0417320c-c4d2-4f6e-832a-98b89b89d0f7", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -28524,7 +28524,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a16b6261-31ce-4977-b943-d14def8abeac", + "id": "f0edc468-5b37-4988-af61-6c95f9dd4233", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -28578,7 +28578,7 @@ "_postman_previewlanguage": "json" }, { - "id": "73665de0-8e83-45a5-9e22-c28998fd8b9a", + "id": "a37dd488-4827-4721-830f-390a37fe3473", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -28632,7 +28632,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bab3b775-a6c4-487a-86fa-db96f5c9a4dd", + "id": "7a872de4-a3cf-48e9-8768-367532927dee", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -28692,7 +28692,7 @@ } }, { - "id": "08435e0b-c18e-4cb0-9622-a02e6b1d37a5", + "id": "2a128912-51ec-4cc8-a708-7ca00343e4f4", "name": "Update a Campaign", "request": { "name": "Update a Campaign", @@ -28746,7 +28746,7 @@ }, "response": [ { - "id": "1fea30b1-d9a3-4eab-9d68-5526344e18ce", + "id": "40b3d94b-f6dd-49ac-bedf-90f2fb988c5c", "name": "Manager", "originalRequest": { "url": { @@ -28803,7 +28803,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d4d3e74a-a8a8-4a33-8002-fb7cf029d9dd", + "id": "83d3c016-2235-4c75-98bf-9ef321ac77a1", "name": "Search", "originalRequest": { "url": { @@ -28860,7 +28860,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3cbeccb8-42cd-4fab-af77-5892f64a4f5a", + "id": "daa8d7dd-9492-4f4f-a060-a22bf24a88f9", "name": "Source Owner", "originalRequest": { "url": { @@ -28917,7 +28917,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ca25587d-433b-4d43-853a-b3de89ef9b0a", + "id": "55ca6277-569f-47cf-a7db-db9de1c6be60", "name": "RoleComposition", "originalRequest": { "url": { @@ -28974,7 +28974,7 @@ "_postman_previewlanguage": "json" }, { - "id": "64307b28-2aee-4c85-8fa3-2555ab80ce1a", + "id": "5191b825-38ed-4048-aa0d-756e287b50cd", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -29031,7 +29031,7 @@ "_postman_previewlanguage": "json" }, { - "id": "17894017-5921-4b05-946d-69ab8a42fc19", + "id": "fe8b0d2f-d756-4910-b300-2f2af8d22a39", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -29088,7 +29088,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3557870b-c953-4e2d-9e91-d99635d92df5", + "id": "228b2dd4-5fef-484a-bc78-dc766d16a936", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -29145,7 +29145,7 @@ "_postman_previewlanguage": "json" }, { - "id": "49b52597-b0d5-45e1-ba89-641cae4fb612", + "id": "e3edb624-1c16-4547-b801-fc874358da46", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -29202,7 +29202,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5d83b96b-8030-4bc4-a833-a6a078fb816c", + "id": "0cf19501-cbfa-4696-aff4-c4de15c22807", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -29259,7 +29259,7 @@ "_postman_previewlanguage": "json" }, { - "id": "548a4b83-59dc-4632-a663-0454f4ece588", + "id": "9b0aca84-e1c6-49fd-8226-82774791ed4d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -29322,7 +29322,7 @@ } }, { - "id": "04f14d97-79fc-4db9-9d05-bbdc48834f4a", + "id": "2cd46961-098c-4f2c-bd47-4916661854ec", "name": "Reassign Certifications", "request": { "name": "Reassign Certifications", @@ -29377,7 +29377,7 @@ }, "response": [ { - "id": "1e48efb2-5027-47f5-b591-11522e01c784", + "id": "3efa90f2-8e1c-4a4a-9719-1ff359bf79d5", "name": "The reassign task that has been submitted.", "originalRequest": { "url": { @@ -29435,7 +29435,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a2fb3e90-a621-451d-b35a-d9fafb5839b5", + "id": "8c1243d0-4aaf-474c-b86b-80fddf9df016", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -29493,7 +29493,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b5d8f128-2d8b-48f7-99fe-565dd1df2293", + "id": "2ccd01d8-4a17-469d-877d-6f762ee0808f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -29551,7 +29551,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8a7c1d1a-6052-4958-b2c7-83db60475f91", + "id": "8b740c45-0cfc-4acd-b724-4fae8a9a076a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -29609,7 +29609,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b85f4dc1-ef27-4e00-810e-abd0dec78a54", + "id": "20cec1a7-4956-4a4b-948b-9b2700423b1f", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -29667,7 +29667,7 @@ "_postman_previewlanguage": "json" }, { - "id": "241f5baa-e751-4c0a-b219-5103eea4c01a", + "id": "e3e3d10f-63ea-4cd1-9c51-ac717883eaa8", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -29725,7 +29725,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cd23c301-c52a-483f-ab7a-3ebca83c7105", + "id": "0fb57943-6eac-4c94-ac55-3fac83d96600", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -29789,7 +29789,7 @@ } }, { - "id": "75ad9221-b343-4462-a2f4-52afd77205b6", + "id": "7d33f706-e684-495f-8dfd-15375b75cfd7", "name": "Activate a Campaign", "request": { "name": "Activate a Campaign", @@ -29844,7 +29844,7 @@ }, "response": [ { - "id": "b15f53bf-8c17-4879-ac95-d66a092c502f", + "id": "0caf4eb8-a005-4f0c-9ed9-651572c3db19", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -29902,7 +29902,7 @@ "_postman_previewlanguage": "json" }, { - "id": "52342aea-51aa-4630-bd07-dd203616fa0a", + "id": "4593cb80-6bff-45f3-b126-95612f4b91ed", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -29960,7 +29960,7 @@ "_postman_previewlanguage": "json" }, { - "id": "76074b95-e64d-4da3-9db9-5b4b1c1f8d1f", + "id": "c25b76e3-2103-4493-bb34-aca360393b76", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -30018,7 +30018,7 @@ "_postman_previewlanguage": "json" }, { - "id": "070a7faf-e0b9-4a78-b0dd-b33a99e98e55", + "id": "8279d03c-c751-4c33-b1e4-86febee3e6f0", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -30076,7 +30076,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7f1bfe37-68d7-43d6-be39-aefa64732d70", + "id": "34c23895-f6c9-469d-84a9-486f891ed077", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -30134,7 +30134,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5ca7657c-9ea3-46b0-9069-b0659ea93a70", + "id": "31eae310-d8d9-4a52-b4f4-4850a44fce68", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -30192,7 +30192,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d383c5b7-b478-4cde-b9d3-c56a58f89488", + "id": "36cda278-9b57-4f13-91f3-2fe6a0137051", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -30256,7 +30256,7 @@ } }, { - "id": "cbc543b6-0b7b-4ab6-8da3-f5cb9fb7b816", + "id": "7dec0a9f-70dc-420d-aaf3-d79e272a2dce", "name": "Complete a Campaign", "request": { "name": "Complete a Campaign", @@ -30311,7 +30311,7 @@ }, "response": [ { - "id": "a1e6c78a-add5-4bf3-b305-36b5bb39d485", + "id": "18c6101e-af72-43b7-9681-3c5f8dc2f94f", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -30369,7 +30369,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2a107569-2bfb-4a01-9b66-70996976d387", + "id": "8845049d-3932-4a06-bd98-1600205c20db", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -30427,7 +30427,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f647b9cb-b9d5-4931-a557-9b57e4376003", + "id": "b80a34eb-4f13-4899-bcff-2e2803dfbbda", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -30485,7 +30485,7 @@ "_postman_previewlanguage": "json" }, { - "id": "04615fab-3e4f-4c27-ba23-7b2fc23490b1", + "id": "efc00374-43c1-4779-84c6-a301238d50bf", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -30543,7 +30543,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7ae953e5-cfab-4112-b2d4-5653fcdc9eed", + "id": "dacb9b1d-82f2-4875-8fd5-1196e3d6be47", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -30601,7 +30601,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9d42f3d3-8c97-4824-a76b-7f86613bf216", + "id": "31c6a491-0662-45e9-b78f-e30f527097ce", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -30659,7 +30659,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c6f41899-d556-4bc3-9949-3b5c8660dbb5", + "id": "ac2a9a15-4669-47c5-849d-07191717c703", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -30723,7 +30723,7 @@ } }, { - "id": "45dbaba6-8dc9-4513-90b3-59317d43b24c", + "id": "a9746e4c-ee0b-49ad-9048-3fdd8265ffab", "name": "Delete Campaigns", "request": { "name": "Delete Campaigns", @@ -30766,7 +30766,7 @@ }, "response": [ { - "id": "0ce6cf8f-9078-4f28-a218-ab610a71a649", + "id": "31f219d2-eb92-424d-9979-553a836c278e", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -30823,7 +30823,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6b6a4072-ae36-4400-b2b9-61dee31fc120", + "id": "f7ed7886-ed21-4454-88bf-6fe7d98cff97", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -30880,7 +30880,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2e91aede-8552-4a52-906e-b3f16840cd83", + "id": "d3defcea-bff2-4672-afd9-934ba66de1ed", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -30937,7 +30937,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1be79ab8-9dfe-41c2-a822-5ee8f8e3ecd4", + "id": "0b0bf12e-2450-41c5-8e4a-2734062f0bb9", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -30994,7 +30994,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b0b572ec-ff2f-4833-b160-4941e529cf08", + "id": "70bf600f-61bc-4e9e-a8ee-38f66aeb6643", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -31051,7 +31051,7 @@ "_postman_previewlanguage": "json" }, { - "id": "39e630ef-fa42-4a88-a636-e61fbd977845", + "id": "d482e28f-8bc5-441c-af5a-edfed32643dd", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -31108,7 +31108,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d0062fbd-cd07-408b-a5a7-3258350215d7", + "id": "de5d94d4-0eb6-4e66-9ebd-65c5754f109e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -31171,7 +31171,7 @@ } }, { - "id": "65e76bd2-5684-40f1-83b7-7d23bb03b621", + "id": "d5fe204f-7d33-48ad-b47a-27ed7893dfd0", "name": "Run Campaign Remediation Scan", "request": { "name": "Run Campaign Remediation Scan", @@ -31213,7 +31213,7 @@ }, "response": [ { - "id": "ba4fa62c-f34c-4af3-92a4-368a711b944b", + "id": "0bcb165c-a5f8-455a-9468-6c7140b3efc5", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -31258,7 +31258,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d2c508cf-08cf-44d6-a3e3-385f4df172b0", + "id": "67c8c931-5b91-4d66-b54c-6ff6a0f13c43", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -31303,7 +31303,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cc05ad97-3d77-4a76-b6d5-2f4dacf1d33e", + "id": "7c9acc6b-f931-477c-99a2-3cc66e6b21dd", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -31348,7 +31348,7 @@ "_postman_previewlanguage": "json" }, { - "id": "55437125-e192-42ba-9e6d-68ab03a444bd", + "id": "4c4edf77-93f5-4d69-adbb-4c4a623f3a59", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -31393,7 +31393,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d38f04b1-16c7-4882-9960-df81d1277a3c", + "id": "dbf5ed0a-f928-4537-96b1-520519c1da0e", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -31438,7 +31438,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1213aacb-f31a-4345-b066-0ff15fb6b7cf", + "id": "fa25fe1c-d196-42bd-9bd2-ef5e3ebc6a9d", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -31483,7 +31483,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e02bf3b4-d6ac-439b-8ccd-a45de7d0cf2f", + "id": "4e914996-bc43-4947-8d1a-3e386b30f24a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -31534,7 +31534,7 @@ } }, { - "id": "7a139a82-b589-4b91-8af0-7af8647fd348", + "id": "2b59b4b4-7f51-4710-aa05-c0bd09968545", "name": "Get Campaign Reports", "request": { "name": "Get Campaign Reports", @@ -31576,7 +31576,7 @@ }, "response": [ { - "id": "bc366424-ca9a-47d6-bc17-b41bc5f69d5a", + "id": "a565f85e-4c10-40a8-8513-13d385610405", "name": "Array of campaign report objects.", "originalRequest": { "url": { @@ -31621,7 +31621,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2cdf78f4-9c17-4a44-b0fa-ce575300abca", + "id": "085706b9-8c22-4291-a6b1-78602153eec0", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -31666,7 +31666,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e058eb46-d853-41b5-b553-f80dc6af6989", + "id": "4d010da1-0e1c-4e1e-8d43-ca3fff6f5a92", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -31711,7 +31711,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9687f6e7-98e4-4559-8448-e9a6770339ab", + "id": "90f1eb40-94bf-4c6e-856e-f1180c630c24", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -31756,7 +31756,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c8b5b28b-db9c-480e-9eb1-56e30bf338c9", + "id": "2ebe70ce-92b4-48f1-acca-596e8b5fc28e", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -31801,7 +31801,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b00e41ae-59f5-430c-8408-03d1804d3920", + "id": "afb5b6bd-00a6-4b4b-a908-7e67fdbee386", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -31846,7 +31846,7 @@ "_postman_previewlanguage": "json" }, { - "id": "edd817e0-a081-4ae3-aa81-3168e97dcfb9", + "id": "e27e1260-bbc0-431d-af93-3901c61555e9", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -31897,7 +31897,7 @@ } }, { - "id": "1341f14d-922a-416e-9762-e692ac962c29", + "id": "cce7ca3d-7e37-4fb4-9969-ebfd498c778d", "name": "Run Campaign Report", "request": { "name": "Run Campaign Report", @@ -31950,7 +31950,7 @@ }, "response": [ { - "id": "4e52a978-c721-4029-a32a-589affce403d", + "id": "b4319573-c415-479e-9c35-631a67e40729", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -31996,7 +31996,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d39b96dd-83c2-40a3-8d51-ce2d03edaf82", + "id": "3f7d634b-fb90-4f3b-8258-dea229fabe1c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -32042,7 +32042,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e42193fb-f600-4c38-94ac-e6c937005bcb", + "id": "f40cd956-a1ff-4b40-95ef-a7a8150e49a0", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -32088,7 +32088,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c64becdc-4965-456c-8034-fe45e9c9c001", + "id": "4769173e-73cf-4759-a77e-27cf575ba483", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -32134,7 +32134,7 @@ "_postman_previewlanguage": "json" }, { - "id": "12aa8e87-a9af-4c12-8493-762bed34de8d", + "id": "73712f79-61b7-478b-a7cd-4fbd581e53ef", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -32180,7 +32180,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4be32ce7-3a99-43f9-8941-fed6fa0840fc", + "id": "163343f4-baee-4039-be91-2cb9d1eec6b9", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -32226,7 +32226,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3a4997c9-d588-46f9-b759-6d5c6a570550", + "id": "82b7bd01-5c41-4313-8387-dca91d94bd8d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -32278,7 +32278,7 @@ } }, { - "id": "8948df66-b3df-4ca7-bc1b-601492190819", + "id": "7d13a628-e099-40cf-89b1-659d61ef1204", "name": "Get Campaign Reports Configuration", "request": { "name": "Get Campaign Reports Configuration", @@ -32308,7 +32308,7 @@ }, "response": [ { - "id": "d95426c0-ff54-4736-bea4-c5d313ec6b60", + "id": "ba9bdd53-b396-4e12-8540-d5ae1841c9e3", "name": "Campaign report configuration.", "originalRequest": { "url": { @@ -32352,7 +32352,7 @@ "_postman_previewlanguage": "json" }, { - "id": "66a6c9e5-38b8-4f92-9590-227030f9f0e5", + "id": "d65f146b-4e9f-4947-ad3f-c747baec87d7", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -32396,7 +32396,7 @@ "_postman_previewlanguage": "json" }, { - "id": "22a4ffd0-bdda-436f-a685-ba823b857c6f", + "id": "e4432fa4-29eb-42f3-862d-ba18ac8ab106", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -32440,7 +32440,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e8fe98c7-c361-43ad-81bf-b2e920baa400", + "id": "47e2dcf3-36d3-4c85-8847-5b04aee49362", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -32484,7 +32484,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2dd9191a-6767-41a8-8f10-9c082a906a29", + "id": "9cb1284c-cebf-4458-9189-5bd24799d0a5", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -32528,7 +32528,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d1222c26-5323-462e-961e-c11c45d3b03c", + "id": "c05ac707-6dd6-497b-ad4f-75ab13d0d1fc", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -32578,7 +32578,7 @@ } }, { - "id": "02669196-3e2e-4e2f-bdb4-ecc8503bf026", + "id": "f8862958-80e7-49be-be57-5544f236fe99", "name": "Set Campaign Reports Configuration", "request": { "name": "Set Campaign Reports Configuration", @@ -32621,7 +32621,7 @@ }, "response": [ { - "id": "eae70da1-295c-4ae8-986b-398e360631dc", + "id": "d6282ec7-69bf-4cc1-85be-11840358a71f", "name": "The persisted campaign report configuration.", "originalRequest": { "url": { @@ -32678,7 +32678,7 @@ "_postman_previewlanguage": "json" }, { - "id": "652cf639-2870-49e0-9a71-fd870d500b75", + "id": "69f103f9-b590-467e-a271-ae7d96dacd16", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -32735,7 +32735,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bb74b5f2-3866-4d0b-a6e4-7858a4557318", + "id": "f54e607e-348f-42bb-a36b-efcaccdd832f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -32792,7 +32792,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3ab30c3c-16c8-4d1b-9c61-1fd14535461b", + "id": "dd1776c7-6bfd-423c-9009-b60b46759a42", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -32849,7 +32849,7 @@ "_postman_previewlanguage": "json" }, { - "id": "70739603-c224-46cb-89d9-7a77e0e2f928", + "id": "d4f35e82-81a5-4cf8-a94a-c7d51b992849", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -32906,7 +32906,7 @@ "_postman_previewlanguage": "json" }, { - "id": "adbcf152-0873-457d-add2-c8f0ccc095a5", + "id": "ec4fa96e-ec7b-46a9-804b-2e608a160ead", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -32969,7 +32969,7 @@ } }, { - "id": "b9ced219-e57c-4b6b-a02f-cf45f7f462b0", + "id": "5b7b1fe1-16b8-4811-9393-966fbfc6409c", "name": "Create a Campaign Template", "request": { "name": "Create a Campaign Template", @@ -33011,7 +33011,7 @@ }, "response": [ { - "id": "df5e1bd3-d6fc-407a-9e4f-7e2d7a1ab0c4", + "id": "2811097e-a41b-4a1f-90f2-ae2d34c2f1d5", "name": "Manager", "originalRequest": { "url": { @@ -33067,7 +33067,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dd525b2f-e536-4ec5-980f-5f4bdd8d6e14", + "id": "9301bc4c-cae8-47d6-bbb6-ed30e623d827", "name": "Search", "originalRequest": { "url": { @@ -33123,7 +33123,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b7126fe3-878f-45ad-a9ce-f37e1af111b8", + "id": "edb409a2-8920-4b46-91de-2d7caba374f5", "name": "Source Owner", "originalRequest": { "url": { @@ -33179,7 +33179,7 @@ "_postman_previewlanguage": "json" }, { - "id": "661da742-4639-46c5-95d0-d00e0759ce57", + "id": "67812db8-c02a-4565-9348-49a5569f1011", "name": "RoleComposition", "originalRequest": { "url": { @@ -33235,7 +33235,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c76ab15a-e632-4f3e-bbe8-efc99793711a", + "id": "1f992aa7-69bd-4895-9158-7eea9e387d46", "name": "Manager", "originalRequest": { "url": { @@ -33291,7 +33291,7 @@ "_postman_previewlanguage": "json" }, { - "id": "230d8203-71b4-4393-9d5b-e68fa28337c0", + "id": "29801622-cb57-418e-b7ab-9e03f6096dfb", "name": "Search", "originalRequest": { "url": { @@ -33347,7 +33347,7 @@ "_postman_previewlanguage": "json" }, { - "id": "33f6787c-68c4-41dc-a3ea-f3799ab2f03c", + "id": "443464f2-18fc-46bb-b9a8-1680a2d84a9a", "name": "Source Owner", "originalRequest": { "url": { @@ -33403,7 +33403,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1807b91c-9016-4ec4-9469-f0d6c73ef973", + "id": "0e788534-488e-410b-a3f1-802a57c99323", "name": "RoleComposition", "originalRequest": { "url": { @@ -33459,7 +33459,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b8b4da5e-f0da-40ee-aa87-3154b258c599", + "id": "63d2020a-b280-4e8e-8cb8-ed2a63973e4b", "name": "Manager", "originalRequest": { "url": { @@ -33515,7 +33515,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9991ce63-bfe5-47d4-93eb-3c595e1c1143", + "id": "880be0ef-c774-48c4-8492-c939c38986e6", "name": "Search", "originalRequest": { "url": { @@ -33571,7 +33571,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e1e501cd-78ab-4ab5-b555-69864756e8fc", + "id": "7aefd1ea-4b2a-4f06-9bf3-3068cbef310c", "name": "Source Owner", "originalRequest": { "url": { @@ -33627,7 +33627,7 @@ "_postman_previewlanguage": "json" }, { - "id": "91b38efa-8d35-47ff-a299-2e7452b3c98e", + "id": "35beb685-236d-43b2-a5a2-4998fcaf6157", "name": "RoleComposition", "originalRequest": { "url": { @@ -33683,7 +33683,7 @@ "_postman_previewlanguage": "json" }, { - "id": "243987d5-0061-43b5-a52a-76bf3576a2b0", + "id": "976ff7a4-515d-485e-9747-9b16d90fac38", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -33739,7 +33739,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8aac1528-d70d-459c-9639-b682f9c7c33a", + "id": "08fd96f4-e1fe-4060-a7c0-f36d17eb01fe", "name": "Search", "originalRequest": { "url": { @@ -33795,7 +33795,7 @@ "_postman_previewlanguage": "json" }, { - "id": "74e127b2-209a-4a91-ad9d-0ce48246fece", + "id": "1c4bd2ee-e18a-426a-b110-f175acb36a3f", "name": "Source Owner", "originalRequest": { "url": { @@ -33851,7 +33851,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3db91913-cbc5-47bc-960a-9791dc99e8a0", + "id": "dd44a6d1-7709-4db6-9b02-20db7b1de8ec", "name": "RoleComposition", "originalRequest": { "url": { @@ -33907,7 +33907,7 @@ "_postman_previewlanguage": "json" }, { - "id": "33cae388-cab6-4cf5-bbff-22bb1184c119", + "id": "5016902e-c052-49e4-a40b-c64fabfd9553", "name": "Manager", "originalRequest": { "url": { @@ -33963,7 +33963,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0a82ee0a-8d4c-4740-92e7-9d156f4196ad", + "id": "3bc49150-e904-4e31-87b8-66d742a8eb14", "name": "Search", "originalRequest": { "url": { @@ -34019,7 +34019,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cca1e506-e668-4ca4-aa73-4c892dc4b3ef", + "id": "cfa3da79-9cae-4c8f-bc92-8f2e8d633dbe", "name": "Source Owner", "originalRequest": { "url": { @@ -34075,7 +34075,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8bd1f704-49b6-4655-b572-1732700e6190", + "id": "964084b8-217b-42bd-997b-5bfd58fc1a1b", "name": "RoleComposition", "originalRequest": { "url": { @@ -34131,7 +34131,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9fac8f63-d939-433c-8147-66f27b2922e1", + "id": "bf4f96df-fd78-4058-907e-20d4af93be40", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -34187,7 +34187,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2e2db4f0-f98e-4c71-ab36-7f23de16e6e6", + "id": "330df8aa-f1c2-4fff-ac77-4290b62e7d68", "name": "Search", "originalRequest": { "url": { @@ -34243,7 +34243,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3f4f87df-ea41-415e-b92c-26bd278eb192", + "id": "c8cb3408-cc47-404e-817d-f3e35fba5624", "name": "Source Owner", "originalRequest": { "url": { @@ -34299,7 +34299,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ac222da9-e34f-457c-bfb3-c4a79382945c", + "id": "0e59ab33-e220-4ccb-8b3a-420f3b025047", "name": "RoleComposition", "originalRequest": { "url": { @@ -34361,7 +34361,7 @@ } }, { - "id": "e01c1af9-f35c-4c64-a63a-6d6c2cc8ef6e", + "id": "80a35237-513d-494f-a5b4-5fa5cdf5f8b3", "name": "List Campaign Templates", "request": { "name": "List Campaign Templates", @@ -34436,7 +34436,7 @@ }, "response": [ { - "id": "6d0d5c4e-0394-4aad-8dbe-1ddcfc46c900", + "id": "1e89c252-15bd-4620-bdd8-b43b35a801e9", "name": "List of campaign template objects.", "originalRequest": { "url": { @@ -34525,7 +34525,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f6221aa3-0dc7-4d42-81e3-44b3931a366d", + "id": "0ddca0de-2794-4e2c-ad53-5c566f97fb13", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -34614,7 +34614,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2f74fd4d-df7d-425a-8744-770dcd907856", + "id": "ccc9edef-5645-418e-88c8-bc20739296d1", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -34703,7 +34703,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9a3147ab-ed33-4b0e-81f2-659569e1e9ff", + "id": "8e497daa-74a1-4489-b3ad-47d6375c0cfb", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -34792,7 +34792,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a41205c4-4b71-454b-8b28-1ffe5ec96aaf", + "id": "cda9e4b3-bf64-4377-930e-9bb79e55ad01", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -34881,7 +34881,7 @@ "_postman_previewlanguage": "json" }, { - "id": "40a18997-54a2-442e-ba14-f23093daab36", + "id": "6b9b12df-e376-4955-b09b-673276250bd0", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -34976,7 +34976,7 @@ } }, { - "id": "7b53396b-8386-41a5-87a5-2f71767b0cff", + "id": "29cc8aff-fe29-4e07-a606-2f5b1942c18f", "name": "Update a Campaign Template", "request": { "name": "Update a Campaign Template", @@ -35030,7 +35030,7 @@ }, "response": [ { - "id": "9c2d67d6-26be-4bfa-a26f-b50c5e0c6b0d", + "id": "eebbd19a-4aaa-4b54-94c6-49b956d62a31", "name": "Manager", "originalRequest": { "url": { @@ -35087,7 +35087,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bceec303-96ee-47c7-8284-c6faf9c90f85", + "id": "5d205530-f51d-46b1-b159-5044d7ebf1c7", "name": "Search", "originalRequest": { "url": { @@ -35144,7 +35144,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3e1c3ffe-db43-4aa5-ac5e-3b16237ac581", + "id": "7ea2635d-97f9-446a-9465-92eea9a4a2f5", "name": "Source Owner", "originalRequest": { "url": { @@ -35201,7 +35201,7 @@ "_postman_previewlanguage": "json" }, { - "id": "74d88bfb-fe9a-455e-b3da-3650939e3fa4", + "id": "34d2b916-4338-45a9-8098-877a83ee20b9", "name": "RoleComposition", "originalRequest": { "url": { @@ -35258,7 +35258,7 @@ "_postman_previewlanguage": "json" }, { - "id": "00db43a1-773a-4db9-8853-9f0be1d4b64a", + "id": "05e5342e-a30f-42f1-b3d6-4da6f603e8c3", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -35315,7 +35315,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cef8dc8e-763a-4359-8e1b-e3266747343b", + "id": "15d1d601-1c7d-4cd8-b195-6b8849ebb515", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -35372,7 +35372,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2d7be00b-65af-4f50-a012-11e8276f9d36", + "id": "cd814ca2-4af6-4cd0-93e0-f3deb2e9d3eb", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -35429,7 +35429,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ae36402f-fcfc-4001-80a7-4ec7f68f8b23", + "id": "cd897478-e608-4031-8dc0-cde9f3bfde42", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -35486,7 +35486,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6d60c423-b0fc-4da4-89ca-8323c500031e", + "id": "4652111f-d5bf-4637-b518-c1e713b68824", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -35543,7 +35543,7 @@ "_postman_previewlanguage": "json" }, { - "id": "95f4a5c4-f9e7-46e7-b619-f402f00360bc", + "id": "6df37cc9-06f5-4f5e-8c02-c40db6fa130f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -35606,7 +35606,7 @@ } }, { - "id": "2c545c2c-71ff-4499-9868-1a5600874f71", + "id": "383126f1-daf3-4721-b82c-6f0b037646e3", "name": "Get a Campaign Template", "request": { "name": "Get a Campaign Template", @@ -35647,7 +35647,7 @@ }, "response": [ { - "id": "2557dcc9-9203-4ee5-9097-db9e2c52f378", + "id": "aa32bb57-a96c-4a15-a1e0-f37f6cac6994", "name": "Manager", "originalRequest": { "url": { @@ -35691,7 +35691,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7dfee33e-7c35-4bb8-8403-a4a32a15fff4", + "id": "d3f36a21-ae37-4825-a869-2f2519d91298", "name": "Search", "originalRequest": { "url": { @@ -35735,7 +35735,7 @@ "_postman_previewlanguage": "json" }, { - "id": "45054a26-87ea-4df8-a3a6-78a42a328712", + "id": "f37a0624-ec4c-4c7f-b4ca-12d715a73159", "name": "Source Owner", "originalRequest": { "url": { @@ -35779,7 +35779,7 @@ "_postman_previewlanguage": "json" }, { - "id": "04659940-fd57-4967-af84-1606e13240f5", + "id": "e593423c-aa51-4451-8c3c-d1a16e1a5474", "name": "RoleComposition", "originalRequest": { "url": { @@ -35823,7 +35823,7 @@ "_postman_previewlanguage": "json" }, { - "id": "19589e84-ec02-41c9-9017-8134789d7d1b", + "id": "c952b291-2cef-4cfe-a06d-3406d0c6570c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -35867,7 +35867,7 @@ "_postman_previewlanguage": "json" }, { - "id": "62d47e58-cd50-4993-a90e-bf7f6a6cebe2", + "id": "e23db99f-f304-4756-9a8a-cb455109e137", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -35911,7 +35911,7 @@ "_postman_previewlanguage": "json" }, { - "id": "19659dc0-9492-454f-82a4-502667c776d5", + "id": "d819c89e-80d0-4594-8303-8efba25afcf5", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -35955,7 +35955,7 @@ "_postman_previewlanguage": "json" }, { - "id": "200d15af-8396-4edc-959d-df12f74cdce6", + "id": "7bcd254f-afa5-43ca-aa83-febbf902eba3", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -35999,7 +35999,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c6863d04-6ca7-4ba9-a212-e1c4e11d5253", + "id": "d53a666f-8aa7-4652-8b8e-e34390081638", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -36043,7 +36043,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ede1f292-fc29-4660-8dbb-fc80ceb0fec1", + "id": "494a3407-bcaf-4971-816c-53865b6b0306", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -36093,7 +36093,7 @@ } }, { - "id": "a2adc399-8ffa-479c-be5a-329c78757652", + "id": "a2ef9ab8-d09b-4fc0-8124-36718ecf6102", "name": "Delete a Campaign Template", "request": { "name": "Delete a Campaign Template", @@ -36134,7 +36134,7 @@ }, "response": [ { - "id": "bc29d7a2-55fe-4caa-b0c5-ec87092643c4", + "id": "cc6e29cd-012e-4c24-a404-7358fe0f0d47", "name": "The campaign template was successfully deleted.", "originalRequest": { "url": { @@ -36168,7 +36168,7 @@ "_postman_previewlanguage": "text" }, { - "id": "9733dc9c-45e3-4b85-a0b2-ae359958370a", + "id": "c35ffcfe-a048-4a08-b01a-be0bef2ed01e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -36212,7 +36212,7 @@ "_postman_previewlanguage": "json" }, { - "id": "82e2b365-84ca-4c18-8df8-69c9a22854a1", + "id": "352ba485-cf24-403d-aa89-d3d651f28daf", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -36256,7 +36256,7 @@ "_postman_previewlanguage": "json" }, { - "id": "556cab23-8fad-4f34-b438-ac6df518cf93", + "id": "89ca14ef-2f87-423c-9c98-6e9616bb85dd", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -36300,7 +36300,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1ccbc4a8-3f0f-48e2-ba81-8cef35d073e6", + "id": "6513909a-9a6d-4f66-80b1-9e7f989cd45e", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -36344,7 +36344,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ee21dff4-1ed5-4c30-bb7f-1086f21c5890", + "id": "75374d46-a55a-46f7-9795-ca9d2e916f28", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -36388,7 +36388,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f7033762-d97d-466b-b28e-c7e41c2cb639", + "id": "877799fe-f434-4cba-b05a-452c0535588e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -36438,7 +36438,7 @@ } }, { - "id": "64abc4e2-c8e8-4aed-be42-fc101e20837a", + "id": "d0419dae-47c5-4e27-8444-8475e7062361", "name": "Get Campaign Template Schedule", "request": { "name": "Get Campaign Template Schedule", @@ -36480,7 +36480,7 @@ }, "response": [ { - "id": "ce369bbd-a1af-4881-8734-1968187e7642", + "id": "bab0cf0d-8349-4974-a59a-08206da90696", "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": { @@ -36525,7 +36525,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6362f919-41e8-4ec7-aa76-54c2e7b8e019", + "id": "0923644a-8b9d-4a9b-ae94-b8ba2c2cca7d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -36570,7 +36570,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f47ed121-a785-4aa0-baca-163e89e51a0b", + "id": "a7649905-0be0-4cf9-ac51-284e686771e9", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -36615,7 +36615,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6aa98c49-790d-4e54-b9c9-c0d77add0aca", + "id": "801e4157-806c-4454-9e7d-bf156d3b0ec1", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -36660,7 +36660,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e9473aca-8108-4ae1-92bf-45e7ff8e3349", + "id": "0cf69b2f-0b46-4bd9-96e0-1832f9be2339", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -36705,7 +36705,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6ec54e8d-038e-46c0-b795-bbc5e30b9c20", + "id": "c7c00ea9-48ef-4b80-af9b-56037967873a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -36750,7 +36750,7 @@ "_postman_previewlanguage": "json" }, { - "id": "12e486a0-86ff-470f-873f-745a61c18f5b", + "id": "4c6bc94b-7d40-4a2b-8b90-2975e69df3c1", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -36801,7 +36801,7 @@ } }, { - "id": "35bd5f74-bc13-4308-91cf-633a5a89e4ce", + "id": "9ac66ea9-0973-47e4-80f0-e09b2fb25ada", "name": "Set Campaign Template Schedule", "request": { "name": "Set Campaign Template Schedule", @@ -36856,7 +36856,7 @@ }, "response": [ { - "id": "a0bd3e59-aa9e-475f-8a9e-f7e4e8cf4fb1", + "id": "f61e19ee-8363-4228-9328-5c7f5db09418", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -36904,7 +36904,7 @@ "_postman_previewlanguage": "text" }, { - "id": "927f9f05-d6eb-482f-9ca1-bbbc9f82a926", + "id": "bee527a7-e406-4409-a81b-0057f9830150", "name": "Monthly", "originalRequest": { "url": { @@ -36962,7 +36962,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bad2f3bd-f3ed-4517-9da1-bef1cfd0cfee", + "id": "fbff2bd5-b8f8-4d07-a4f8-b83a2fe9dc1e", "name": "Once a year", "originalRequest": { "url": { @@ -37020,7 +37020,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bdcf2f6b-7bd7-46f9-9c1d-b086eb605233", + "id": "ece47262-67d3-41cb-aa21-abe2df8eb60b", "name": "Quarterly", "originalRequest": { "url": { @@ -37078,7 +37078,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bde3cb02-b041-40d3-a0d1-b00adf4da01c", + "id": "3b6b08c9-6f59-42f4-8720-b76975ca58a8", "name": "Yearly on Specific Days", "originalRequest": { "url": { @@ -37136,7 +37136,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0d13e9e8-d429-49ae-98fc-1b0e00a9a19c", + "id": "ce30232c-a883-4c28-a6fd-e9785bf51b99", "name": "On a Specific Date", "originalRequest": { "url": { @@ -37194,7 +37194,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e74e6696-d321-4347-9110-40b0a53292b7", + "id": "647d6fff-7ed0-4d6a-9858-0b756bc08b1d", "name": "Monthly", "originalRequest": { "url": { @@ -37252,7 +37252,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fcfe308f-636a-4130-83e0-3d7135b577cc", + "id": "30100282-aa6d-45f0-9bdc-f910a29cb653", "name": "Once a year", "originalRequest": { "url": { @@ -37310,7 +37310,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0b3912de-d41c-4c71-a146-0c5893c5d8f4", + "id": "d8ff23a5-551c-4a30-9482-9f0e4bf2885c", "name": "Quarterly", "originalRequest": { "url": { @@ -37368,7 +37368,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7c932b57-da41-45fb-bcaf-d79652257aa3", + "id": "f7e1803c-2cb6-4396-abf6-4c3b7b3118ad", "name": "Yearly on Specific Days", "originalRequest": { "url": { @@ -37426,7 +37426,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8b98cf35-1a2a-4c3b-b0c4-e021acb1851b", + "id": "93ca2509-cf19-47cd-8071-0105ebb6c72f", "name": "On a Specific Date", "originalRequest": { "url": { @@ -37484,7 +37484,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0e4d714d-2ccd-45d5-bb23-3f987cb99c45", + "id": "d785ed29-c374-4a7b-be5f-466cd458d39f", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -37542,7 +37542,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a0f7d1b5-d855-436d-9fdb-d5d206733ffc", + "id": "15f5e0c2-91d8-4e53-8f2f-5c94b343b2ba", "name": "Once a year", "originalRequest": { "url": { @@ -37600,7 +37600,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4ebaf27f-40c7-4a1b-a379-70e6c6a5c48d", + "id": "debc8336-7fbf-48b8-899a-e1ed53b5cd5c", "name": "Quarterly", "originalRequest": { "url": { @@ -37658,7 +37658,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ec436c28-a913-4e65-820a-69dd4ab47cfe", + "id": "42120ddb-0a39-4e22-9b53-d3f9027f9c8a", "name": "Yearly on Specific Days", "originalRequest": { "url": { @@ -37716,7 +37716,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d2e55992-3c2b-421f-ab75-eaf09bb73dae", + "id": "4c89ba53-0914-4bc7-a50d-ce7e9b8a3adf", "name": "On a Specific Date", "originalRequest": { "url": { @@ -37774,7 +37774,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c41f6cb6-3b9e-40d0-978f-23f1ae6101ad", + "id": "edead61d-cce0-4a5f-b344-410783b05fe3", "name": "An example of a 404 response object", "originalRequest": { "url": { @@ -37832,7 +37832,7 @@ "_postman_previewlanguage": "json" }, { - "id": "28a3ca6b-8648-4b54-8570-17acbfafbb97", + "id": "99902d7c-a1e0-4f25-88c0-ee026e29542e", "name": "Once a year", "originalRequest": { "url": { @@ -37890,7 +37890,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a740b5b1-848c-46ce-9f11-52a67f6b98ab", + "id": "d4825f29-0db0-402d-b650-18d118569404", "name": "Quarterly", "originalRequest": { "url": { @@ -37948,7 +37948,7 @@ "_postman_previewlanguage": "json" }, { - "id": "122e2928-cb98-4114-919f-f1c76afc2645", + "id": "74026c35-e850-4982-8a2a-72994aada5a7", "name": "Yearly on Specific Days", "originalRequest": { "url": { @@ -38006,7 +38006,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e8e45267-e8ce-4726-8fa3-c29fe087259b", + "id": "d5e0cd02-df5b-4948-97b3-c78b0f93f75e", "name": "On a Specific Date", "originalRequest": { "url": { @@ -38064,7 +38064,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9d818151-0403-49fb-8206-e1ae5c87971e", + "id": "3f5f57df-afe4-40bb-b966-117f22ee6644", "name": "Monthly", "originalRequest": { "url": { @@ -38122,7 +38122,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d705b5d8-e7da-4916-bdad-fd302b8c7246", + "id": "eb47efab-fb72-4b37-a856-6e3f5931ab30", "name": "Once a year", "originalRequest": { "url": { @@ -38180,7 +38180,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7d7434a6-ba08-485b-bef8-307c4a7bedb6", + "id": "ad19618c-0397-4853-a9ff-ded85170e9af", "name": "Quarterly", "originalRequest": { "url": { @@ -38238,7 +38238,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c2eec1b2-b389-4074-bcc2-779024d4e29e", + "id": "d929208e-a153-49a4-9f06-6de40e726df3", "name": "Yearly on Specific Days", "originalRequest": { "url": { @@ -38296,7 +38296,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dbe20700-1098-4659-987d-d3e0851540b4", + "id": "5750a10e-80bd-4e70-82a1-935d5e3050cc", "name": "On a Specific Date", "originalRequest": { "url": { @@ -38354,7 +38354,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c8732ad1-b5bc-44dd-88ae-9011d8c5944a", + "id": "32a0ec14-2d96-4a7f-a5f7-4c12f6ce6740", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -38412,7 +38412,7 @@ "_postman_previewlanguage": "json" }, { - "id": "744ceaca-fe01-4e10-b448-8cde7f595d17", + "id": "07d92f3c-9a37-4dbc-bf5c-39533c0de23e", "name": "Once a year", "originalRequest": { "url": { @@ -38470,7 +38470,7 @@ "_postman_previewlanguage": "json" }, { - "id": "50d97c70-afe2-4049-b107-3b9789c4d590", + "id": "496b64dc-74e7-4b17-a163-26e79626f613", "name": "Quarterly", "originalRequest": { "url": { @@ -38528,7 +38528,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4d1a67d3-43eb-40cd-870e-6918bf0355d6", + "id": "11ec7df7-1bcc-49b1-80e2-eeed187ff68d", "name": "Yearly on Specific Days", "originalRequest": { "url": { @@ -38586,7 +38586,7 @@ "_postman_previewlanguage": "json" }, { - "id": "60beedb6-45ac-4ae7-8bcd-ab064a7c7dcf", + "id": "905ab733-7701-4876-ad72-851d04767117", "name": "On a Specific Date", "originalRequest": { "url": { @@ -38650,7 +38650,7 @@ } }, { - "id": "1142baa1-bcc1-4e40-803d-6f84ed0f5175", + "id": "0f72e784-3edd-4a6c-bd8b-ae24003d083f", "name": "Delete Campaign Template Schedule", "request": { "name": "Delete Campaign Template Schedule", @@ -38692,7 +38692,7 @@ }, "response": [ { - "id": "80165c8e-14e7-4171-aae3-52a7b62c628f", + "id": "65515557-6650-4caf-bbfd-21291ff3541b", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -38727,7 +38727,7 @@ "_postman_previewlanguage": "text" }, { - "id": "f454859c-7a80-4c31-9c10-9499bc51f168", + "id": "a8f0221b-d4ef-4691-ab08-b95282150884", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -38772,7 +38772,7 @@ "_postman_previewlanguage": "json" }, { - "id": "62f830c8-c6f5-416a-b2cb-aa7ed4647d9f", + "id": "f222bc8b-f30b-49fa-8361-76dace2d07d3", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -38817,7 +38817,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e0f3715b-7e3a-403c-a486-2f0436f4de61", + "id": "b30de8a5-abbe-4c4d-88f4-13dd469ec6dc", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -38862,7 +38862,7 @@ "_postman_previewlanguage": "json" }, { - "id": "85618734-37ae-4ec7-b369-1c7458372782", + "id": "b1ff685e-9ef2-47b4-b089-4cb128fcefe8", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -38907,7 +38907,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cca9e9b1-fd44-44aa-874d-9ae6acead90b", + "id": "c3457b4c-2bc1-474b-90f3-3f64283c8470", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -38952,7 +38952,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0e35ef96-045d-4333-8395-48bcdcc16a9e", + "id": "dc32bf65-7c9f-49ba-be59-0ead9256f45c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -39003,7 +39003,7 @@ } }, { - "id": "fd762555-10bf-4d76-a12b-979ca98250ef", + "id": "83a4f3f0-c687-46ad-a6e2-832e20cff58c", "name": "Generate a Campaign from Template", "request": { "name": "Generate a Campaign from Template", @@ -39045,7 +39045,7 @@ }, "response": [ { - "id": "402801f9-8b72-4e9f-ac07-2c180a0a5069", + "id": "b8c49806-321a-4eed-9cb7-8505925b8ac9", "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": { @@ -39090,7 +39090,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c6a57f7c-2286-43c0-80a3-2f7014391669", + "id": "7f936afc-f92d-48b7-b98e-90187b27246a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -39135,7 +39135,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d5ab778f-b909-4036-8e9e-d237c234ce08", + "id": "26d6c5e8-06d0-48f9-a6d1-0eb95e000f8f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -39180,7 +39180,7 @@ "_postman_previewlanguage": "json" }, { - "id": "79b0c9fa-b83f-46e7-85f8-fb90bda7c1f3", + "id": "4028a75a-59fa-47c3-8766-8fa0148c5269", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -39225,7 +39225,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5092e0fb-8513-43c6-805c-e0e75309725b", + "id": "1f39f6fc-fcdc-4234-854f-fd777f41bc5f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -39270,7 +39270,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7489daa5-63b5-48e7-a33e-97e96a9d74cc", + "id": "b7703fb0-3286-41a5-ae50-f00bf0ac0dfd", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -39327,7 +39327,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": "24c4e763-f726-49c8-881e-01e80b3cc693", + "id": "49a6290e-3d3a-4daf-b93e-1b18a398140c", "name": "Summary of Certification Decisions", "request": { "name": "Summary of Certification Decisions", @@ -39379,7 +39379,7 @@ }, "response": [ { - "id": "220ddd9c-23fb-4aa7-91f9-118492e30d52", + "id": "de231cc1-1836-4f46-8768-bb3f5500a392", "name": "Summary of the decisions made", "originalRequest": { "url": { @@ -39434,7 +39434,7 @@ "_postman_previewlanguage": "json" }, { - "id": "30c018dd-9577-452d-ad69-5a5828b154b5", + "id": "d486758d-374d-4036-881f-304f062a0f0e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -39489,7 +39489,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0819b082-7793-44d6-91fc-e50a2e7ab3e8", + "id": "1e9c2daa-2f2d-455c-a385-342dc41ff91c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -39544,7 +39544,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e0637bf7-d723-4e32-85de-ba2af4fa6de8", + "id": "b568a807-ca37-46e8-8583-ba195a7ac813", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -39599,7 +39599,7 @@ "_postman_previewlanguage": "json" }, { - "id": "40bbb27a-e026-4a1b-8238-73531132e040", + "id": "dafb425b-4d03-49c8-a9f7-dcc73bb347fa", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -39654,7 +39654,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2a42a9a9-1f2b-4477-b7fd-533953379d44", + "id": "60d0e064-1529-4bde-908c-775b9856e1f9", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -39709,7 +39709,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ac745f3e-df2b-4e7f-815f-dba34760bef6", + "id": "e4674f2a-f8a0-48e1-b0d3-8ba634ef3fb5", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -39770,7 +39770,7 @@ } }, { - "id": "043f712a-e008-4034-82ec-0549d934bc44", + "id": "35afbb14-cd01-48dd-81b0-083f5946064e", "name": "Identity Summaries for Campaign Certification", "request": { "name": "Identity Summaries for Campaign Certification", @@ -39858,7 +39858,7 @@ }, "response": [ { - "id": "1c0631f3-ef97-4b72-bad1-470d55933b86", + "id": "a833ac10-6b7f-4aaf-9cfc-6a22f0829b76", "name": "List of identity summaries", "originalRequest": { "url": { @@ -39949,7 +39949,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eb2b3d88-541d-49f9-8da5-23ecae72774c", + "id": "0b1cc94a-67da-4714-bf3d-5a06bb75f71d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -40040,7 +40040,7 @@ "_postman_previewlanguage": "json" }, { - "id": "23dc5f4d-7ee1-4f78-a3c2-b6e6013f1c05", + "id": "81cfd178-6453-44e5-a0e1-cc042b5621ce", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -40131,7 +40131,7 @@ "_postman_previewlanguage": "json" }, { - "id": "048bb9bc-1484-4be4-bba4-6a8d580f3d73", + "id": "fa566cb8-1a0a-4215-a85d-e5ff36058d3e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -40222,7 +40222,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a53b3064-d119-47d6-ac73-6569958b0891", + "id": "b2bd793e-c942-449c-9468-025df1a436cf", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -40313,7 +40313,7 @@ "_postman_previewlanguage": "json" }, { - "id": "73cad0ad-10d4-4f18-9826-419027a3b724", + "id": "7f86b3d8-9e8a-4857-bbd3-43590e674b43", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -40404,7 +40404,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b939d632-2834-45e7-8858-a5a9b962ba8c", + "id": "6db5000a-8a93-4e94-a35d-1b6f5878d83a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -40501,7 +40501,7 @@ } }, { - "id": "81953b0d-1f30-4dc9-9897-6e0973722cc1", + "id": "74ea4f57-0c42-401a-8d0d-814da32666d4", "name": "Access Summaries", "request": { "name": "Access Summaries", @@ -40600,7 +40600,7 @@ }, "response": [ { - "id": "650118bc-dda0-42b4-906d-0ad25333b07b", + "id": "805a1f4f-320a-4c38-b155-2d5d42bd9965", "name": "List of access summaries", "originalRequest": { "url": { @@ -40692,7 +40692,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bb1354ef-9ad8-4f3d-9324-6dedca805a99", + "id": "ef555c57-ad3e-496e-8bdf-47cf9b8e9b1a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -40784,7 +40784,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e0a13465-837d-4f3c-8c44-d9419ff5e779", + "id": "df33b258-b288-4e9e-a9ba-8e308c4e865d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -40876,7 +40876,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2f220675-5b68-4ae6-829e-a5fc51e0093a", + "id": "c1674367-3429-42db-bfdf-848129177aaa", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -40968,7 +40968,7 @@ "_postman_previewlanguage": "json" }, { - "id": "79d36030-a6de-4794-9206-3ce48f1c7a61", + "id": "887e4738-86e8-4856-a937-dd7f95ec20b5", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -41060,7 +41060,7 @@ "_postman_previewlanguage": "json" }, { - "id": "25b2a688-6e7f-4bee-b483-ad4a5481e113", + "id": "c923d0e9-a7e4-4d5b-b947-1f9d407d7567", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -41152,7 +41152,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d96a5b08-4367-44a7-ae3d-646566aa5620", + "id": "35bec371-d587-4990-9ed6-4a3f84bcfad1", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -41250,7 +41250,7 @@ } }, { - "id": "97bd7d9f-583b-4645-b733-01d36423bfc2", + "id": "3479ba8d-0f0b-4cb3-a78d-1748da09265c", "name": "Summary for Identity", "request": { "name": "Summary for Identity", @@ -41303,7 +41303,7 @@ }, "response": [ { - "id": "c4a28b56-3ff7-4ee9-8c93-0884bfe6d15a", + "id": "bfe8bdeb-6655-413b-b8eb-6dc5b9823df0", "name": "An identity summary", "originalRequest": { "url": { @@ -41349,7 +41349,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8f85a764-2e3f-4f6c-89bd-034c420217ee", + "id": "a60f20c0-8065-4de7-8fc3-9745f2706026", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -41395,7 +41395,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0d1de585-0892-4044-a126-df7e837a0545", + "id": "aed92a0b-be92-40dd-b534-0ff1377946f3", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -41441,7 +41441,7 @@ "_postman_previewlanguage": "json" }, { - "id": "39860a75-846d-47f3-91eb-84cea420f551", + "id": "e5a3753d-f07a-4daa-b234-3ae2b290fa17", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -41487,7 +41487,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c49130bc-9489-4790-b7d1-85f163bf1ef3", + "id": "8cf5b4e8-0f45-43c9-bc8b-ca102fd12888", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -41533,7 +41533,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ab6e636e-4c13-47a4-b249-499834a31033", + "id": "1fec861d-122b-47fd-8753-7b92e712034a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -41579,7 +41579,7 @@ "_postman_previewlanguage": "json" }, { - "id": "871636e2-62d2-44bf-8fa0-ff2ac5b2cef1", + "id": "5d908f94-8796-4653-84a7-a5ed1583d53b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -41637,7 +41637,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": "dd58010d-a541-466f-abbe-854217f051c1", + "id": "1cb23bd2-ea78-4ec5-917f-0d2570c46c6b", "name": "List Identity Campaign Certifications", "request": { "name": "List Identity Campaign Certifications", @@ -41721,7 +41721,7 @@ }, "response": [ { - "id": "7c343413-3a88-481a-afc5-6da7302e5ac8", + "id": "d4812fa8-cb17-463b-9b49-22aac4dca9e2", "name": "List of identity campaign certifications.", "originalRequest": { "url": { @@ -41819,7 +41819,7 @@ "_postman_previewlanguage": "json" }, { - "id": "61bfe6e3-4aa2-437d-b54e-b4ed6ea47661", + "id": "f0ea4e6a-bac6-4770-ac86-31cec6d219ad", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -41917,7 +41917,7 @@ "_postman_previewlanguage": "json" }, { - "id": "baf90645-4be2-4b8e-813c-4b5d100805fe", + "id": "36acba20-1c5a-4d1b-9c88-086026e0ee4d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -42015,7 +42015,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f8f3c725-1096-4a38-8c48-1baec5b6cde2", + "id": "fbf10135-25e2-4ac1-bce7-1c585a1056aa", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -42113,7 +42113,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a3eb798d-855e-4ecd-a8b3-85d1a33f21cc", + "id": "552255eb-a3e7-4209-a397-e48630e190df", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -42211,7 +42211,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9dc00c40-2201-4ac1-8c2a-401d0ff8cee1", + "id": "1aa4e341-86c4-4b24-9a75-c10adf1a5a7c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -42315,7 +42315,7 @@ } }, { - "id": "f9e1acd1-1cdc-47b5-a3e6-45e3350ed4c4", + "id": "655300cd-d726-499f-ad9e-995e4207a56d", "name": "Identity Certification by ID", "request": { "name": "Identity Certification by ID", @@ -42356,7 +42356,7 @@ }, "response": [ { - "id": "0d4b50dc-0d17-4b3d-884b-01034db35871", + "id": "7f9a941c-1a8e-46f8-b385-a7e26377d0f8", "name": "An identity campaign certification object", "originalRequest": { "url": { @@ -42400,7 +42400,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a4fc28f4-5ebe-4fba-81e5-cf047fed69d7", + "id": "7bfec0a8-9997-4358-a83a-dc90dbadf183", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -42444,7 +42444,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b8192cd2-ce54-4e30-b2d2-390236befdef", + "id": "897755d0-4d79-4985-a33a-4585c3ed5f2f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -42488,7 +42488,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d577bc99-f7e4-470a-9d4b-4524cae5999d", + "id": "c5d9eefc-027e-493a-9670-a6a42f99cbaf", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -42532,7 +42532,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d717419e-1f51-4995-8a3c-7964b5c27506", + "id": "c9c22d14-8653-49b8-bf99-cba7aeb419a4", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -42576,7 +42576,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c052698a-1a3c-468b-8a73-0121cbdac7cb", + "id": "a6dcea9c-2a0a-4fb5-8809-6ba1760727d8", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -42620,7 +42620,7 @@ "_postman_previewlanguage": "json" }, { - "id": "41953bf4-052a-423e-af2a-774933a68a4f", + "id": "adab89f4-5b31-4dbb-8819-c9d21af9c15c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -42670,7 +42670,7 @@ } }, { - "id": "f5767b94-44fe-4e44-8935-43240516f981", + "id": "5e2db464-fe34-4d55-9700-299d36e9be4b", "name": "List of Access Review Items", "request": { "name": "List of Access Review Items", @@ -42785,7 +42785,7 @@ }, "response": [ { - "id": "5a55dbfc-b0a2-40a5-b13c-6daad7690c66", + "id": "9a8d1946-584f-4820-a1e1-cfd9ee1f083d", "name": "A list of access review items", "originalRequest": { "url": { @@ -42903,7 +42903,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1ad9421f-f709-40a2-b1a6-fdcbbf5f94c1", + "id": "164d4da3-6a50-4841-8f48-7c6e72533b16", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -43021,7 +43021,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b08cd051-8bbc-4860-b38f-b43f42f0f43e", + "id": "2d60d6aa-2e7e-418d-b2a1-64fc3725a3f8", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -43139,7 +43139,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0eb59452-9024-4e19-8108-7569ae2d4e58", + "id": "496a4cdf-e8d3-41b5-a69e-1536cf2d07b4", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -43257,7 +43257,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eb5e576e-c128-4355-aa89-3c065fbafbe4", + "id": "6083f726-103d-4b18-b545-87012a14a682", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -43375,7 +43375,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ea96ffb9-9848-4975-a724-556cec9e2a78", + "id": "1f49327c-be32-4d8d-9d60-c6cd4f8f6b2a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -43493,7 +43493,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9b73bcee-5bd1-485c-af03-66b45644aeae", + "id": "68a540b8-01d1-4b3e-b046-98551ec4e2e9", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -43617,7 +43617,7 @@ } }, { - "id": "341723d4-9b2f-4c14-a376-2c8a274f2439", + "id": "8a4050cf-8f9a-4077-bf0f-e5b23e46f7e2", "name": "Decide on a Certification Item", "request": { "name": "Decide on a Certification Item", @@ -43672,7 +43672,7 @@ }, "response": [ { - "id": "12ca8bd4-41a4-4180-8b0e-bd1f586f5bb5", + "id": "7d3aa1b6-bbf0-49e4-a5ac-f0d9d98360f9", "name": "An identity campaign certification object", "originalRequest": { "url": { @@ -43730,7 +43730,7 @@ "_postman_previewlanguage": "json" }, { - "id": "29c8465e-138a-4a5d-ba11-82fd64e5fe71", + "id": "51d8bf38-b2af-4426-967c-fce223e9c36d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -43788,7 +43788,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0ec7c67c-2d38-4c4d-a6aa-513215b299ac", + "id": "1986b622-557a-412e-a2d0-3c56d1908099", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -43846,7 +43846,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d00721b6-ba41-42f9-86b4-dbb21e648526", + "id": "f0daa874-1072-4666-8185-e779f5e6b92c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -43904,7 +43904,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a8c1ede2-3621-44ea-acc9-9a1ffaf1ee0b", + "id": "e3e2ef0a-b0b1-4f04-91a3-badbb78efd22", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -43962,7 +43962,7 @@ "_postman_previewlanguage": "json" }, { - "id": "edfdd01c-bec1-4459-887a-647b6920d560", + "id": "b6012ac3-a06b-4bf5-b87e-54c98aaa45e8", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -44020,7 +44020,7 @@ "_postman_previewlanguage": "json" }, { - "id": "424a9855-514e-4082-a94f-33b61425f340", + "id": "aeb68796-6cf3-4fdc-9db0-db2555c141e6", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -44084,7 +44084,7 @@ } }, { - "id": "8c76f0d7-5bb0-4d65-a505-7ced4116969f", + "id": "728e42cd-7aae-46e5-8b1e-e029a0f6d055", "name": "Reassign Identities or Items", "request": { "name": "Reassign Identities or Items", @@ -44139,7 +44139,7 @@ }, "response": [ { - "id": "d785e69f-6e59-43ad-9592-5fe8e30b2f68", + "id": "4f3e5b25-70e6-4d17-a940-cd920064cf10", "name": "An identity campaign certification details after completing the reassignment.", "originalRequest": { "url": { @@ -44197,7 +44197,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dc472f0a-4b58-44d2-9c6f-9f7e51925232", + "id": "13e5d899-38d6-4058-9eef-84c253ebf9f8", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -44255,7 +44255,7 @@ "_postman_previewlanguage": "json" }, { - "id": "921aecf0-08d2-402c-b0f5-eee6f5473899", + "id": "fa201bec-2a97-4027-aff3-724efc261020", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -44313,7 +44313,7 @@ "_postman_previewlanguage": "json" }, { - "id": "94d605ea-7439-4471-97e9-e61ed9b95257", + "id": "6bf20548-2429-423a-9681-c18a2f3603b0", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -44371,7 +44371,7 @@ "_postman_previewlanguage": "json" }, { - "id": "91a09557-038a-4aa9-9659-ec240f6993f5", + "id": "f979d4ab-0d8f-4303-b098-44ff8335ef32", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -44429,7 +44429,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b529196a-5d17-4840-a9d8-af150689dfd4", + "id": "738e63ef-a75b-4585-8da6-f387014250d8", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -44487,7 +44487,7 @@ "_postman_previewlanguage": "json" }, { - "id": "75260692-4561-4b0d-8afb-058042abdeeb", + "id": "8d47fa4b-86a8-4ac3-b515-c1412fcc6f53", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -44551,7 +44551,7 @@ } }, { - "id": "fdb2dc0e-ee17-4020-b7a1-c97bb5ac2eeb", + "id": "c3fd3afb-6114-42df-9874-c59e9652db91", "name": "Finalize Identity Certification Decisions", "request": { "name": "Finalize Identity Certification Decisions", @@ -44593,7 +44593,7 @@ }, "response": [ { - "id": "315a1570-9a95-4a51-9960-7bcf68c434b1", + "id": "820d36d5-fda0-4327-872e-379ebbd4f18d", "name": "An identity campaign certification object", "originalRequest": { "url": { @@ -44638,7 +44638,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b7f0693c-2c34-4607-8368-155976bde7f9", + "id": "3f525fca-86ed-4c3f-afe5-76beeef9a91a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -44683,7 +44683,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a66112c1-d758-4a70-acdf-ea154422e5e5", + "id": "fae3a73b-4d11-48a3-a2ba-e839ab5cbd88", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -44728,7 +44728,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cad9e36c-f767-479e-abc0-3ca7a3811d96", + "id": "d230ffda-286e-45da-9c84-dd6c05dbf1e1", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -44773,7 +44773,7 @@ "_postman_previewlanguage": "json" }, { - "id": "591d17e5-47a7-4528-9959-a97d115bb9ef", + "id": "55b9bd57-a894-4bb1-b41f-de9cbba75d69", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -44818,7 +44818,7 @@ "_postman_previewlanguage": "json" }, { - "id": "36fdfae2-6292-4f66-b75f-a95ad81e529c", + "id": "31d99a77-98f0-4759-b04d-f6553bf9c437", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -44863,7 +44863,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2a9d3d1d-45c0-4180-a978-ca2e4a2bafbb", + "id": "1b25bde8-f1fb-4bcb-97db-22f54858b829", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -44914,7 +44914,7 @@ } }, { - "id": "6cc24f2a-ffad-46c6-be38-389025e1b221", + "id": "f843172d-45e8-43e7-93f2-2cae055f185c", "name": "Permissions for Entitlement Certification Item", "request": { "name": "Permissions for Entitlement Certification Item", @@ -45005,7 +45005,7 @@ }, "response": [ { - "id": "6918b443-5bfa-4f48-a771-1dbc7e191376", + "id": "750cec90-15b0-40fc-9f6b-6f2d6a211f66", "name": "A list of permissions associated with the given itemId", "originalRequest": { "url": { @@ -45089,7 +45089,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f89468fd-84fe-4f5d-b96b-77cf9c4ce9df", + "id": "3a497e8f-d383-467d-9edb-499c728d0739", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -45173,7 +45173,7 @@ "_postman_previewlanguage": "json" }, { - "id": "58dd141b-4e0b-4678-91ef-51f9e17ecf79", + "id": "b58e8283-f250-4522-b2d6-2040200ab482", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -45257,7 +45257,7 @@ "_postman_previewlanguage": "json" }, { - "id": "725f6637-6797-4a27-a133-14607add0cac", + "id": "461e808d-18e3-4977-92af-4c3af4024eb5", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -45341,7 +45341,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c7c886fc-bc24-4b63-8782-25c421455265", + "id": "c3b75a3d-83c1-415e-949a-141f53f8cd92", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -45425,7 +45425,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e5f3c5ea-cb68-4420-ac0f-7115801699cc", + "id": "4c7f1d7b-92dd-4e47-92b1-ec4a11872b6a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -45509,7 +45509,7 @@ "_postman_previewlanguage": "json" }, { - "id": "aefcef18-4d1b-4fab-a1ca-bcc0e4f9e2e7", + "id": "2ffd52d8-ec5a-4fbc-85a3-087eec1a3357", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -45599,7 +45599,7 @@ } }, { - "id": "d88bbaad-47e9-4a37-b1a4-8c052f7644ef", + "id": "41bf3dbb-1018-487b-997d-8c62dfbea8e9", "name": "List of Reviewers for certification", "request": { "name": "List of Reviewers for certification", @@ -45687,7 +45687,7 @@ }, "response": [ { - "id": "f7b13337-3243-406a-858d-38fbc3c246fe", + "id": "f0f05cc7-e4b4-408d-b527-28d0666e51ff", "name": "A list of reviewers", "originalRequest": { "url": { @@ -45778,7 +45778,7 @@ "_postman_previewlanguage": "json" }, { - "id": "02158385-b267-4858-afbe-832db3d32ba5", + "id": "da9a87fa-cbd6-4c44-b2bb-7d03ab9b275c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -45869,7 +45869,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c21385f4-e491-4776-8f7e-505eccf7ae18", + "id": "af17a71b-5df0-4e3a-bd6f-9c90b225041e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -45960,7 +45960,7 @@ "_postman_previewlanguage": "json" }, { - "id": "26c015ed-726f-4b31-96da-5ab67ef74acd", + "id": "179aa785-d7c9-493e-9191-d9b68b1a4c70", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -46051,7 +46051,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8ae2973a-0af4-4260-9caa-767e06592ed6", + "id": "3dc7ef37-cf98-4d2b-a522-8737604b3820", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -46142,7 +46142,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1dc20f60-84d9-40eb-9116-692425e175a1", + "id": "7c4ef0f0-7ce1-4487-bf20-6b2147ae449b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -46233,7 +46233,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4ce25612-34b1-4d71-a1c2-1776abc9c78a", + "id": "0da495dd-a8e7-42e4-87f4-af8aaf2441b2", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -46330,7 +46330,7 @@ } }, { - "id": "361c6b07-9386-434b-ab34-2c4f6f312809", + "id": "e09e528b-7433-4b79-b311-d168e90ae5be", "name": "Reassign Certifications Asynchronously", "request": { "name": "Reassign Certifications Asynchronously", @@ -46385,7 +46385,7 @@ }, "response": [ { - "id": "0f7aeac5-42f3-4830-8f01-30f954b3af9f", + "id": "c5cee986-6436-43dd-a175-ebcf824b2960", "name": "A certification task object for the reassignment which can be queried for status.", "originalRequest": { "url": { @@ -46443,7 +46443,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d03dbfda-d7a0-4803-8de9-91c74f1400f9", + "id": "3e52c3b1-5381-47fe-bfe3-344714e757aa", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -46501,7 +46501,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cf6f19a4-a7ce-4b2c-8c03-c31bf6a991a7", + "id": "670f06a5-946d-40e8-9c58-b78e0d4748c9", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -46559,7 +46559,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fbe7e5ba-e862-420c-b59a-bcaa36dc165b", + "id": "5cac5907-6eb6-4f46-ab3c-3024b32832b4", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -46617,7 +46617,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6efdd5d0-34ff-4ab0-89e5-8f9142f2aad5", + "id": "8d8d693f-4b97-4b67-9cb0-ce5c4124ea7b", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -46675,7 +46675,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5363a5c2-55a9-4a26-8fca-ca3e623f514a", + "id": "e0a9b6cb-c0d1-43ec-b58e-8e6a9bddffc0", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -46733,7 +46733,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5ee5e6da-1c8c-4ebe-a04f-c709f34013eb", + "id": "0cdac5e6-7531-4add-a9b1-11e7b558d9c0", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -46797,7 +46797,7 @@ } }, { - "id": "9495d9f1-2144-4bf8-82c7-49434a23425d", + "id": "563e006f-f3bf-42e2-9aec-6d63722996f6", "name": "Certification Task by ID", "request": { "name": "Certification Task by ID", @@ -46838,7 +46838,7 @@ }, "response": [ { - "id": "9c213c92-5acd-4aff-863a-6a3255da7a85", + "id": "e2de9ce5-a692-4a3c-a1f6-828eb29f2a26", "name": "A certification task", "originalRequest": { "url": { @@ -46882,7 +46882,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6c78d281-5064-40d1-aaaf-0a529edf463c", + "id": "14da6884-bef6-4e6b-9a43-bc0577b2ee0b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -46926,7 +46926,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7d56e102-53a8-4b70-be05-d8fe73dcdabb", + "id": "3b503f24-d933-44cb-b7b9-52841dbbe26b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -46970,7 +46970,7 @@ "_postman_previewlanguage": "json" }, { - "id": "766d711f-463c-43f0-a498-74cae176a592", + "id": "4bfaa6e7-3f4f-4609-9bc6-2a6880a24c8f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -47014,7 +47014,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2a4d658a-c554-45ff-813a-79430c738ee2", + "id": "88713bde-06ce-4474-a6b4-d55aaa162242", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -47058,7 +47058,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fc736abc-2173-4431-a732-c93d7c30f074", + "id": "317844b4-f9b3-43fb-879f-8dbd43902bb7", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -47102,7 +47102,7 @@ "_postman_previewlanguage": "json" }, { - "id": "25020a82-2731-432f-b922-71b3faf13109", + "id": "d6a342d1-efb8-4d6d-bd63-68ba47cf3b4e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -47152,7 +47152,7 @@ } }, { - "id": "f8ce77cc-a07b-40a8-b2b8-0951bffcad1b", + "id": "051b9c26-8406-43e8-a0d3-944dfc362195", "name": "List of Pending Certification Tasks", "request": { "name": "List of Pending Certification Tasks", @@ -47227,7 +47227,7 @@ }, "response": [ { - "id": "5dee71b4-7817-4ec5-936a-19c03d7f4935", + "id": "120b3a9a-c4d4-47e1-bfab-f3a86fad6ceb", "name": "A list of pending certification tasks", "originalRequest": { "url": { @@ -47316,7 +47316,7 @@ "_postman_previewlanguage": "json" }, { - "id": "44ed3fca-e18b-4a19-9849-b4e10dbe90fb", + "id": "3d13fd3c-0afd-4951-a696-1d801fa7e499", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -47405,7 +47405,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a3a41584-7532-4c2c-b8f6-370641717700", + "id": "a24418df-7eb1-4e0a-b6a4-9783adb30a5a", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -47494,7 +47494,7 @@ "_postman_previewlanguage": "json" }, { - "id": "859284d7-c835-4624-b7bb-4f4c94f5d3c8", + "id": "043e474d-59bc-436f-a69f-7df964cd74b3", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -47583,7 +47583,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5c3dfe3d-188b-485b-a03c-d5393e24bd85", + "id": "8a1237ae-14ab-4651-8537-2386b0a3e8f4", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -47672,7 +47672,7 @@ "_postman_previewlanguage": "json" }, { - "id": "faf4eee0-beff-45fd-a8bb-233644ab2ea2", + "id": "675a96ce-fc50-44be-a8eb-ee88276d20b8", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -47761,7 +47761,7 @@ "_postman_previewlanguage": "json" }, { - "id": "90d18382-9114-4a67-a106-71964c33bbdb", + "id": "5a184f74-35d6-4126-bed1-d3409b823d3d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -47862,7 +47862,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": "d5b5d1dc-8ed7-4b87-a7a4-ed1005f876a3", + "id": "6d73b501-0eb5-4f72-8ae8-684322f4cbdf", "name": "Gets list of object mappings", "request": { "name": "Gets list of object mappings", @@ -47904,7 +47904,7 @@ }, "response": [ { - "id": "029971a2-a9d8-4613-8bb9-dd3c6f448a4e", + "id": "8eff6bc4-4aaf-42ae-8e2b-98b7218faab7", "name": "List of existing object mappings between current org and source org.", "originalRequest": { "url": { @@ -47949,7 +47949,7 @@ "_postman_previewlanguage": "json" }, { - "id": "53a7473a-032e-45bf-a733-3f71930932a8", + "id": "28b50f3e-8b89-49b8-a62e-ee887bc0d27e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -47994,7 +47994,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5e3ca2d6-c48c-49bd-a81d-9e167635f8e8", + "id": "6a237b04-5b5e-4e17-9112-4e542370d499", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -48039,7 +48039,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f5e7849d-0264-49c9-8bb2-42dea6ded1e6", + "id": "e6a3e588-2c89-4b8e-b2f8-a258c1eaaa7a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -48084,7 +48084,7 @@ "_postman_previewlanguage": "json" }, { - "id": "36242bf1-838d-4909-a5e4-7f76f0f9d3f4", + "id": "6bbb54b3-1e7e-43d7-9863-232f9fe034b3", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -48129,7 +48129,7 @@ "_postman_previewlanguage": "json" }, { - "id": "aca85a55-ef6a-46bc-b5a0-401db7804c10", + "id": "dd64fcfe-361b-4515-9d44-b583e28ba45d", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -48174,7 +48174,7 @@ "_postman_previewlanguage": "json" }, { - "id": "09da1c26-b5fe-4737-b1eb-05f8b1d4c422", + "id": "4e4dcc5b-3c94-44aa-9aab-ac62f306ab9e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -48225,7 +48225,7 @@ } }, { - "id": "cd4bd45e-c0cf-4d72-b932-a607ed112c55", + "id": "df60d22f-10f7-4c48-8144-c20c7f226a5d", "name": "Creates an object mapping", "request": { "name": "Creates an object mapping", @@ -48280,7 +48280,7 @@ }, "response": [ { - "id": "b2e11ce1-7027-4547-aba4-cbdf65b92329", + "id": "a13706dc-dadb-41ad-8580-dbdc6fd28d93", "name": "The created object mapping between current org and source org.", "originalRequest": { "url": { @@ -48338,7 +48338,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1fce2267-fb3b-480e-8b06-ec8e988c312a", + "id": "8236e648-4118-4bae-a3b3-c8f237a8504f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -48396,7 +48396,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ab8fe747-cff7-4087-881d-5d6708213dac", + "id": "c1efc9e6-5bda-4925-84af-6b424fedce1a", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -48454,7 +48454,7 @@ "_postman_previewlanguage": "json" }, { - "id": "66e58741-1c79-45e8-89e6-fc7a45890ce6", + "id": "a3a063e1-e085-497b-8823-1a5358169db5", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -48512,7 +48512,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7d3eaa58-b355-4f7c-a67b-1b039c434373", + "id": "a5086042-9a17-4910-9bdf-92cbf278a37b", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -48570,7 +48570,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5cecadd0-bbc0-4ec5-be49-18b3f1b9e59f", + "id": "70cac969-d2af-4e20-899b-18cae81cc9c1", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -48628,7 +48628,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2e72b2fb-3547-4594-b927-2e0a13a1e945", + "id": "417a211a-676c-4d37-8db1-c167b7a640f3", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -48692,7 +48692,7 @@ } }, { - "id": "927225ff-bbd8-46a4-a9f4-7b72b7e37cbb", + "id": "da400e12-b579-45ef-8a0c-1c8146e07a55", "name": "Deletes an object mapping", "request": { "name": "Deletes an object mapping", @@ -48745,7 +48745,7 @@ }, "response": [ { - "id": "ce7ded52-a240-4f30-8568-10d80a4862c7", + "id": "7f9d0941-fe5f-4366-ba27-c165acc03581", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -48781,7 +48781,7 @@ "_postman_previewlanguage": "text" }, { - "id": "b6f95b0e-0c33-4fd7-9c50-134ece93e1ba", + "id": "a22b67ab-708c-4824-9959-1a2cae6382d1", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -48827,7 +48827,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9609ebc4-00a6-4b2d-92d6-f64ddb5ca692", + "id": "d1e5c9a8-d90c-4a1a-aedb-6d8e81670d5f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -48873,7 +48873,7 @@ "_postman_previewlanguage": "json" }, { - "id": "81583c57-45e0-4033-bb26-ad5771369f79", + "id": "a1f5a3ab-6139-4a7f-afa6-87752e045a5f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -48919,7 +48919,7 @@ "_postman_previewlanguage": "json" }, { - "id": "942641f8-ffca-4831-81cc-efc2e7bf1ded", + "id": "8cfff0c4-f021-4c16-a0d2-6e056a37762c", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -48965,7 +48965,7 @@ "_postman_previewlanguage": "json" }, { - "id": "12a489e8-18f4-49b7-9bf8-89035662bcfe", + "id": "699a21a6-185d-4321-b33b-199158b36cd7", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -49011,7 +49011,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bfe973e2-2fad-4a50-aaf4-8628e4862638", + "id": "bbcd6991-e525-4df9-b8aa-77f73b9489ff", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -49063,7 +49063,7 @@ } }, { - "id": "35e860b7-2b55-4fd3-a860-ba0c37abefd1", + "id": "453b15b9-bdc9-40b1-9376-eab493a2a422", "name": "Bulk creates object mappings", "request": { "name": "Bulk creates object mappings", @@ -49119,7 +49119,7 @@ }, "response": [ { - "id": "328cb353-d760-4b6a-bbfa-04a5f0ba9cae", + "id": "450c26e7-9ed9-4f51-bb26-9a94222df586", "name": "The created object mapping between current org and source org.", "originalRequest": { "url": { @@ -49178,7 +49178,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8fd529e0-de1f-4279-a8bf-522415b2dfa5", + "id": "83437653-d74b-43e7-8fd8-d629533af99f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -49237,7 +49237,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4bdbe401-0fdb-46c2-a892-b8e0dcf8e3c3", + "id": "a1362c1c-0150-455d-b7f3-50f9667c6169", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -49296,7 +49296,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7dfb8631-2a05-4981-9adb-503854f2bbd6", + "id": "8a862663-6195-4957-a66e-26845d79e5ea", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -49355,7 +49355,7 @@ "_postman_previewlanguage": "json" }, { - "id": "57c73b28-9a42-43dd-8830-656416927d45", + "id": "9585c66b-3758-46b1-a8c6-3c948aa24240", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -49414,7 +49414,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fa9b4569-3928-4806-a7e2-1f0232679fcd", + "id": "8b8b4e80-6e78-42b8-9986-d28674d32e95", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -49473,7 +49473,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1d942c99-a3b2-4e48-8263-500dc54dc8d3", + "id": "ca225f0e-ce34-48c9-a230-23a19cd4095a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -49538,7 +49538,7 @@ } }, { - "id": "b2da310a-ac54-44a2-a663-3da9fa07f6ba", + "id": "fc5a5fdb-831b-4d3e-8593-424ab798c1b9", "name": "Bulk updates object mappings", "request": { "name": "Bulk updates object mappings", @@ -49594,7 +49594,7 @@ }, "response": [ { - "id": "957c000e-2a06-4d73-b031-def3bfb186e1", + "id": "bfbb1792-c7b8-4611-ad5a-a21608a00d99", "name": "The updated object mappings.", "originalRequest": { "url": { @@ -49653,7 +49653,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6914ad1e-2752-4411-b89e-277343c189ad", + "id": "4f5ab8a3-0a5d-46c3-8180-7edd29ec7e31", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -49712,7 +49712,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7efeb71e-87e0-4456-a8ae-7df1d758fbe5", + "id": "a7653767-a204-4a84-b6f5-01a72a14c1a9", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -49771,7 +49771,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d429a553-e8c0-4e6d-8722-d884807cc604", + "id": "b0ef809c-4b61-4271-b9c8-c4aef993a264", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -49830,7 +49830,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5b93a543-b99d-4858-bb3d-d5b299ad2c3e", + "id": "b5f317b0-4432-4fbb-88b3-476e5acf0c61", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -49889,7 +49889,7 @@ "_postman_previewlanguage": "json" }, { - "id": "838b8e15-018e-4e48-84bd-d0992c315be0", + "id": "574eb8ab-046d-4511-a6dc-c18e59618e82", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -49948,7 +49948,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3e8bda3c-8633-4e2d-b9b8-494eccb12bce", + "id": "788001a9-3713-4458-b955-aaa1e503b5c3", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -50013,7 +50013,7 @@ } }, { - "id": "e5d833dc-ce84-40d0-aab5-a6715102e0bc", + "id": "b6ab7090-6717-49ec-b4c4-0c5de54c48fe", "name": "Uploads a backup file", "request": { "name": "Uploads a backup file", @@ -50053,7 +50053,7 @@ "type": "text/plain" }, "key": "data", - "value": "nisi", + "value": "ipsum consectetur Excepteur", "type": "text" }, { @@ -50062,7 +50062,7 @@ "type": "text/plain" }, "key": "name", - "value": "ullamco quis pariatur", + "value": "exercitation velit Lorem e", "type": "text" } ] @@ -50070,7 +50070,7 @@ }, "response": [ { - "id": "0393d1ab-2892-46e7-91ca-e493c14482c4", + "id": "fe50d71c-1d0c-41ed-b89d-b3b3f7eb4864", "name": "Upload job accepted and queued for processing.", "originalRequest": { "url": { @@ -50113,7 +50113,7 @@ "type": "text/plain" }, "key": "data", - "value": "nisi", + "value": "ipsum consectetur Excepteur", "type": "text" }, { @@ -50122,7 +50122,7 @@ "type": "text/plain" }, "key": "name", - "value": "ullamco quis pariatur", + "value": "exercitation velit Lorem e", "type": "text" } ] @@ -50141,7 +50141,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a435c9bd-a8c1-4de7-bb32-9ff4c6b15f30", + "id": "d76d274c-34a5-4f01-81db-dd5b72246c59", "name": "Client Error - Returned if the request body is invalid.\n", "originalRequest": { "url": { @@ -50184,7 +50184,7 @@ "type": "text/plain" }, "key": "data", - "value": "nisi", + "value": "ipsum consectetur Excepteur", "type": "text" }, { @@ -50193,7 +50193,7 @@ "type": "text/plain" }, "key": "name", - "value": "ullamco quis pariatur", + "value": "exercitation velit Lorem e", "type": "text" } ] @@ -50212,7 +50212,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0a11c418-ccdc-47c7-9bc2-02a3a5d12786", + "id": "cf91efee-a296-452f-9e09-dcd557a089f7", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -50255,7 +50255,7 @@ "type": "text/plain" }, "key": "data", - "value": "nisi", + "value": "ipsum consectetur Excepteur", "type": "text" }, { @@ -50264,7 +50264,7 @@ "type": "text/plain" }, "key": "name", - "value": "ullamco quis pariatur", + "value": "exercitation velit Lorem e", "type": "text" } ] @@ -50283,7 +50283,7 @@ "_postman_previewlanguage": "json" }, { - "id": "89efad62-e490-4010-b586-a57bf2ed65fc", + "id": "787d5276-e603-465d-80ff-c434f72ad962", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -50326,7 +50326,7 @@ "type": "text/plain" }, "key": "data", - "value": "nisi", + "value": "ipsum consectetur Excepteur", "type": "text" }, { @@ -50335,7 +50335,7 @@ "type": "text/plain" }, "key": "name", - "value": "ullamco quis pariatur", + "value": "exercitation velit Lorem e", "type": "text" } ] @@ -50354,7 +50354,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a9364017-edd0-4fb8-a7b8-5d3a0c952ba8", + "id": "2581deb7-161b-4d4f-a38c-409b75467774", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -50397,7 +50397,7 @@ "type": "text/plain" }, "key": "data", - "value": "nisi", + "value": "ipsum consectetur Excepteur", "type": "text" }, { @@ -50406,7 +50406,7 @@ "type": "text/plain" }, "key": "name", - "value": "ullamco quis pariatur", + "value": "exercitation velit Lorem e", "type": "text" } ] @@ -50425,7 +50425,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dbdf260e-efd0-4ad7-87fb-713ff25bd2be", + "id": "9f42bb12-c344-497b-a3e3-fcb7867c21dd", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -50468,7 +50468,7 @@ "type": "text/plain" }, "key": "data", - "value": "nisi", + "value": "ipsum consectetur Excepteur", "type": "text" }, { @@ -50477,7 +50477,7 @@ "type": "text/plain" }, "key": "name", - "value": "ullamco quis pariatur", + "value": "exercitation velit Lorem e", "type": "text" } ] @@ -50502,7 +50502,7 @@ } }, { - "id": "3d2927b1-fe24-4791-9761-e9b8877e4996", + "id": "d82c9683-b5c2-42b3-9d5c-a53d4181021d", "name": "Gets list of Uploaded backups", "request": { "name": "Gets list of Uploaded backups", @@ -50543,7 +50543,7 @@ }, "response": [ { - "id": "871837ed-7b1e-4d06-9a0b-2417cdd009dc", + "id": "dd3e6a6c-574b-4848-a370-91d9620293ba", "name": "List of existing uploaded backups.", "originalRequest": { "url": { @@ -50598,7 +50598,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0413684b-489d-4f18-a4a7-7084f1ce7ea6", + "id": "e32e3a6f-77d7-4c50-b517-77377db222af", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -50653,7 +50653,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f573befc-8557-4065-9c00-a732bddf4e15", + "id": "c027ab19-6259-46b1-9ff0-1b8353f92278", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -50708,7 +50708,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9da92644-c3ba-4e6c-b693-6dabecfdedbf", + "id": "926aabb8-adc2-442d-9a3f-1b1f9907657a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -50763,7 +50763,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3a768041-dce8-41b4-940a-3d48df43f660", + "id": "fa6e36fa-61f3-469c-ac07-a75b7341f8b6", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -50818,7 +50818,7 @@ "_postman_previewlanguage": "json" }, { - "id": "13e872af-b329-4f7b-8ef2-17ee68ea1d87", + "id": "6394450f-fa09-409e-86e0-585c39dab5cf", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -50873,7 +50873,7 @@ "_postman_previewlanguage": "json" }, { - "id": "305dbfc7-b4dc-4a83-95b4-945b011d25db", + "id": "55cc29ed-e102-42d1-886f-e68f2cb5a82d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -50934,7 +50934,7 @@ } }, { - "id": "2c138a87-3ccc-4594-8583-5353f9d40d48", + "id": "9f895588-a223-4815-9db2-8a0a68e81b51", "name": "Deletes an uploaded backup file", "request": { "name": "Deletes an uploaded backup file", @@ -50977,7 +50977,7 @@ }, "response": [ { - "id": "4527ed0a-718c-4787-9d74-5a4dd5aba6d7", + "id": "147c47f2-f15d-4fbe-8e8f-6649db58dcbf", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -51013,7 +51013,7 @@ "_postman_previewlanguage": "text" }, { - "id": "5aa8eecd-9293-4127-8638-7599e4bcc708", + "id": "06a7f91b-43e4-4ad6-8860-6bd6b67086db", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -51059,7 +51059,7 @@ "_postman_previewlanguage": "json" }, { - "id": "43257eee-0bec-453f-b84e-6077dbd6d9e5", + "id": "c3a75623-fc77-4e15-9948-65f427247cd7", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -51105,7 +51105,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e8830508-5d65-409d-b185-89782fec1692", + "id": "da23a1a7-8696-49fa-a7eb-dc8ef9d146e5", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -51151,7 +51151,7 @@ "_postman_previewlanguage": "json" }, { - "id": "35574460-e833-4f5d-b43f-f5786fa97d8c", + "id": "1d1f2380-f081-4c4c-b995-2c9da860354c", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -51197,7 +51197,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d2712253-ba6c-43b0-a328-bce963cfe6e3", + "id": "9034475b-ecd3-4d0b-adac-08f3af8a118c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -51249,7 +51249,7 @@ } }, { - "id": "62c17811-a13e-43b0-b471-a06053c32292", + "id": "b4265e9b-7e42-49cd-98d6-da2ec3c9431d", "name": "Get an uploaded backup's information", "request": { "name": "Get an uploaded backup's information", @@ -51292,7 +51292,7 @@ }, "response": [ { - "id": "6e2c289d-ab2e-4274-bd88-0cd8c53caf93", + "id": "45250e44-945d-4d93-94a5-cf722b718f11", "name": "List of existing uploaded backups.", "originalRequest": { "url": { @@ -51338,7 +51338,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8c49173d-5f01-4bcb-96de-394704163611", + "id": "5426a5ca-e5e7-44b5-aa41-b5d2bb737e62", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -51384,7 +51384,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5091eb5e-6e58-481b-b7f3-a479d7812cbc", + "id": "81765248-08ca-4c29-a17a-22524110e826", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -51430,7 +51430,7 @@ "_postman_previewlanguage": "json" }, { - "id": "32478785-e0e5-40ea-88c3-b052c50b6906", + "id": "37a147ec-00cb-4c09-b42e-a2f20ef688ff", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -51476,7 +51476,7 @@ "_postman_previewlanguage": "json" }, { - "id": "12a9659c-815f-4fae-a4fc-f135d20731cc", + "id": "46b6b158-89e3-4985-aba7-09dc36cfae1b", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -51522,7 +51522,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a3ac858d-445a-42e3-8abb-30a7f98af2f9", + "id": "b045042c-5ea0-4ce6-b560-fb44aa26accc", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -51568,7 +51568,7 @@ "_postman_previewlanguage": "json" }, { - "id": "27160e17-bd9b-40c7-a010-2369a04ce4d2", + "id": "0b2a79a7-d872-48e8-8d49-df1f349b0bb9", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -51626,7 +51626,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": "3ff73355-5338-48c1-8f38-a7fe1e673090", + "id": "46532da3-0eb3-4681-9478-097ae12e01c4", "name": "Gets connector by script name", "request": { "name": "Gets connector by script name", @@ -51677,7 +51677,7 @@ }, "response": [ { - "id": "fea5584c-1e5f-46fd-8aa3-bcf447e9ddfd", + "id": "0d097df3-4d01-4ef1-a2ad-9153e6bd45ad", "name": "A Connector Dto object", "originalRequest": { "url": { @@ -51731,7 +51731,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f74a5863-d843-4dd5-866d-0afb98381c75", + "id": "00123e75-df50-4f54-bb7c-226ce4e6febc", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -51785,7 +51785,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0456c1f6-dddb-4af1-b9ca-3750a2b0f034", + "id": "746654cc-ac73-4907-b80c-44245ef52f3e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -51839,7 +51839,7 @@ "_postman_previewlanguage": "json" }, { - "id": "01989dde-6bcd-4cbb-8e59-51bd2f0d3dc1", + "id": "e86bfc31-95ff-41ec-ad08-c4f7fb312cdd", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -51893,7 +51893,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cc53bc1a-a4ed-4d78-b8cd-ccbd651b19bc", + "id": "97e29928-748e-4e33-b0c0-c1f660994f98", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -51947,7 +51947,7 @@ "_postman_previewlanguage": "json" }, { - "id": "229a3433-52ce-4294-992a-7b034db83c19", + "id": "9b241a64-e85a-45c6-b867-7786af986c20", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -52001,7 +52001,7 @@ "_postman_previewlanguage": "json" }, { - "id": "02bd89aa-4d10-4531-a513-014c6c2ef3ea", + "id": "1ee68a7b-9cb8-4caf-9bf7-b71789232597", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -52061,7 +52061,7 @@ } }, { - "id": "c90971d7-4a8a-4aa2-9ee8-2450862fea50", + "id": "654cdf5b-85d2-44f8-8fd7-c2e3b4021d50", "name": "Deletes connector by script name", "request": { "name": "Deletes connector by script name", @@ -52102,7 +52102,7 @@ }, "response": [ { - "id": "316b6645-d4ab-4dfc-9c3d-8ff743d66bd3", + "id": "bc938a63-4204-4915-be01-b86e20b8040f", "name": "The custom connector was successfully deleted.", "originalRequest": { "url": { @@ -52136,7 +52136,7 @@ "_postman_previewlanguage": "text" }, { - "id": "d68cef49-2ea7-446d-b153-492a2035e0e4", + "id": "b82d8701-d64b-4a26-a5fe-82bebc62b745", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -52180,7 +52180,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a275deb7-9ad0-4664-a39e-0163d2d36fb6", + "id": "f402b751-13ef-437f-9fc2-b7d8fc1285c6", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -52224,7 +52224,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f9fc4fb2-e422-4815-8df0-ee92c94e0fd1", + "id": "ef73ea2d-7216-4f28-93be-bfc5a08704f8", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -52268,7 +52268,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b350cab1-27a0-42aa-943f-95fd94aded5b", + "id": "b3cc13ca-a5f2-4db7-b354-66ba44d1563c", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -52312,7 +52312,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f6e24728-4da4-4237-b25e-90ec94ddd15f", + "id": "9b74cc39-420d-496b-b4b9-e392df064a5d", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -52356,7 +52356,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bd26ad21-3e8b-4ca3-8df6-353c275e3e15", + "id": "7c66db21-213e-41d7-bf1b-66d0ce731e27", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -52406,7 +52406,7 @@ } }, { - "id": "d6748367-a401-401f-aadb-c8077baaf08d", + "id": "78c88770-b1f1-45bc-b18f-8565ea29ed0a", "name": "Update connector by script name", "request": { "name": "Update connector by script name", @@ -52460,7 +52460,7 @@ }, "response": [ { - "id": "f2467aec-91ae-440d-b294-eba08a5cff70", + "id": "dd496aa4-4f71-4446-b14e-2e4d2ac09e44", "name": "A updated Connector Dto object", "originalRequest": { "url": { @@ -52517,7 +52517,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2e492a51-4995-4734-9652-33ef1ff58335", + "id": "8ebe009f-c363-4579-93af-ff4665f0e954", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -52574,7 +52574,7 @@ "_postman_previewlanguage": "json" }, { - "id": "92ef7b3f-ce3b-4970-8ae7-a0ebd5fbcb6c", + "id": "ba987f29-1251-4a7f-bb2e-88e7efd50bdb", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -52631,7 +52631,7 @@ "_postman_previewlanguage": "json" }, { - "id": "404d568c-99b5-4bc1-b927-8c5b57eaf6c7", + "id": "5abf17b2-31d5-4ab8-85b9-e29341556783", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -52688,7 +52688,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4b163cf6-a316-4fd9-9fdb-8703c78c9d82", + "id": "0cb36d24-a723-4085-af78-e34c7fd1969c", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -52745,7 +52745,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d1447ddb-8592-432b-85c0-5f739d536e66", + "id": "c76ca583-dbf5-43cb-b1f8-3bc21ae50f25", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -52802,7 +52802,7 @@ "_postman_previewlanguage": "json" }, { - "id": "40f17efe-1d99-459a-9bb0-857510438c61", + "id": "a6d8c54f-990a-4fa7-93ed-1096ae390bac", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -52865,7 +52865,7 @@ } }, { - "id": "119842c7-5a2d-41b7-9720-7f786feaa6d1", + "id": "8f4f8404-aa0d-4f1e-9e88-9f16afb59356", "name": "Gets connector list", "request": { "name": "Gets connector list", @@ -52940,7 +52940,7 @@ }, "response": [ { - "id": "91be3597-482a-42eb-9830-c2e674874ddf", + "id": "797ae4e7-0862-4ba4-b467-fdbd598cb018", "name": "A Connector Dto object", "originalRequest": { "url": { @@ -53029,7 +53029,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4d625ff0-6a30-4c36-b096-4e29a9c9ac6e", + "id": "4ca4cf13-0ef1-4530-81f8-9a54d8befe0b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -53118,7 +53118,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c5619850-6034-4f4a-b273-43bf3e760095", + "id": "72bea7bd-aeeb-4a39-858d-9289adcb5923", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -53207,7 +53207,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2a5492a7-9309-4c8f-b023-e3d433b24f71", + "id": "45433862-7c88-468e-9a5a-ac2871a29908", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -53296,7 +53296,7 @@ "_postman_previewlanguage": "json" }, { - "id": "775ec19c-a78f-4294-97cd-616a9493d747", + "id": "4f63236b-e9a1-40bd-9e4e-1b804fee4543", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -53385,7 +53385,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e6d6c085-f8a1-4674-8a29-620bf4de2ab4", + "id": "26bf884f-bd03-45cb-b6ee-457f70c24d3e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -53474,7 +53474,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0c6e173a-cff5-48ef-9fa5-9613985fe35c", + "id": "c3948f08-c3fa-4442-8a7b-c739a7f2f11b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -53569,7 +53569,7 @@ } }, { - "id": "310c768b-56c7-4c64-be37-d1b097526a41", + "id": "eef57a6a-ca1a-41c6-89cb-e306cef1b4be", "name": "Create custom connector", "request": { "name": "Create custom connector", @@ -53611,7 +53611,7 @@ }, "response": [ { - "id": "2d4109fc-15b1-4586-bc40-cfa9c1155a85", + "id": "e913af92-7fc4-4580-a40a-98a01f2028ac", "name": "A Connector Dto object", "originalRequest": { "url": { @@ -53667,7 +53667,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b43cb2aa-aa4b-4ed2-9f96-2148699fbe05", + "id": "1261f401-aa2a-48e2-901a-bc5155bd3b77", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -53723,7 +53723,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8b266a4b-8d9f-424a-93a2-a38aaf2ca45a", + "id": "42a6530f-c1e6-4a2c-9cc0-e550bd3d4a76", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -53779,7 +53779,7 @@ "_postman_previewlanguage": "json" }, { - "id": "44d4eb28-8a8e-445e-834d-5269d6572e3e", + "id": "4e522337-1120-4989-b7a0-fe326fff998e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -53835,7 +53835,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8f17aa36-328e-47a7-9531-4d8c5504d4f3", + "id": "8fb1f25c-19eb-4501-a313-607d6b8f78c2", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -53891,7 +53891,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6763282c-f01b-473e-94dd-2d1ace8ed3b5", + "id": "81647ad1-bf42-4289-8a45-89e42a733908", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -53947,7 +53947,7 @@ "_postman_previewlanguage": "json" }, { - "id": "038796dc-90a1-4e3f-803d-5f6fdca1995f", + "id": "a0e0799f-d9bf-4ea6-ae79-a0aedb54aa06", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -54009,7 +54009,7 @@ } }, { - "id": "7ef819fc-0581-4e7c-b56d-2528b9e6dc9d", + "id": "9603db6b-d06c-4707-a8b1-1e52e8a1a251", "name": "get Connector Source Config", "request": { "name": "get Connector Source Config", @@ -54051,7 +54051,7 @@ }, "response": [ { - "id": "007d2276-f45c-449b-8e09-9459ce97d3f8", + "id": "ede79669-07e0-416e-84fc-979be6b3bc14", "name": "The connector's source template", "originalRequest": { "url": { @@ -54096,7 +54096,7 @@ "_postman_previewlanguage": "xml" }, { - "id": "7a629efc-a702-4f06-b66a-f4ffac3682cd", + "id": "5d227fb2-6f3b-47f1-95fa-a4ec6606d48c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -54141,7 +54141,7 @@ "_postman_previewlanguage": "json" }, { - "id": "01c13650-2b05-462b-87f9-2a27a40b633a", + "id": "a685718d-eaf8-4141-a7ad-2c837b0a727c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -54186,7 +54186,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9d629a85-83cb-4398-970f-b7e7b4ff9c35", + "id": "da5a568b-5452-4fe2-b99f-269700f88c48", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -54231,7 +54231,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5cdaa804-bf09-4343-bec3-d68733af0b7d", + "id": "9d62b267-d1f2-4a46-b91a-df6e2ebc4971", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -54276,7 +54276,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a5607f8f-3a09-4287-8d3f-f2f8c6f3547b", + "id": "4c8c45f0-813e-4e1f-9cf0-461a34fad556", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -54321,7 +54321,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6fa761de-98fd-471a-814a-8c37424b0671", + "id": "04e6db6e-6de3-42d4-8223-8219b10b031f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -54372,7 +54372,7 @@ } }, { - "id": "9daf5301-ed02-4c22-bbbf-1431994d0aa5", + "id": "e83261b0-c567-4eb1-b1cc-318db6efe33d", "name": "put Source Config", "request": { "name": "put Source Config", @@ -54423,7 +54423,7 @@ "type": "text/plain" }, "key": "file", - "value": "cupidatat Lorem ad elit exercitation", + "value": "consectetur non", "type": "text" } ] @@ -54431,7 +54431,7 @@ }, "response": [ { - "id": "08a720fd-1ddf-48df-8cad-1618f6fd073c", + "id": "711baa50-4566-4846-becf-437d90aa8c0b", "name": "The connector's update detail", "originalRequest": { "url": { @@ -54474,7 +54474,7 @@ "type": "text/plain" }, "key": "file", - "value": "cupidatat Lorem ad elit exercitation", + "value": "consectetur non", "type": "text" } ] @@ -54493,7 +54493,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cae4fb20-2d0c-45dc-9523-47091efd7b79", + "id": "bb6592a1-c636-4efa-a8e9-478b03c3b1d2", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -54536,7 +54536,7 @@ "type": "text/plain" }, "key": "file", - "value": "cupidatat Lorem ad elit exercitation", + "value": "consectetur non", "type": "text" } ] @@ -54555,7 +54555,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5d515916-c3e3-4526-b2ac-14c3d4bc9191", + "id": "584cc1c0-723f-4d63-aacf-ceaf75622f82", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -54598,7 +54598,7 @@ "type": "text/plain" }, "key": "file", - "value": "cupidatat Lorem ad elit exercitation", + "value": "consectetur non", "type": "text" } ] @@ -54617,7 +54617,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a84ce931-e242-4e59-91e8-d7a79bc9897f", + "id": "2ce0172d-7209-4ddd-9023-51305a9b4e5d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -54660,7 +54660,7 @@ "type": "text/plain" }, "key": "file", - "value": "cupidatat Lorem ad elit exercitation", + "value": "consectetur non", "type": "text" } ] @@ -54679,7 +54679,7 @@ "_postman_previewlanguage": "json" }, { - "id": "31547372-2dd3-4123-92a1-13d1c6edb872", + "id": "93e5f0b3-06f1-4f23-93b5-deea9ce968d9", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -54722,7 +54722,7 @@ "type": "text/plain" }, "key": "file", - "value": "cupidatat Lorem ad elit exercitation", + "value": "consectetur non", "type": "text" } ] @@ -54741,7 +54741,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d66239ac-a6c0-49ec-81e2-0cdd198ec9b3", + "id": "e68ae58b-dbcc-4d19-bb71-0cb1488b4968", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -54784,7 +54784,7 @@ "type": "text/plain" }, "key": "file", - "value": "cupidatat Lorem ad elit exercitation", + "value": "consectetur non", "type": "text" } ] @@ -54803,7 +54803,7 @@ "_postman_previewlanguage": "json" }, { - "id": "61b44e86-84c0-4ded-8c09-27d2241a2e27", + "id": "be51de0e-0803-4f8a-91e6-caa6dcf3b5c9", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -54846,7 +54846,7 @@ "type": "text/plain" }, "key": "file", - "value": "cupidatat Lorem ad elit exercitation", + "value": "consectetur non", "type": "text" } ] @@ -54871,7 +54871,7 @@ } }, { - "id": "0e71be89-3643-47b0-a4b8-d8abf2a79853", + "id": "9d87af12-36bc-445f-b87a-f6729bad7817", "name": "get Connector Translations", "request": { "name": "get Connector Translations", @@ -54924,7 +54924,7 @@ }, "response": [ { - "id": "40a55d70-79c1-4bbc-b1c0-a950c3b4e442", + "id": "53083468-ddff-4074-8ead-17737665159d", "name": "The connector's translations", "originalRequest": { "url": { @@ -54965,12 +54965,12 @@ "value": "text/plain" } ], - "body": "voluptate Excepteur Ut labore", + "body": "dolor do cillum", "cookie": [], "_postman_previewlanguage": "text" }, { - "id": "4412ea74-40c7-4bce-bfeb-9a0d2a771871", + "id": "6ce40dda-fca2-43c9-b672-67dcd75543a4", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -55016,7 +55016,7 @@ "_postman_previewlanguage": "json" }, { - "id": "40b9b1e9-2be7-4021-9388-a3f2f1791360", + "id": "d98a9ee5-f615-4ac0-bde2-e8d6bf09382f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -55062,7 +55062,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7489de21-4f60-4512-8991-c56268baf1f2", + "id": "a0dd6a61-1a19-4864-8256-fe05f88a741f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -55108,7 +55108,7 @@ "_postman_previewlanguage": "json" }, { - "id": "513241e6-9ad3-48de-a761-a86d62b57dde", + "id": "959d1565-269a-4c5d-8343-852959147537", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -55154,7 +55154,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3c9170e3-d475-45fa-97da-3f6a2c8a385a", + "id": "53c9c4dc-fc77-440e-8b47-0d78a836dcea", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -55200,7 +55200,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9b288a28-422c-4e89-a416-9bdcd4ff7fb4", + "id": "9486ab83-bc31-41aa-8fb5-edb5572c0ec4", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -55252,7 +55252,7 @@ } }, { - "id": "52acd6e8-663e-41f7-9722-fa320831aa64", + "id": "cce3a548-281e-4c82-a03a-ee95f86a64ff", "name": "put Translations", "request": { "name": "put Translations", @@ -55312,7 +55312,7 @@ }, "response": [ { - "id": "98325826-f4a6-489b-b4ea-939d559b0c16", + "id": "0ad395b1-fe46-42f5-aecd-d336cd857df8", "name": "The connector's update detail", "originalRequest": { "url": { @@ -55365,7 +55365,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f277d7d4-012e-441f-95ab-e35615d9202f", + "id": "c3487e7f-8fc6-44a6-86a2-b7fa4fa8d673", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -55418,7 +55418,7 @@ "_postman_previewlanguage": "json" }, { - "id": "18c401e4-d3f8-465e-a6fa-7e9c55835ccd", + "id": "62a2459a-2c91-456a-ada9-e4b0df74527e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -55471,7 +55471,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6af676ca-c4e0-4353-911d-797ff8da60b7", + "id": "d9261558-a274-482f-a65d-a66088dfb6d9", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -55524,7 +55524,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a0d801fc-9285-4cd0-b2a2-78af2099fa80", + "id": "116a4b62-4c12-4165-89d9-34466c146d40", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -55577,7 +55577,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6ed53c07-063b-4c19-b259-40eb12bb673f", + "id": "b31c3376-e10e-40df-9350-1178e077fbd8", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -55630,7 +55630,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3c851fe9-e0b0-4511-9fd9-e0d310b37b17", + "id": "36570926-b5bc-48c6-8501-cbb8e80d56dd", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -55689,7 +55689,7 @@ } }, { - "id": "ae64c7f2-43a6-4c1d-b357-e1ef98fd0f1d", + "id": "111b3590-fa75-4e58-b549-ee5ec624b4e5", "name": "get Connector Source Template", "request": { "name": "get Connector Source Template", @@ -55731,7 +55731,7 @@ }, "response": [ { - "id": "1c2ca6a1-cce7-47a1-ad0a-06945a06989e", + "id": "69493844-6d55-47d3-9916-fbb49b788a48", "name": "The connector's source template", "originalRequest": { "url": { @@ -55776,7 +55776,7 @@ "_postman_previewlanguage": "xml" }, { - "id": "c8b5d42f-c471-41c1-a0b1-cd8b8daa31a4", + "id": "a5116a13-8c27-470e-9cf8-c1145253b7fb", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -55821,7 +55821,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cff16735-c299-438c-8da1-278e0eab05a5", + "id": "06f820bd-f148-497c-9934-6d30159f6eae", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -55866,7 +55866,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a8d37ea6-b54e-46fa-8a02-54cd81530091", + "id": "056d02b5-a444-41a9-91d3-d8d2548459da", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -55911,7 +55911,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b58c087c-4d21-49a8-b655-8f366bb88c38", + "id": "741ec6bb-ddb0-4aa7-a2ea-730ae575686e", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -55956,7 +55956,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1748255a-c463-489f-8e5e-0961fbd9955f", + "id": "893a4c05-bb4a-452c-ad96-db62367c39aa", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -56001,7 +56001,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b84d4976-51c8-4695-a198-4950f4ee7a12", + "id": "a1da7021-c53d-4223-969c-4251140e17d0", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -56052,7 +56052,7 @@ } }, { - "id": "a53210bf-258c-47cd-abc5-4ca6e01d53ab", + "id": "1f4591cf-dc9d-4917-88b9-c1582214d5da", "name": "put Source Template", "request": { "name": "put Source Template", @@ -56103,7 +56103,7 @@ "type": "text/plain" }, "key": "file", - "value": "aliqua ut inci", + "value": "Lorem ut pariatur in", "type": "text" } ] @@ -56111,7 +56111,7 @@ }, "response": [ { - "id": "257fac76-7447-4c8f-8370-64e8a04e37ef", + "id": "4cbdb587-c324-420c-ace1-06ed94aeefff", "name": "The connector's update detail", "originalRequest": { "url": { @@ -56154,7 +56154,7 @@ "type": "text/plain" }, "key": "file", - "value": "aliqua ut inci", + "value": "Lorem ut pariatur in", "type": "text" } ] @@ -56173,7 +56173,7 @@ "_postman_previewlanguage": "json" }, { - "id": "98fd08af-a9e9-4ebd-9b4e-d7c62d6d8914", + "id": "766ffb7b-ac86-4b51-acb5-2ebb9e3385da", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -56216,7 +56216,7 @@ "type": "text/plain" }, "key": "file", - "value": "aliqua ut inci", + "value": "Lorem ut pariatur in", "type": "text" } ] @@ -56235,7 +56235,7 @@ "_postman_previewlanguage": "json" }, { - "id": "22f0abb4-4219-4c95-af07-b262b4431017", + "id": "8fe5c2f1-b317-448a-ae77-7299d609c26a", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -56278,7 +56278,7 @@ "type": "text/plain" }, "key": "file", - "value": "aliqua ut inci", + "value": "Lorem ut pariatur in", "type": "text" } ] @@ -56297,7 +56297,7 @@ "_postman_previewlanguage": "json" }, { - "id": "75d34b29-17a1-44f5-8735-f2238eb8bcb2", + "id": "a499338c-2879-4876-bab9-421c1030cc05", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -56340,7 +56340,7 @@ "type": "text/plain" }, "key": "file", - "value": "aliqua ut inci", + "value": "Lorem ut pariatur in", "type": "text" } ] @@ -56359,7 +56359,7 @@ "_postman_previewlanguage": "json" }, { - "id": "19dccde1-c990-47aa-9e1b-39a796be8a4d", + "id": "54a3f151-2cc7-4e5d-941d-19cd8e04d611", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -56402,7 +56402,7 @@ "type": "text/plain" }, "key": "file", - "value": "aliqua ut inci", + "value": "Lorem ut pariatur in", "type": "text" } ] @@ -56421,7 +56421,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b2dda871-5f61-4673-b984-5e43c36af332", + "id": "17c8a74f-2a7b-43a8-994a-73235defda6d", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -56464,7 +56464,7 @@ "type": "text/plain" }, "key": "file", - "value": "aliqua ut inci", + "value": "Lorem ut pariatur in", "type": "text" } ] @@ -56483,7 +56483,7 @@ "_postman_previewlanguage": "json" }, { - "id": "22a0548a-0729-40bf-8449-d610f075f3e4", + "id": "fdc833be-1067-4cb1-ae4f-563315e9ae02", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -56526,7 +56526,7 @@ "type": "text/plain" }, "key": "file", - "value": "aliqua ut inci", + "value": "Lorem ut pariatur in", "type": "text" } ] @@ -56551,7 +56551,7 @@ } }, { - "id": "94f8cc99-a034-4c47-ab1e-6e437c9e0ddb", + "id": "bbb45862-eee7-49fc-a7cf-4e284a6d671a", "name": "get Connector Correlation Config", "request": { "name": "get Connector Correlation Config", @@ -56593,7 +56593,7 @@ }, "response": [ { - "id": "d14e5c20-da8a-44b0-8200-85d5123c0624", + "id": "1af08efe-d090-4fa1-b746-b1f52e1ae4fc", "name": "The connector's correlation config", "originalRequest": { "url": { @@ -56638,7 +56638,7 @@ "_postman_previewlanguage": "xml" }, { - "id": "ed8d7f7b-5f14-4fec-bd75-e8ef48f45f1e", + "id": "0da973ff-0b83-4417-8d5d-06139c3dd570", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -56683,7 +56683,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bea86d7b-8b19-47c9-9e22-1b7f0943b076", + "id": "be234b83-4867-4f41-828c-a6e36c4b0151", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -56728,7 +56728,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e6e4732c-47f5-44a4-b3c3-82505e44b3e8", + "id": "408f6065-1544-4076-bd09-9ba42eca7e9a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -56773,7 +56773,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3c2e6d5c-339a-4f0c-b8bc-2de23d960552", + "id": "b19af667-29f0-4ff3-987d-2931d36a02e9", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -56818,7 +56818,7 @@ "_postman_previewlanguage": "json" }, { - "id": "949bb2b2-8c40-4dba-9735-209e6f7fa1b5", + "id": "883ecf7a-b2ec-46f9-9325-eb4e63769aa4", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -56863,7 +56863,7 @@ "_postman_previewlanguage": "json" }, { - "id": "36fb5713-3793-4f79-bc26-50f9f2c1362d", + "id": "936ffb46-a06b-4328-bb58-692967c021bc", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -56914,7 +56914,7 @@ } }, { - "id": "a1e06856-d147-4733-b2c2-0f02391a2c1d", + "id": "9b3439a3-cf52-4f54-8a3a-e14e94c542cf", "name": "put Correlation Config", "request": { "name": "put Correlation Config", @@ -56965,7 +56965,7 @@ "type": "text/plain" }, "key": "file", - "value": "Lorem laboris", + "value": "deserunt minim do", "type": "text" } ] @@ -56973,7 +56973,7 @@ }, "response": [ { - "id": "94aaa84e-9db7-4a12-aee4-906702c008e2", + "id": "49ac9666-709c-4fe3-8c6a-4f24fc9048c8", "name": "The connector's update detail", "originalRequest": { "url": { @@ -57016,7 +57016,7 @@ "type": "text/plain" }, "key": "file", - "value": "Lorem laboris", + "value": "deserunt minim do", "type": "text" } ] @@ -57035,7 +57035,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9dd083cf-6c9b-494e-a19a-669198799a24", + "id": "e5a66850-afe5-43af-a5d1-29c428f1d53e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -57078,7 +57078,7 @@ "type": "text/plain" }, "key": "file", - "value": "Lorem laboris", + "value": "deserunt minim do", "type": "text" } ] @@ -57097,7 +57097,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f9764337-8a24-495c-9f8a-ecd8b37d55b2", + "id": "f9b361dd-580b-4e4c-a520-d1a45ba2324c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -57140,7 +57140,7 @@ "type": "text/plain" }, "key": "file", - "value": "Lorem laboris", + "value": "deserunt minim do", "type": "text" } ] @@ -57159,7 +57159,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3f2ac714-77c8-42f5-b9d0-982892302da4", + "id": "d0eaeac4-fb46-4d1c-b63f-9d25f89c29af", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -57202,7 +57202,7 @@ "type": "text/plain" }, "key": "file", - "value": "Lorem laboris", + "value": "deserunt minim do", "type": "text" } ] @@ -57221,7 +57221,7 @@ "_postman_previewlanguage": "json" }, { - "id": "657afb38-73bc-46f2-afb3-a5f23f8a1f2a", + "id": "db19f3d2-71f2-41f6-8262-0a4da775644b", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -57264,7 +57264,7 @@ "type": "text/plain" }, "key": "file", - "value": "Lorem laboris", + "value": "deserunt minim do", "type": "text" } ] @@ -57283,7 +57283,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c2cb93f6-495d-4c02-8008-c0b0067d8b44", + "id": "e05f8190-83b4-428b-9b0a-538c52f4c0db", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -57326,7 +57326,7 @@ "type": "text/plain" }, "key": "file", - "value": "Lorem laboris", + "value": "deserunt minim do", "type": "text" } ] @@ -57345,7 +57345,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4a707015-46d4-4e5c-b9b3-9a9c3499e4ad", + "id": "62ac87bf-6b3d-4836-92ed-14609c2166fa", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -57388,7 +57388,7 @@ "type": "text/plain" }, "key": "file", - "value": "Lorem laboris", + "value": "deserunt minim do", "type": "text" } ] @@ -57419,7 +57419,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": "d6f2955f-f1ac-4454-afe8-263b7e38d18b", + "id": "9c89ae96-b8af-42d1-99c7-e01dd5ccbcb4", "name": "Get security network configuration.", "request": { "name": "Get security network configuration.", @@ -57449,7 +57449,7 @@ }, "response": [ { - "id": "5253c6d5-a7a1-4657-a51c-cbc0ccded247", + "id": "854ecdb0-e91b-4cf5-9489-5dbd8a30d669", "name": "Network configuration for the tenant's auth org.", "originalRequest": { "url": { @@ -57493,7 +57493,7 @@ "_postman_previewlanguage": "json" }, { - "id": "90b9e8c3-27b4-4ada-b0fa-c2adf152d54b", + "id": "988de51d-7cc1-4738-bf0d-0a7095bf6777", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -57537,7 +57537,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4717f126-1bae-4768-967c-e0bb2396619a", + "id": "3e030df9-1d78-44fe-8ced-89fc44796423", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -57581,7 +57581,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3b1b1632-2765-473b-88e9-e76e0743e452", + "id": "3dcbc4b6-b21e-4712-9eba-6ad0b42f307f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -57625,7 +57625,7 @@ "_postman_previewlanguage": "json" }, { - "id": "651a3214-061e-411b-a1b9-089cbca8ada2", + "id": "898dcaa8-afa6-44c3-83c6-b03f1fabca7b", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -57669,7 +57669,7 @@ "_postman_previewlanguage": "json" }, { - "id": "26a653ca-b9a9-4e0a-82ae-0eb45b5a4e7e", + "id": "c500e3eb-dc34-4aee-8022-b313acf0bcdc", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -57713,7 +57713,7 @@ "_postman_previewlanguage": "json" }, { - "id": "11ae48aa-94ea-4109-9e51-1d6c675fc59a", + "id": "61925b7f-71dc-4a1d-b22b-87a036d2f5f6", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -57763,7 +57763,7 @@ } }, { - "id": "b191bcb8-3ed1-49bf-9e22-2f01aa379268", + "id": "cc7cd7cc-8fd0-4cbb-8fd7-cffd295460b7", "name": "Create security network configuration.", "request": { "name": "Create security network configuration.", @@ -57806,7 +57806,7 @@ }, "response": [ { - "id": "9875df6d-e704-4d61-8fcf-6845411cc74d", + "id": "b151b35c-9e57-4434-a3c5-08b34661af72", "name": "Network configuration for the tenant.", "originalRequest": { "url": { @@ -57863,7 +57863,7 @@ "_postman_previewlanguage": "json" }, { - "id": "664f3615-483e-4d40-89d8-51346b45870e", + "id": "6b1136b6-b29d-4b78-9641-42c53e8caf73", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -57920,7 +57920,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cb25b79b-5275-4783-b719-f8dbf0ce7f61", + "id": "0d4a6d02-76cb-4dd9-9757-f57436973169", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -57977,7 +57977,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b2bc09d5-17d4-4c92-81b8-cbee332b1fd9", + "id": "b444d1dd-534b-4d4b-813b-447bb87dc523", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -58034,7 +58034,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9e8a91ba-5605-48c4-a859-affc65f179cb", + "id": "4458bd5e-0db9-4641-91a6-ae1141ebff5a", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -58091,7 +58091,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d3d41040-4835-4f7e-9040-d5b7d7c46f70", + "id": "081edc2c-ab71-47cc-baa9-173700c8c5f4", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -58148,7 +58148,7 @@ "_postman_previewlanguage": "json" }, { - "id": "17c9eb8c-c283-4986-85ae-ef47b685c557", + "id": "f4416c40-f2f2-4f67-af32-d2fd20140201", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -58211,7 +58211,7 @@ } }, { - "id": "79b2e68c-810b-46d9-842a-f272423ed202", + "id": "4234d882-779a-49b4-818a-0718f1eb99b5", "name": "Update security network configuration.", "request": { "name": "Update security network configuration.", @@ -58254,7 +58254,7 @@ }, "response": [ { - "id": "8136f01a-6ea4-43aa-933f-795316ff2f71", + "id": "bd2d2853-9bf0-4312-bcf4-b1beba07be41", "name": "Updated Auth Org network configuration.", "originalRequest": { "url": { @@ -58311,7 +58311,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0834e95e-0e1b-46f6-a7e9-2e99093bb138", + "id": "d650cb08-74ab-42a3-8610-b6ad3e97f95a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -58368,7 +58368,7 @@ "_postman_previewlanguage": "json" }, { - "id": "38e54d6c-6817-48d4-ac1a-3601cfeac395", + "id": "783246ba-93fa-488e-a4fa-ae004dc514c6", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -58425,7 +58425,7 @@ "_postman_previewlanguage": "json" }, { - "id": "34ae5564-37dc-4a88-aa2c-d32e42b39eb2", + "id": "7bf1df83-7b6e-40b6-8fa3-d6fc6cbc8512", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -58482,7 +58482,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f54272ab-8f4d-4454-a4a2-e884634196a6", + "id": "0a4102b8-7a0f-4cd6-a6fc-d7f390b6128c", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -58539,7 +58539,7 @@ "_postman_previewlanguage": "json" }, { - "id": "820241b0-5074-4a76-bb44-ced408ffd258", + "id": "966d3c89-2703-41f2-9041-868114d3eb1b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -58596,7 +58596,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3aa73602-9444-44df-829d-66a931eefc4d", + "id": "a1d347e5-30c7-4b15-8d88-79590fbcf8b1", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -58659,7 +58659,7 @@ } }, { - "id": "1333ae44-fb2c-469c-aa69-e0c6556e9fac", + "id": "78cf168f-ba75-4c46-89b5-6f95491a4acb", "name": "Get Auth Org Lockout Configuration.", "request": { "name": "Get Auth Org Lockout Configuration.", @@ -58689,7 +58689,7 @@ }, "response": [ { - "id": "ea241d59-04bd-420e-80ae-c40ce2577cdc", + "id": "4b98ddd7-f681-47d4-aa78-f373ba1b74bf", "name": "Lockout configuration for the tenant's auth org.", "originalRequest": { "url": { @@ -58733,7 +58733,7 @@ "_postman_previewlanguage": "json" }, { - "id": "325a2b99-9078-447c-9c74-4d161a7ca0ce", + "id": "d4d37f82-6114-4a95-9338-cc755a76c506", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -58777,7 +58777,7 @@ "_postman_previewlanguage": "json" }, { - "id": "af8cc2d6-6bca-4f89-a10e-c32d5314a288", + "id": "35f94ea2-f885-4006-9734-6cd9095a1fdd", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -58821,7 +58821,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b67ea7e0-5db1-4b53-92bb-ea9ba113c3cf", + "id": "c3c00d89-0ee6-4cfd-9934-951faaa39862", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -58865,7 +58865,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c0fba990-1a7c-45df-b047-167371980150", + "id": "89392c70-82a0-40f8-aeda-763ed92400f4", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -58909,7 +58909,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9f69bc0c-a9df-44bd-a6c9-7d42f2649708", + "id": "422702fa-4cc0-4919-8b5f-c4a978025797", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -58953,7 +58953,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8fe35737-f777-4e13-ba93-3156b27a94ca", + "id": "4e03cb88-5f62-4c02-94b0-b8e3bcb4bff1", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -59003,7 +59003,7 @@ } }, { - "id": "f6b21bee-d8ba-43db-a619-0c37f861feb1", + "id": "0c07e808-27a2-4392-a698-afb801a2f822", "name": "Update Auth Org Lockout Configuration", "request": { "name": "Update Auth Org Lockout Configuration", @@ -59046,7 +59046,7 @@ }, "response": [ { - "id": "3b12aab3-b3a2-4487-9fde-f6feff1996d0", + "id": "fc068ece-6c2d-40ca-87f8-37b74034de6f", "name": "Updated Auth Org lockout configuration.", "originalRequest": { "url": { @@ -59103,7 +59103,7 @@ "_postman_previewlanguage": "json" }, { - "id": "36a6356a-028d-458b-ab57-ed95936190a4", + "id": "761dac9e-aa7f-4f01-aeff-507ba4f33c63", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -59160,7 +59160,7 @@ "_postman_previewlanguage": "json" }, { - "id": "aab46078-f7d6-43c7-9f06-09165d002aeb", + "id": "aecc11bd-6ebc-449d-b803-b01cff08c72b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -59217,7 +59217,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e456752b-b206-408b-8119-dfdd30dfa532", + "id": "2eab40b5-d4fa-46ef-8ae6-cbd6a801b9c3", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -59274,7 +59274,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bedc9f62-808d-47b1-9a7e-28ffab980310", + "id": "076e2398-70ec-40d3-926c-6295946fff44", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -59331,7 +59331,7 @@ "_postman_previewlanguage": "json" }, { - "id": "da701cad-8afe-4408-9a34-4d2388e8c6ff", + "id": "a95e28ae-aa5e-45d3-8f2a-c46db992587b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -59388,7 +59388,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c9974a54-c746-4918-9eef-95b68a372bb1", + "id": "92cac344-214a-49d8-b0e3-7f9e76a00c8c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -59451,7 +59451,7 @@ } }, { - "id": "5a0b7260-e1fb-44c7-8c9d-6025528c3f84", + "id": "ab95789f-728b-4f79-b45b-accc48d61a3b", "name": "Get Service Provider Configuration.", "request": { "name": "Get Service Provider Configuration.", @@ -59481,7 +59481,7 @@ }, "response": [ { - "id": "c0a075e7-0da0-4c38-a3a6-8a0dd515599f", + "id": "ca129b97-547c-43ac-a578-533ed6952ba4", "name": "Service provider configuration for the tenant.", "originalRequest": { "url": { @@ -59525,7 +59525,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ff8a276a-1434-4a35-8671-bed867251526", + "id": "a1568b43-a96c-47f6-8081-bf60e7352a59", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -59569,7 +59569,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5f174c7c-8e11-4195-a666-ea28494b69b3", + "id": "5ccd4d22-ba87-4064-92be-513b6d4e804a", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -59613,7 +59613,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5ec4083b-6ea5-470d-99ca-a64923a17b3d", + "id": "32358b4f-19ea-4d1f-9d15-ef94290f18b9", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -59657,7 +59657,7 @@ "_postman_previewlanguage": "json" }, { - "id": "26fbd13d-3ae5-47b5-b6c1-21204c9182a6", + "id": "d7293c0d-c9bb-4bb6-a930-a509964b6f10", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -59701,7 +59701,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dff4dea3-8785-4908-bc10-222f1b40f605", + "id": "db094124-7fcf-4f09-a579-09ac66f8c719", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -59745,7 +59745,7 @@ "_postman_previewlanguage": "json" }, { - "id": "359c9cce-d308-493c-8e8f-9d99c24a9efa", + "id": "0b623ff3-ba21-4569-8017-6425954457cc", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -59795,7 +59795,7 @@ } }, { - "id": "315ff63d-d3d3-4ff9-940e-a81287989d33", + "id": "48a138bc-0a7f-48f5-8341-47586bef17a4", "name": "Update Service Provider Configuration", "request": { "name": "Update Service Provider Configuration", @@ -59838,7 +59838,7 @@ }, "response": [ { - "id": "f7327ae3-5a77-4f85-91eb-0fa65921eaf4", + "id": "382110c9-dd29-4e27-9d4d-1722f1e336e2", "name": "Auth Org Service Provider configuration updated.", "originalRequest": { "url": { @@ -59895,7 +59895,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f9f21c39-c3f7-4646-9d93-799ccf65ee91", + "id": "7e17a58a-529c-425e-98d7-1fe73e75640c", "name": "400.1 Bad Request Content", "originalRequest": { "url": { @@ -59952,7 +59952,7 @@ "_postman_previewlanguage": "json" }, { - "id": "13c1989a-6b9c-469e-a9f5-1401fa3a896d", + "id": "ba7e7ff8-5ba6-43df-b0c3-3845e7aeac1b", "name": "400.1.3 Illegal value", "originalRequest": { "url": { @@ -60009,7 +60009,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b8b85e14-9685-4eb6-93fb-0135dadaac55", + "id": "662a2b61-6b21-4b3e-8f74-719427ae8dda", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -60066,7 +60066,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dafec4a8-ad8e-4017-95b2-761b0217a42e", + "id": "bb1b602c-a5cf-4b22-9531-ecf5d50bd1f0", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -60123,7 +60123,7 @@ "_postman_previewlanguage": "json" }, { - "id": "67d0a83e-3b05-4eef-a819-21d1688a2833", + "id": "1b42ea49-7c50-4dff-991f-3e0643176645", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -60180,7 +60180,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4c5358f5-9fb0-4c02-a3fe-09624b9cc634", + "id": "baeecbcf-ba53-4164-9c40-8bacffb5433e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -60237,7 +60237,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dfddb3f8-a210-4701-9f75-3b8f3651c992", + "id": "adfc3496-8e8e-4f87-bdfd-b985c73bbc3e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -60300,7 +60300,7 @@ } }, { - "id": "677e1146-6ecb-4b63-96ab-49edcab09868", + "id": "0635c811-1b3f-4d00-a095-1b16dff46097", "name": "Get Auth Org Session Configuration.", "request": { "name": "Get Auth Org Session Configuration.", @@ -60330,7 +60330,7 @@ }, "response": [ { - "id": "77dc4a9c-b421-46d7-a6ba-dd9124217c90", + "id": "c37d64e8-7b87-4ded-aa8f-0b4373f511b6", "name": "Session configuration for the tenant's auth org.", "originalRequest": { "url": { @@ -60374,7 +60374,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fd25d2d9-6138-48d8-99c2-798aac90eef0", + "id": "9c5563e3-9fee-4fc0-aa79-5a0ccd5e605b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -60418,7 +60418,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d31534fe-17fc-4eb3-9ae2-5303c366f6ec", + "id": "395b8613-bcce-43aa-9328-4d84c00235bf", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -60462,7 +60462,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c4237e37-5012-454b-909d-510ccb24c454", + "id": "c69740cd-d55d-4fa7-a466-4eaf27ab68d8", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -60506,7 +60506,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ec77004b-db68-4bd5-9a4d-08b9f9ab5b3a", + "id": "2fed2dfa-d226-4954-9357-45354155793d", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -60550,7 +60550,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4b50375e-a49e-41b5-be0d-35cd11d4bebc", + "id": "b879f736-1885-4dc8-97e9-7f98b03a339b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -60594,7 +60594,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5166dba6-7a56-401f-b93a-42619d17fbfe", + "id": "1befde6c-e9d3-4251-ab11-f1b68f8e6aa8", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -60644,7 +60644,7 @@ } }, { - "id": "1130a063-c6b2-4944-83eb-09a4ddaaeb48", + "id": "a821f0b4-f733-48c0-96e1-127a4ce5a9ff", "name": "Update Auth Org Session Configuration", "request": { "name": "Update Auth Org Session Configuration", @@ -60687,7 +60687,7 @@ }, "response": [ { - "id": "2387b50e-610d-4e45-b811-3e754e18bd14", + "id": "8ff0a667-e765-4961-a793-ef2ffe88f527", "name": "Updated Auth Org session configuration.", "originalRequest": { "url": { @@ -60744,7 +60744,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f5bab6b0-96a8-4b09-a6d4-a6ef7e891baf", + "id": "de531fd1-f983-4930-858c-1986619b8985", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -60801,7 +60801,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f6bb6a05-520e-4e4c-aecb-0db883120bc2", + "id": "be2142bb-23b9-43a5-a604-62dbd75bf286", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -60858,7 +60858,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1e2a83ff-39b7-4bc3-a318-40c9a8d33a8e", + "id": "b0864ce4-da42-42ca-916c-9386523cd343", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -60915,7 +60915,7 @@ "_postman_previewlanguage": "json" }, { - "id": "88055437-b220-442f-bee3-d322607e6c99", + "id": "63a80587-1ec6-4185-bbff-2001a666dd1c", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -60972,7 +60972,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3d59a298-5344-4120-9189-068849e875ac", + "id": "b03b6832-d7f7-4fe0-9d63-9c02d9c09c1b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -61029,7 +61029,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1f67fdc9-e3c4-4c67-bf4e-01266c1428b5", + "id": "7df83791-f09a-48a2-97bd-e0e410dac9a8", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -61098,7 +61098,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": "539e1a8e-e772-4eca-bf15-6c02eed28063", + "id": "d047ee3c-f17c-4829-ad6b-b6c3881c6f82", "name": "Identity Profiles List", "request": { "name": "Identity Profiles List", @@ -61173,7 +61173,7 @@ }, "response": [ { - "id": "8b023ce9-66c9-46c8-b567-66e2319b0fc6", + "id": "296907e1-498b-4856-a08b-1337a4841d7e", "name": "List of identityProfiles.", "originalRequest": { "url": { @@ -61262,7 +61262,7 @@ "_postman_previewlanguage": "json" }, { - "id": "35c5f372-3afc-4e3c-b0e0-d050f3f634ff", + "id": "87e17f25-6bdc-47a2-9fdb-3373deced14a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -61351,7 +61351,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3e561963-8e75-4c67-b4bf-806081cae770", + "id": "90265306-bbae-4980-a3a3-3c29bec4ca65", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -61440,7 +61440,7 @@ "_postman_previewlanguage": "json" }, { - "id": "27444e46-59dd-47c2-b11a-4cfb37e8ec8e", + "id": "99de424a-f1df-473b-960e-68480adaa4d6", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -61529,7 +61529,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7f56aa01-df56-4784-b546-2395d5cfcc6f", + "id": "012c10bf-4f8d-4474-a141-d401018c02e0", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -61618,7 +61618,7 @@ "_postman_previewlanguage": "json" }, { - "id": "48cd6413-1cdc-44a2-9300-35f7daddbab5", + "id": "b94640e6-b1eb-4c43-bb19-245db6a4cc5e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -61713,7 +61713,7 @@ } }, { - "id": "9df6e6a1-a8ce-49f8-9389-602b9e61cd26", + "id": "9cac257f-4129-4668-913f-12be8e1ca883", "name": "Delete Identity Profiles", "request": { "name": "Delete Identity Profiles", @@ -61756,7 +61756,7 @@ }, "response": [ { - "id": "084821e9-a732-4fab-a23d-e420763cbc22", + "id": "a7f756b0-9963-44b9-a0cb-a50a75fa9b82", "name": "Accepted - Returns a TaskResult object referencing the bulk delete job created.", "originalRequest": { "url": { @@ -61808,12 +61808,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\": \"1944-12-23T15:01:39.106Z\",\n \"launched\": \"2023-03-09T12:30:39.271Z\",\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\": \"2024-02-05T05:57:38.196Z\",\n \"launched\": \"1986-02-07T17:05:02.392Z\",\n \"completionStatus\": \"Success\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "5653cf76-e781-4e1a-95f1-0a1cc4557d4d", + "id": "4266f852-c6bf-46dc-a5f1-da85eee2b764", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -61870,7 +61870,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ba385271-0213-45f2-9695-0479b8dfa600", + "id": "e2138ca2-7ec8-41a1-b192-bf7e05750cca", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -61927,7 +61927,7 @@ "_postman_previewlanguage": "json" }, { - "id": "49e6db30-8e40-4a23-a3f6-92f379b97245", + "id": "7797425c-77ec-4efb-ba81-def311585ad2", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -61984,7 +61984,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8b60bd51-70d8-4273-8a7c-4980af6b6033", + "id": "d7ee99c0-7e8d-4b53-9622-d2e7c6a1802d", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -62041,7 +62041,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b8996997-c81e-4ada-9f3a-31f386bc1675", + "id": "092431d0-36be-4832-98f2-8253fe435ff6", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -62104,7 +62104,7 @@ } }, { - "id": "e6ff5af4-852d-413c-9bbb-469af90806ee", + "id": "68cd8bb7-2f0a-4f8d-98e9-7d56641d3f83", "name": "Export Identity Profiles", "request": { "name": "Export Identity Profiles", @@ -62180,7 +62180,7 @@ }, "response": [ { - "id": "a06bfff7-9938-4442-a3bc-ef245536d175", + "id": "1e0c041f-6621-438d-8821-66b44555d9ed", "name": "List of export objects with identity profiles.", "originalRequest": { "url": { @@ -62270,7 +62270,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8c48c587-f498-4bbe-8c35-e7171df92eaf", + "id": "2f1f75aa-df17-49c4-a707-cf2c91b97fd5", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -62360,7 +62360,7 @@ "_postman_previewlanguage": "json" }, { - "id": "55e7c295-669d-4a3c-ad68-1b0b28e6e7d0", + "id": "ce5de919-e4df-4e64-af22-d66335496be6", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -62450,7 +62450,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f32d09ea-d9da-4f9c-a6a8-5d69bcf2253a", + "id": "4fb13a46-d639-418b-82a3-277c881a753f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -62540,7 +62540,7 @@ "_postman_previewlanguage": "json" }, { - "id": "28b86ecc-bd73-4bfe-ad98-bddf6469a49d", + "id": "c7f3a59f-3052-4d19-9cc2-3f8fbec6c011", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -62630,7 +62630,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f009dfd7-896f-4e0c-a505-f223999b827e", + "id": "7fffa9c2-8a8f-4a92-96d6-6fd9532b1c94", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -62726,7 +62726,7 @@ } }, { - "id": "cf9201ec-bdfe-4508-be30-c9deab187033", + "id": "fb860f0c-f733-4579-84c3-6f9bb0a6cc18", "name": "Import Identity Profiles", "request": { "name": "Import Identity Profiles", @@ -62769,7 +62769,7 @@ }, "response": [ { - "id": "57a40047-268a-48e2-9c49-9730bf2f98d1", + "id": "37558af4-02e1-4406-bbd3-3db1287dc2d5", "name": "The result of importing Identity Profiles.", "originalRequest": { "url": { @@ -62826,7 +62826,7 @@ "_postman_previewlanguage": "json" }, { - "id": "68fcfcbf-08f8-4d2a-81a5-6990dd589d74", + "id": "d17f684f-34e7-4f60-a6ae-5ff0bbd90c30", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -62883,7 +62883,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1c9db752-f875-48ab-919c-734a6132c38f", + "id": "46fdfe98-6131-4f3a-8327-4ea8ecd834e3", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -62940,7 +62940,7 @@ "_postman_previewlanguage": "json" }, { - "id": "33ac3c8f-bca7-4452-9b5f-230c3403b962", + "id": "a3ac6767-aa09-4778-a030-6508cf6e0dbe", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -62997,7 +62997,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d9cdd499-a21f-48cd-8c91-d5de4aa5f2bf", + "id": "f4972f59-449c-4b1f-9f48-5cf212414275", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -63054,7 +63054,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f68b986a-2f3a-48ce-8f8f-83c7c5a84cf3", + "id": "24b24e48-0693-4161-9f4a-2af11cd1df87", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -63117,7 +63117,7 @@ } }, { - "id": "b119c844-6d9b-4c1b-b792-4ceaf728bece", + "id": "262fc994-f868-4d48-b95e-6adabb6933d5", "name": "Get single Identity Profile", "request": { "name": "Get single Identity Profile", @@ -63158,7 +63158,7 @@ }, "response": [ { - "id": "a7c1fa28-6ba0-445c-89af-94800d6cf1c7", + "id": "7b260a14-5f2b-41ed-a85d-e10c47586110", "name": "An Identity Profile object.", "originalRequest": { "url": { @@ -63202,7 +63202,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1da836e3-11f8-40f6-a161-e72d96deaef1", + "id": "23aee051-1adf-4f78-a8d2-d7b2cd1f552d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -63246,7 +63246,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cee94a82-404a-4e97-a904-55b3d9d19b9c", + "id": "1001a8ac-d110-468a-80cd-abc6a9242565", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -63290,7 +63290,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a7f43a40-fd78-4458-ab73-0e0160647f6f", + "id": "644ad4d3-251f-4c33-9363-27e225679aa0", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -63334,7 +63334,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bc2d6d89-e587-4525-b7e6-f3139395f0a0", + "id": "04f00012-8dcd-4351-a6ab-87809a1658a7", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -63378,7 +63378,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f492fc46-d571-4880-8661-6f3841ab428f", + "id": "1c39d296-b61d-40e8-b594-866b76771e48", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -63422,7 +63422,7 @@ "_postman_previewlanguage": "json" }, { - "id": "920a5c83-b127-485f-9b56-02e39fe7619c", + "id": "5ae08faa-5e4e-40da-a50c-da900d315547", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -63472,7 +63472,7 @@ } }, { - "id": "4b96cd00-f08e-44a7-984e-68965a75be95", + "id": "87c2363a-7fe2-4c2b-8d5f-0b65d364c139", "name": "Delete an Identity Profile", "request": { "name": "Delete an Identity Profile", @@ -63513,7 +63513,7 @@ }, "response": [ { - "id": "f56522a9-146d-45e2-b6a1-54e6720a30ce", + "id": "06f67d6a-d41a-4776-ab3f-2567777b3537", "name": "Accepted - Returns a TaskResult object referencing the bulk delete job created.", "originalRequest": { "url": { @@ -63552,12 +63552,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\": \"1970-12-24T20:24:29.039Z\",\n \"launched\": \"2017-07-18T08:02:09.728Z\",\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\": \"1954-09-30T17:54:12.974Z\",\n \"launched\": \"2023-05-14T17:04:25.330Z\",\n \"completionStatus\": \"Success\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "754e0041-b58f-466d-bf21-33f50462f422", + "id": "eef50d3a-ac7d-445b-9566-1507ae5a3130", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -63601,7 +63601,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cd82ba6f-784a-4eb6-adae-96beca248ff7", + "id": "3d1fc7c0-b32b-4878-be01-a45c90e00092", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -63645,7 +63645,7 @@ "_postman_previewlanguage": "json" }, { - "id": "284db16f-10c8-45b8-b53d-d4e606ac3035", + "id": "f1e6e760-cc9c-4f64-82ea-5a35d343ea4f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -63689,7 +63689,7 @@ "_postman_previewlanguage": "json" }, { - "id": "09225781-97e3-4cbb-93db-8f94b560e4b0", + "id": "5cf23797-9178-46ec-a69d-ee5c74f2f890", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -63733,7 +63733,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2acef362-f9c6-4802-b5b4-a5adca141308", + "id": "cabe0bcc-b7c1-4078-a8a5-67539a6198c6", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -63777,7 +63777,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c35e4994-ce9c-4ad5-93fb-dfe06bfb0b8f", + "id": "4e348862-0d2c-4ed0-bed3-2b3fa939628a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -63827,7 +63827,7 @@ } }, { - "id": "5460fbb0-1160-4bad-90b7-b71ae0781c9a", + "id": "ef651b0e-52d1-417a-b3a3-b566d11d77e2", "name": "Get default Identity Attribute Config", "request": { "name": "Get default Identity Attribute Config", @@ -63869,7 +63869,7 @@ }, "response": [ { - "id": "f4ac2844-8877-4bc8-ad9a-ed501389bc86", + "id": "15b3541d-8e82-4cf6-a027-e1430a756ff2", "name": "An Identity Attribute Config object.", "originalRequest": { "url": { @@ -63914,7 +63914,7 @@ "_postman_previewlanguage": "json" }, { - "id": "60820fd3-6e56-4bab-9ec6-05aabad439f0", + "id": "4d17631e-2405-4761-9c6e-7f8399cd940a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -63959,7 +63959,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0c00f44b-9166-4135-b74a-f7c01b65719c", + "id": "40204bfe-5dae-4c83-a2b8-4b6f1addc0dc", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -64004,7 +64004,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9d88d15d-0047-4919-b9cb-1160a7d3b010", + "id": "3122f48b-b7ee-4f4f-bd5f-9934a77d002e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -64049,7 +64049,7 @@ "_postman_previewlanguage": "json" }, { - "id": "77c3a686-2b14-4e8c-b04a-cae19e7c8724", + "id": "9fc65cd4-84b3-48b0-91f9-d644c914fd3a", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -64094,7 +64094,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a7d97d8a-a635-4825-9092-43105ec4ab3f", + "id": "2c25f5e0-3615-4786-86f0-e6c37105c087", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -64139,7 +64139,7 @@ "_postman_previewlanguage": "json" }, { - "id": "16589a05-0743-43b7-9f7a-54e6c0050d63", + "id": "d157ecb8-e8a8-4652-b39e-3992f720f5f8", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -64190,7 +64190,7 @@ } }, { - "id": "2be6c1b9-94e9-4377-bc9a-213103e442ed", + "id": "882cb734-3c94-47a0-91f2-c12f28c92dea", "name": "Process identities under profile", "request": { "name": "Process identities under profile", @@ -64232,7 +64232,7 @@ }, "response": [ { - "id": "8a67c994-e29e-4354-ac31-50f41efdf05a", + "id": "cdb158c8-4e5f-459d-87cf-225c40250d77", "name": "Accepted status after refresh has launched", "originalRequest": { "url": { @@ -64277,7 +64277,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f36d6815-c3d7-4b64-ba03-d9253bfddc32", + "id": "51714529-9dc0-4dba-b037-a8863a6d9a26", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -64322,7 +64322,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1f909dfe-c873-4748-a38f-ef2da0a3afd2", + "id": "2d33c8fa-28b7-4418-9e77-d94a564022f6", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -64367,7 +64367,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fb5a1cb8-6c24-4f61-86b4-e00fdc13f9b8", + "id": "35b119d6-254e-4410-a308-79af1d702c92", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -64412,7 +64412,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ef21f487-ca4e-4de7-a6d8-9028a7dd1807", + "id": "ccc999ba-3ddf-480d-a177-b77d5747ac3a", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -64457,7 +64457,7 @@ "_postman_previewlanguage": "json" }, { - "id": "adb4c86b-5c6d-45ec-8e2f-7ca9863a0f45", + "id": "8918f6b3-3535-47f1-a483-6d9950d35215", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -64502,7 +64502,7 @@ "_postman_previewlanguage": "json" }, { - "id": "209a490d-94ba-455e-8ec4-46eeb54485a8", + "id": "950bac64-cb39-4adb-880d-9cfacfe6f09b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -64559,7 +64559,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": "cfb5943a-4dca-41c3-afff-1f24baa590b0", + "id": "e55e3df1-221e-40a9-8a00-2b89511a3d89", "name": "Set Lifecycle State", "request": { "name": "Set Lifecycle State", @@ -64614,7 +64614,7 @@ }, "response": [ { - "id": "e8eb2714-6c61-40dd-946e-715e12d7ef2b", + "id": "a9ca470b-ad4d-466f-b160-501ca56d7bd3", "name": "The request was successfully accepted into the system.", "originalRequest": { "url": { @@ -64672,7 +64672,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b5d8b957-ca19-44c2-8e76-d94300c5663b", + "id": "94906a89-eb22-48e9-8aa7-edf7bfbf4bfb", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -64730,7 +64730,7 @@ "_postman_previewlanguage": "json" }, { - "id": "807ee929-d8b5-40eb-9d71-1b4c73c5c292", + "id": "490aa21b-5a31-4857-9a4c-ec4045aee404", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -64788,7 +64788,7 @@ "_postman_previewlanguage": "json" }, { - "id": "65010aa8-ff43-4c59-86cf-63e68633510e", + "id": "0b0332ce-f75d-4bfe-8721-013c6c79b39f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -64846,7 +64846,7 @@ "_postman_previewlanguage": "json" }, { - "id": "057a366c-4583-4601-a71a-cd5d62d87b00", + "id": "ef52fd19-6a31-4d2d-a034-486b1af5eb3b", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -64904,7 +64904,7 @@ "_postman_previewlanguage": "json" }, { - "id": "72e1aed2-a468-4c20-9791-e148bb45bc99", + "id": "51794b08-bab7-42d0-8178-96699c316cb8", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -64962,7 +64962,7 @@ "_postman_previewlanguage": "json" }, { - "id": "86fbb19a-4a76-4245-b3bd-14b8352d1be9", + "id": "25b38faa-60e0-4d53-aad1-62e9fc3a47a0", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -65026,7 +65026,7 @@ } }, { - "id": "ecc53611-e038-47ab-81dd-594677bcec1a", + "id": "bbd87d90-2c33-42da-81a4-0f1586970178", "name": "Lists LifecycleStates", "request": { "name": "Lists LifecycleStates", @@ -65105,7 +65105,7 @@ }, "response": [ { - "id": "f7ecef5e-5e23-4fdd-ab11-387a192a63f4", + "id": "ec415e0f-0478-4432-a819-037df33b3a35", "name": "List of LifecycleState objects.", "originalRequest": { "url": { @@ -65187,7 +65187,7 @@ "_postman_previewlanguage": "json" }, { - "id": "caeffd13-ccb3-47d9-a38e-76f6d7b1636d", + "id": "46bbd29e-a317-482d-919c-5cd8d74508b4", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -65269,7 +65269,7 @@ "_postman_previewlanguage": "json" }, { - "id": "872e5ccd-666b-45b4-82f0-2196cca3c804", + "id": "073c0e19-3bc2-4c40-8fbd-da63558c2dbd", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -65351,7 +65351,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ee765e04-fcff-4f9f-a223-9388f8fe7018", + "id": "b7fbcf54-d25f-4260-8f1e-142b1361c781", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -65433,7 +65433,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c78c4e5d-9bbc-42a6-ac63-2e5f3244bf1a", + "id": "6921bec0-59ea-4237-bd37-72521bd825bd", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -65515,7 +65515,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4b0b79d0-3eba-4813-8414-051f2eba63b3", + "id": "a734e15f-ad99-48b5-9e5a-a273fd46d4e1", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -65603,7 +65603,7 @@ } }, { - "id": "9d8ba6f8-3746-4668-8b42-5a171fa5523b", + "id": "5df0ee33-8d89-4388-bf5d-c158106142f9", "name": "Create Lifecycle State", "request": { "name": "Create Lifecycle State", @@ -65658,7 +65658,7 @@ }, "response": [ { - "id": "1bc51c0d-b388-4046-825d-4135548a9f5a", + "id": "108cd95f-0580-4dcf-8aae-e13a8f235600", "name": "Created LifecycleState object.", "originalRequest": { "url": { @@ -65716,7 +65716,7 @@ "_postman_previewlanguage": "json" }, { - "id": "88d9e631-8f4e-4216-80b8-ece70da75d19", + "id": "74067162-5f83-400b-948f-7e462114b834", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -65774,7 +65774,7 @@ "_postman_previewlanguage": "json" }, { - "id": "77eed308-38f6-4d0d-826d-d4b18348bd27", + "id": "145f8d8a-09f1-48e5-b593-305ed3cd88b1", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -65832,7 +65832,7 @@ "_postman_previewlanguage": "json" }, { - "id": "61fdcfa0-119e-4f9d-851f-37baa9f295a4", + "id": "01571a22-99d3-44d0-92bd-2cc52e91dbdd", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -65890,7 +65890,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3b4e41a1-b258-4cb0-8b71-1dd489ae92c4", + "id": "13e99b68-0719-44df-acab-bb65e355b704", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -65948,7 +65948,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3de20517-560e-4acc-be59-f1508d8cee6a", + "id": "a7907fbb-cc93-4382-b366-bc91d78ca2bf", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -66012,7 +66012,7 @@ } }, { - "id": "201e7220-a8aa-4e20-b07e-56b26b9ca6c4", + "id": "a76e14aa-299d-424b-b5f4-695230debb0e", "name": "Get Lifecycle State", "request": { "name": "Get Lifecycle State", @@ -66065,7 +66065,7 @@ }, "response": [ { - "id": "4bb5fd4c-7c99-4cf1-9b59-db96a5cdb29a", + "id": "7395ce7f-8a78-47f9-a375-a507f399d94a", "name": "The requested LifecycleState was successfully retrieved.", "originalRequest": { "url": { @@ -66111,7 +66111,7 @@ "_postman_previewlanguage": "json" }, { - "id": "47f7017e-86ec-4186-9457-5ff666564437", + "id": "bf3d39c2-93d2-43b4-8bb1-bd597479dd2d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -66157,7 +66157,7 @@ "_postman_previewlanguage": "json" }, { - "id": "538a5895-7412-4770-a31b-aed4f86375eb", + "id": "427ff073-0e0f-46f0-b550-979417c4a2bc", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -66203,7 +66203,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fdd34090-c1f2-4cae-9450-3fd0ff5dedb7", + "id": "3611f289-3266-4137-bb29-0b6c478b879c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -66249,7 +66249,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7de6e714-ddae-4843-8f76-65481ca65352", + "id": "cf351e9d-f38d-40e4-a1c1-b31677f5d4dd", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -66295,7 +66295,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ddb2e469-b4a0-4049-9f71-2592c865ad55", + "id": "1bd90aeb-3a4f-4117-973f-312eedcadc54", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -66341,7 +66341,7 @@ "_postman_previewlanguage": "json" }, { - "id": "583f5af6-af57-45ed-ac91-8c75b8a3e15d", + "id": "43999f45-cfd7-42fd-880a-9fbcac233067", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -66393,7 +66393,7 @@ } }, { - "id": "941d9ae9-f3a3-402f-93ba-be690bd44116", + "id": "81a06c74-d713-4451-a2cf-0367b135e2a9", "name": "Update Lifecycle State", "request": { "name": "Update Lifecycle State", @@ -66459,7 +66459,7 @@ }, "response": [ { - "id": "187ac0f4-31c5-4579-9b7c-e22f318305fe", + "id": "3dd10a48-8a14-4524-b5fd-91dacb1ef9e4", "name": "The LifecycleState was successfully updated.", "originalRequest": { "url": { @@ -66518,7 +66518,7 @@ "_postman_previewlanguage": "json" }, { - "id": "35eafeb3-f072-47c0-bb6d-97516fef2a5a", + "id": "8b627cd4-08e7-4ad4-94b3-8a6968d00b53", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -66577,7 +66577,7 @@ "_postman_previewlanguage": "json" }, { - "id": "32377505-c2ec-4ebb-b312-1c795b51a690", + "id": "0bdc9cd3-cfd6-4806-afb1-178b28d4a7ee", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -66636,7 +66636,7 @@ "_postman_previewlanguage": "json" }, { - "id": "97823348-0ab5-4e97-8e63-863587266281", + "id": "6e51426b-4a7c-4fd1-a29f-cab33b2c0d49", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -66695,7 +66695,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cf07cacf-02ba-40ff-a058-8a1d28560d92", + "id": "367ec207-10f8-45f0-81cc-a9b18320f69e", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -66754,7 +66754,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8e09e832-1047-4f8d-9680-be848cfe1fbd", + "id": "7a8c7083-eefe-476f-97f3-e1be6fb15646", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -66813,7 +66813,7 @@ "_postman_previewlanguage": "json" }, { - "id": "00545dc3-6849-45e4-bbe8-a9ebe171a66a", + "id": "c803d586-e7bd-4bee-a164-5d7583278607", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -66878,7 +66878,7 @@ } }, { - "id": "439526b3-4c9e-4b08-9183-7d1eb0ddfe5d", + "id": "fb27aa77-4510-4cd5-9ff8-20ba83cbb28f", "name": "Delete Lifecycle State", "request": { "name": "Delete Lifecycle State", @@ -66931,7 +66931,7 @@ }, "response": [ { - "id": "b26249a4-2642-4e85-a573-34ca82bfc1ae", + "id": "938aabee-2324-4b2c-8ac7-37aad7bfdc24", "name": "The request was successfully accepted into the system.", "originalRequest": { "url": { @@ -66972,12 +66972,12 @@ "value": "application/json" } ], - "body": "{\n \"type\": \"LIFECYCLE_STATE\",\n \"id\": \"nulla consequat ipsum\",\n \"name\": \"Contractor Lifecycle\"\n}", + "body": "{\n \"type\": \"LIFECYCLE_STATE\",\n \"id\": \"eu cillum\",\n \"name\": \"Contractor Lifecycle\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "7facabd5-0725-4f12-8135-ce78435cea5f", + "id": "e077ada4-8382-428f-9cc8-5e0ea605a59d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -67023,7 +67023,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1231cb01-0966-406d-84de-34ebf15a373b", + "id": "60be6e43-cbae-420b-a85b-2b16c24a0e41", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -67069,7 +67069,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8da7f2a5-846a-4d20-a41e-969bd2faa0d8", + "id": "f38d8352-2933-46a3-b326-2902270090b7", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -67115,7 +67115,7 @@ "_postman_previewlanguage": "json" }, { - "id": "372cfd86-ffa3-4bae-a6b0-3e4202fc691e", + "id": "102bc1be-bb75-4e1a-9654-68713f08da9a", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -67161,7 +67161,7 @@ "_postman_previewlanguage": "json" }, { - "id": "56024f43-bc6c-4d02-8c3a-74e83bda51e4", + "id": "cab06e18-7ba0-4c1c-90ba-1c9f4ca86927", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -67207,7 +67207,7 @@ "_postman_previewlanguage": "json" }, { - "id": "78d068a8-9358-4eaf-b91e-1de09e76528e", + "id": "261f9dc0-6f75-4e4a-ade7-ce48c25de285", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -67265,7 +67265,7 @@ "description": "Read and create operations for client data and statuses", "item": [ { - "id": "ed9fb34a-8e24-4069-9a08-f33ea91c0e88", + "id": "77ccf253-b56f-476b-91e4-cc28b914eea3", "name": "Get Managed Clients", "request": { "name": "Get Managed Clients", @@ -67331,7 +67331,7 @@ }, "response": [ { - "id": "31b06b6a-f043-4aba-9a4a-c6ad3138b9f5", + "id": "88ae2619-fa0d-4a5e-ac64-c4319c1bccdb", "name": "Responds with a list of ManagedClient based on the query params provided", "originalRequest": { "url": { @@ -67406,12 +67406,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 \"ccId\": 2248,\n \"ipAddress\": \"123.456.78.90\",\n \"lastSeen\": \"2020-01-01T00:00:00.000000Z\",\n \"name\": \"aName\",\n \"sinceLastSeen\": \"in laborum velit aliqua mollit\",\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 \"ccId\": 2248,\n \"ipAddress\": \"123.456.78.90\",\n \"lastSeen\": \"2020-01-01T00:00:00.000000Z\",\n \"name\": \"aName\",\n \"sinceLastSeen\": \"Lorem incididunt ut esse\",\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 \"ccId\": 2248,\n \"ipAddress\": \"123.456.78.90\",\n \"lastSeen\": \"2020-01-01T00:00:00.000000Z\",\n \"name\": \"aName\",\n \"sinceLastSeen\": \"enim mollit magna esse\",\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 \"ccId\": 2248,\n \"ipAddress\": \"123.456.78.90\",\n \"lastSeen\": \"2020-01-01T00:00:00.000000Z\",\n \"name\": \"aName\",\n \"sinceLastSeen\": \"qui do velit\",\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": "ca1e3893-f8b7-480f-8761-82fcfa2e9733", + "id": "e8b01f40-b7a4-41d7-8fa2-30c7904c3336", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -67491,7 +67491,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b06fd515-5b04-490a-ae39-16bb0593dcf4", + "id": "77842a92-231b-425a-91c1-c66604a89c36", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -67571,7 +67571,7 @@ "_postman_previewlanguage": "json" }, { - "id": "19768d49-d095-455c-a215-48d480c1f5f8", + "id": "06053b26-0f6b-42f9-b02c-299f358c617a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -67651,7 +67651,7 @@ "_postman_previewlanguage": "json" }, { - "id": "becb800b-fd1c-4b87-93c4-1a7d005601cf", + "id": "fe714756-b561-4628-b8aa-acdd55ca6ad6", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -67731,7 +67731,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a0a5cef5-dc8c-4e06-8dd4-d0a0db266633", + "id": "0074a240-768a-4cc9-b1a3-0d4bbf19caa0", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -67817,7 +67817,7 @@ } }, { - "id": "11fa31b4-f8c7-475e-93dd-66b6a23b5846", + "id": "7862b9e9-81d2-4355-bd75-595eb5291a35", "name": "Create a new Managed Client", "request": { "name": "Create a new Managed Client", @@ -67859,7 +67859,7 @@ }, "response": [ { - "id": "08e77f25-139f-4cee-be65-ff7fdb12e53f", + "id": "6d6c05dd-b841-4b55-bdf8-d2a1afafb161", "name": "The created ManagedClient", "originalRequest": { "url": { @@ -67910,12 +67910,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 \"ccId\": 2248,\n \"ipAddress\": \"123.456.78.90\",\n \"lastSeen\": \"2020-01-01T00:00:00.000000Z\",\n \"name\": \"aName\",\n \"sinceLastSeen\": \"commodo nostrud\",\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 \"ccId\": 2248,\n \"ipAddress\": \"123.456.78.90\",\n \"lastSeen\": \"2020-01-01T00:00:00.000000Z\",\n \"name\": \"aName\",\n \"sinceLastSeen\": \"adipisicing voluptate tempor\",\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": "2b0147fa-58db-4177-87ce-804ed47db090", + "id": "c873aebe-1c77-4216-9896-b7648d62f969", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -67971,7 +67971,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c6409531-ec03-4b10-998e-c7884962ccf3", + "id": "39c2de3f-3eea-4865-abde-1eb5ee848dd0", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -68027,7 +68027,7 @@ "_postman_previewlanguage": "json" }, { - "id": "74089bdc-d995-4bac-b849-22bb36be7fa3", + "id": "13c064cc-9996-49d6-b526-8c2c3c12864e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -68083,7 +68083,7 @@ "_postman_previewlanguage": "json" }, { - "id": "58021a90-d81e-427b-8348-deabdb07288e", + "id": "e4a6b833-a908-4af0-bd1d-14d0a54e6084", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -68139,7 +68139,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f09b8d4d-be5f-4d7f-b126-08b8341e3922", + "id": "3d1bed19-f462-46f9-82e7-3bf890682815", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -68201,7 +68201,7 @@ } }, { - "id": "e8c2ca57-91d5-4978-a0bc-bb9d9e26b774", + "id": "468fc465-e6b7-45ff-96da-e34cc444f9db", "name": "Get a Managed Client", "request": { "name": "Get a Managed Client", @@ -68242,7 +68242,7 @@ }, "response": [ { - "id": "acc74b65-cc5d-4a9d-bb0c-c7f4f974169c", + "id": "4d2e347e-2bea-4fc6-bbd9-217a1b0857ac", "name": "Responds with a Managed Client", "originalRequest": { "url": { @@ -68281,12 +68281,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 \"ccId\": 2248,\n \"ipAddress\": \"123.456.78.90\",\n \"lastSeen\": \"2020-01-01T00:00:00.000000Z\",\n \"name\": \"aName\",\n \"sinceLastSeen\": \"commodo nostrud\",\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 \"ccId\": 2248,\n \"ipAddress\": \"123.456.78.90\",\n \"lastSeen\": \"2020-01-01T00:00:00.000000Z\",\n \"name\": \"aName\",\n \"sinceLastSeen\": \"adipisicing voluptate tempor\",\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": "b248d769-2dec-4e0f-86fa-1cdacfd052be", + "id": "595b0078-4370-45c2-9c6a-20529d7e6c6a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -68330,7 +68330,7 @@ "_postman_previewlanguage": "json" }, { - "id": "65db6bb3-4d70-448d-9d65-f39fcb6a34fa", + "id": "d89b9adf-0e55-4a9c-8a81-d3224b1c875d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -68374,7 +68374,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a09843f2-ada9-4d58-865e-893e06d28a85", + "id": "7c27a814-d17a-4436-8ec0-3e15a11b0352", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -68418,7 +68418,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1ee303d3-56d7-44cc-8987-c2673b8bbbed", + "id": "3c1509c5-48ed-48e5-b741-359e09dd6131", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -68462,7 +68462,7 @@ "_postman_previewlanguage": "json" }, { - "id": "34214897-bc6b-493c-aebe-afe3c3758fbb", + "id": "5c1c94b9-a9a0-48f0-810f-ee2db563c2dc", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -68506,7 +68506,7 @@ "_postman_previewlanguage": "json" }, { - "id": "466422fd-244a-49b1-bd72-173870aeeb2f", + "id": "34804fc1-920d-4d57-922a-0db72b6149e0", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -68556,7 +68556,7 @@ } }, { - "id": "db4c455e-10ef-43d0-b304-b754351ca4d2", + "id": "cfc7c7bc-cbf1-446e-a4a1-7543b72cde44", "name": "Update a Managed Client", "request": { "name": "Update a Managed Client", @@ -68610,7 +68610,7 @@ }, "response": [ { - "id": "42d8f01f-639b-4867-8c27-9a82adad5306", + "id": "230e53db-80d2-4d28-a4a7-c5c40821bf8b", "name": "The updated Managed Client", "originalRequest": { "url": { @@ -68662,12 +68662,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 \"ccId\": 2248,\n \"ipAddress\": \"123.456.78.90\",\n \"lastSeen\": \"2020-01-01T00:00:00.000000Z\",\n \"name\": \"aName\",\n \"sinceLastSeen\": \"commodo nostrud\",\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 \"ccId\": 2248,\n \"ipAddress\": \"123.456.78.90\",\n \"lastSeen\": \"2020-01-01T00:00:00.000000Z\",\n \"name\": \"aName\",\n \"sinceLastSeen\": \"adipisicing voluptate tempor\",\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": "ad696ff0-b3ca-439f-9e4d-d89352fb2598", + "id": "05b5763b-ecda-4cce-b928-4796cb2824ca", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -68724,7 +68724,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1b98cad0-a1de-49e6-b9f2-5849ed91f5fd", + "id": "2747b3ce-38fe-4bef-8be1-6b404f071da2", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -68781,7 +68781,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b0c5ee2a-b639-4791-a3be-be388a3aa980", + "id": "6ad38017-1f03-4313-a52f-326356704170", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -68838,7 +68838,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0c24da4c-00e0-4918-8fb3-5a96d54a2d3c", + "id": "e678728c-e3ed-4c73-b50d-4dc00b36a6e3", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -68895,7 +68895,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6004e843-e6b1-4a9a-a066-29fad58bf11a", + "id": "6ef8b83a-ba0e-4ef2-979e-122478268091", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -68952,7 +68952,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9c041316-f392-48a8-ae34-85ad87bcfe49", + "id": "adc168cc-04eb-4b06-844c-8a65626f4b61", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -69015,7 +69015,7 @@ } }, { - "id": "1d940226-7234-4cca-b9d8-0cb36dc088db", + "id": "7e3aec6f-593d-4a1d-ab33-6dcb1f3de205", "name": "Delete a Managed Client", "request": { "name": "Delete a Managed Client", @@ -69056,7 +69056,7 @@ }, "response": [ { - "id": "76db599b-42fb-4a32-bed1-7fcd42496c93", + "id": "cdbf55e1-b73a-4796-b1e5-73f07fa4785b", "name": "The Managed Client was successfully deleted.", "originalRequest": { "url": { @@ -69090,7 +69090,7 @@ "_postman_previewlanguage": "text" }, { - "id": "fd3fc1a0-10e6-4be0-9dda-a82f93848cfb", + "id": "fa2f6c10-91c1-4a05-9619-1a42025fb164", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -69134,7 +69134,7 @@ "_postman_previewlanguage": "json" }, { - "id": "943bf923-873a-47c0-9d08-0c7f54b46b23", + "id": "bad9fffc-25e6-4765-b1cc-a7ea6a13568d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -69178,7 +69178,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f45bc0a5-f5c1-4c69-99cb-9d6b58a2fab0", + "id": "f1a22d53-f129-4175-97f4-6de1a0bc675e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -69222,7 +69222,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fbe079fc-8c1d-4e16-8640-005f95b08656", + "id": "7c21dd1d-d4e5-416f-8804-e96d08ac1b91", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -69266,7 +69266,7 @@ "_postman_previewlanguage": "json" }, { - "id": "78e8c835-334e-4c8e-9c94-7a84c08806cb", + "id": "f449c905-2579-4450-bf68-3e5258dfbf88", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -69316,7 +69316,7 @@ } }, { - "id": "47905e92-7962-4bed-9c69-68fc786a15e5", + "id": "9bff3df0-6e71-4f82-bf19-f8f8059d0f88", "name": "Get Managed Client Status.", "request": { "name": "Get Managed Client Status.", @@ -69368,7 +69368,7 @@ }, "response": [ { - "id": "e93aeb89-a24c-4f29-9bd5-597cebd24531", + "id": "933c57c8-5e31-465a-94d3-10f65542169e", "name": "Responds with the Status of the Managed Client with the given ID and Type.", "originalRequest": { "url": { @@ -69423,7 +69423,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d7581d9e-bd6a-49e0-86c1-a3ce184f1203", + "id": "4426ec6d-fd3b-4c4c-8828-71239a7c8966", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -69478,7 +69478,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4b5a5aaf-653f-492c-8d71-ab14e0b77ed3", + "id": "c5bace31-43c2-45ca-8331-f537e62d46ff", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -69533,7 +69533,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b8d99aca-bf83-4e10-89b3-1e40e19dddc8", + "id": "4ab9881f-23fa-4ea2-917b-1b485a9ada42", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -69588,7 +69588,7 @@ "_postman_previewlanguage": "json" }, { - "id": "891f5c1d-e6a7-4076-b0c0-c30dd6652a9b", + "id": "e70f94c5-c446-4fde-8b5e-5871a68eebda", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -69643,7 +69643,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a21b9baf-22dc-445b-8f31-8fe30450d032", + "id": "38f642ea-77ed-457d-88d5-3b914f0e80ea", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -69698,7 +69698,7 @@ "_postman_previewlanguage": "json" }, { - "id": "957202d4-e053-4054-be7c-6b2e6c435d45", + "id": "0ebb6fbe-fde1-4a2b-8b40-91d4a4b63c0b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -69765,7 +69765,7 @@ "description": "Read and create pperations for client Clusters, including Log Configuration", "item": [ { - "id": "09a6bb71-f4d7-453b-ab02-c7694f1461db", + "id": "d07d6606-f28b-43fa-bbfe-6c7287827e82", "name": "Retrieve all Managed Clusters.", "request": { "name": "Retrieve all Managed Clusters.", @@ -69831,7 +69831,7 @@ }, "response": [ { - "id": "891d39e0-617d-4d30-9f7a-205392a25210", + "id": "0a63cab3-2cdb-4bd6-baf7-04ad9377116d", "name": "Responds with a list of ManagedCluster.", "originalRequest": { "url": { @@ -69911,7 +69911,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c7ab5393-3101-41ed-a9ea-4eb476ccaf67", + "id": "17e82031-c98d-47bb-9490-0fa67218435d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -69991,7 +69991,7 @@ "_postman_previewlanguage": "json" }, { - "id": "402a72e9-6ee2-4fd1-b98a-4c1f9f221f9c", + "id": "4be4d6ea-762c-4a27-9efa-e7ef15c33244", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -70071,7 +70071,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2f822ffd-a512-4d03-9248-abf7860b5173", + "id": "10652c6a-afec-4ccd-9db0-68ce1e957b6d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -70151,7 +70151,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ba1e1487-6e2f-4c16-9dd0-b00245625bbf", + "id": "13a98a10-b338-494c-91f4-32f9171b30d8", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -70231,7 +70231,7 @@ "_postman_previewlanguage": "json" }, { - "id": "852fcb28-fbca-49af-ab75-75398592e3e6", + "id": "af16204d-a82f-4097-8add-cf0bc1ec5b8f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -70317,7 +70317,7 @@ } }, { - "id": "d84dcb8d-863e-490a-8cb1-7cb89537056d", + "id": "4291dd41-246c-4284-ad2d-5315c1842834", "name": "Create a new Managed Cluster", "request": { "name": "Create a new Managed Cluster", @@ -70359,7 +70359,7 @@ }, "response": [ { - "id": "c5311192-198c-4770-a1b1-5270a97a3c2f", + "id": "8af0d630-7b87-49a4-92ce-da9b69d91629", "name": "The created ManagedClient", "originalRequest": { "url": { @@ -70415,7 +70415,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9f416df0-ff2b-41bc-9379-d34122f3ab37", + "id": "9a82e54e-a6e9-4de6-a2f1-17f900282867", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -70471,7 +70471,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e9bb316a-2afc-49f3-891f-2801b93c4cb8", + "id": "3d407c37-7c7a-43ac-808e-53571ae957e4", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -70527,7 +70527,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bdaa390d-5029-4f1e-97c5-325fbb164b2d", + "id": "dc93de1b-4525-4322-9982-fe5704f09493", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -70583,7 +70583,7 @@ "_postman_previewlanguage": "json" }, { - "id": "522cb7c2-20b0-460d-9769-73159155ad94", + "id": "98ed2786-768d-4677-abd1-cdb98c8948fc", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -70639,7 +70639,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f3fc6c0f-6821-4b65-8ae0-4fa84662c8be", + "id": "a9ba0f61-b37e-4718-828e-e9f69285aefe", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -70701,7 +70701,7 @@ } }, { - "id": "2691ce74-80a1-4e5e-852c-af88d1c6f319", + "id": "421cfff7-29c3-4ded-aac4-da7b6da457bc", "name": "Get a specified Managed Cluster.", "request": { "name": "Get a specified Managed Cluster.", @@ -70742,7 +70742,7 @@ }, "response": [ { - "id": "69f59f16-b36a-4473-9278-68b1a49d4bb0", + "id": "2b736908-653d-4a0c-b720-2148bc8e4317", "name": "Responds with ManagedCluster having the given ID.", "originalRequest": { "url": { @@ -70786,7 +70786,7 @@ "_postman_previewlanguage": "json" }, { - "id": "973bbb05-14cc-4fb9-b8cc-df6963b5c918", + "id": "9118fa01-30cd-4937-bcb0-338aa2aefc9e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -70830,7 +70830,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e1537469-23e3-4562-b2be-9a159ccdaa1e", + "id": "8d7f303a-e18f-4e37-a1f1-5fda88aabd32", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -70874,7 +70874,7 @@ "_postman_previewlanguage": "json" }, { - "id": "516ff510-8d2a-4720-9f1b-5b041caf5658", + "id": "6b49485e-723e-4750-85a5-f3de452c266d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -70918,7 +70918,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8d498dd7-bf8b-4693-a079-960c896317c8", + "id": "4388cfed-2ed3-43c1-8c49-bd487c638c15", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -70962,7 +70962,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9082816c-a2ec-48dd-bf2b-0563a0f54d31", + "id": "93da57b7-0cb6-4937-bfc5-373233871f41", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -71006,7 +71006,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b4f095a1-757a-40c6-a4aa-9026147836c4", + "id": "474b703d-659e-420d-8aad-af1d190ed919", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -71056,7 +71056,7 @@ } }, { - "id": "72102335-8ba9-49e3-90be-a2171f02db91", + "id": "d986e322-0787-4b30-b0e0-04a012b88c97", "name": "Update a Managed Cluster", "request": { "name": "Update a Managed Cluster", @@ -71110,7 +71110,7 @@ }, "response": [ { - "id": "a4add421-a07e-40e7-95d4-762ac347677b", + "id": "22cf2b22-c4be-4859-bf1c-3377ad763fba", "name": "The updated Managed Cluster", "originalRequest": { "url": { @@ -71167,7 +71167,7 @@ "_postman_previewlanguage": "json" }, { - "id": "33ae4703-c1fc-4ca3-8bdc-f57ecda1aae3", + "id": "c6770bfa-ea6d-407d-b1ac-8227bb6ed6cd", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -71224,7 +71224,7 @@ "_postman_previewlanguage": "json" }, { - "id": "990f25da-4c2a-4657-8eaa-ede1261b16d7", + "id": "34665d08-374e-4191-a231-3083df761712", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -71281,7 +71281,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8ec23adc-390a-4b80-b7cf-c295ab9afcec", + "id": "1b4345a9-c7db-4ac1-af02-1a928d807a46", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -71338,7 +71338,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0f4ab034-01d0-49ad-9b08-f42701d68dac", + "id": "b1f76f2e-81bd-478f-8d63-207cbab75204", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -71395,7 +71395,7 @@ "_postman_previewlanguage": "json" }, { - "id": "12a18d6c-d2a5-4f05-b0df-fb5ebb5bc407", + "id": "d9ff56f4-3fc5-40d2-8df2-a668abaa579d", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -71452,7 +71452,7 @@ "_postman_previewlanguage": "json" }, { - "id": "76900480-73e5-45e5-97d5-e731b8ae6bed", + "id": "6b420318-db64-4e2a-9908-77c952ddf105", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -71515,7 +71515,7 @@ } }, { - "id": "bb2c1681-4dd2-4eb6-8679-dd0ec291e5cd", + "id": "38cf202a-a339-4805-87cf-aae6cf9452aa", "name": "Delete a Managed Cluster", "request": { "name": "Delete a Managed Cluster", @@ -71566,7 +71566,7 @@ }, "response": [ { - "id": "2743de49-1dac-40bd-9b06-bff0c1ea1e51", + "id": "766ee0a1-107a-47d1-890b-4677e11e6077", "name": "The Managed Cluster was successfully deleted.", "originalRequest": { "url": { @@ -71610,7 +71610,7 @@ "_postman_previewlanguage": "text" }, { - "id": "680d89a2-f95e-4784-9bf8-7ad390be6a2b", + "id": "3358456f-2483-468a-b0bf-1d644c993bf8", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -71664,7 +71664,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eb46beb7-2616-4245-b4cc-9f6cce352c61", + "id": "abaec7e0-1e24-4de2-90c3-6a4777fe6182", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -71718,7 +71718,7 @@ "_postman_previewlanguage": "json" }, { - "id": "48e4f198-cc9a-405a-a61d-badd1c69b551", + "id": "8224d321-a7f7-4a9b-a998-60b5abca8a1a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -71772,7 +71772,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4901e0f4-8998-4cd0-b44d-fd4b26617d0e", + "id": "1707ccde-379d-4dc9-a8a3-c613cb7f164b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -71826,7 +71826,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fb1329c6-9dbb-41ff-9b1c-9d21c7e5f98e", + "id": "3e55ea27-a1a5-4d08-88ff-ce9869521e8e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -71892,7 +71892,7 @@ "description": "Configure and test multifactor authentication (MFA) methods", "item": [ { - "id": "45ee5cdc-c7ba-4d31-aa59-3ad322fff9f8", + "id": "c88a4ef2-29e5-44c2-87e2-69e0a7ab9d1e", "name": "Configuration of Okta MFA method", "request": { "name": "Configuration of Okta MFA method", @@ -71923,7 +71923,7 @@ }, "response": [ { - "id": "115ab045-0536-425f-af16-2e2e36e69c73", + "id": "95b4e0fd-5f4c-41ce-b1ea-641a00e4a3e8", "name": "The configuration of an Okta MFA method.", "originalRequest": { "url": { @@ -71968,7 +71968,7 @@ "_postman_previewlanguage": "json" }, { - "id": "59564859-9bfc-44a3-8691-151f9a03d8c6", + "id": "dc31a4c2-5282-4e00-91c8-7312a9535d9c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -72013,7 +72013,7 @@ "_postman_previewlanguage": "json" }, { - "id": "facb94b4-4e7c-437b-83ab-eb440efa1840", + "id": "af9ce48d-eded-4b6d-b3c7-6048eb114703", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -72058,7 +72058,7 @@ "_postman_previewlanguage": "json" }, { - "id": "969dc9d7-ed78-4036-98a7-64bed9b29dc5", + "id": "e4f55157-c379-4c1f-b240-c2f22a5ecbc1", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -72103,7 +72103,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ba7efdfa-7733-4da5-8e01-2771063e0460", + "id": "a453cecd-833d-42e0-bd52-855ed15a6bbe", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -72148,7 +72148,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4736bbfd-0c98-4b89-9604-491e9539e1dc", + "id": "7e6664d6-bec0-4fe9-9e75-e6874a0a80e3", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -72199,7 +72199,7 @@ } }, { - "id": "8e770d3f-b7df-492a-b59e-1f3266d2a254", + "id": "a4c77b3f-34b1-40c4-8c25-ecaecebea328", "name": "Set Okta MFA configuration", "request": { "name": "Set Okta MFA configuration", @@ -72243,7 +72243,7 @@ }, "response": [ { - "id": "2e6e4478-69bc-4082-a340-981ba2ec6da8", + "id": "b8d02ef9-0879-4584-978a-b266d012837c", "name": "MFA configuration of an Okta MFA method.", "originalRequest": { "url": { @@ -72301,7 +72301,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2bfa85b6-cabe-493e-b9a4-b28230e0a8c3", + "id": "8b8f92c1-8edd-46b8-b703-ea293789a946", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -72359,7 +72359,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f8299466-6a37-4373-aded-e6d21441eff2", + "id": "ea8671b4-9ec9-49ac-baa5-b97c340c0a10", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -72417,7 +72417,7 @@ "_postman_previewlanguage": "json" }, { - "id": "68fc0416-1916-4542-9255-e4bfac7a8888", + "id": "cde5ac7f-0167-4e8d-a3a6-a8934c53b483", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -72475,7 +72475,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e7c4e117-eeaa-4f98-9711-859e4d4bf6e8", + "id": "295c4c00-3c39-40f2-85f0-c5f054ebed76", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -72533,7 +72533,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0aa62add-948a-4e92-b60d-9daf6b50f86f", + "id": "bc0d4ed2-60ab-4938-8114-d250bd242057", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -72597,7 +72597,7 @@ } }, { - "id": "35f3cb5a-652a-4851-a3c3-862594b28c3e", + "id": "11577f50-5be0-433b-bd67-f112ecc3b1fa", "name": "Configuration of Duo MFA method", "request": { "name": "Configuration of Duo MFA method", @@ -72628,7 +72628,7 @@ }, "response": [ { - "id": "85107a98-a120-4d87-ab00-c8ae4b007d11", + "id": "bfa07404-839b-4ac7-af0e-8b15b1aa53a3", "name": "The configuration of an Duo MFA method.", "originalRequest": { "url": { @@ -72673,7 +72673,7 @@ "_postman_previewlanguage": "json" }, { - "id": "228b6337-cbc9-4495-adec-e71d5c8c65d6", + "id": "3fc76474-0322-4918-9520-d1b4928a0933", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -72718,7 +72718,7 @@ "_postman_previewlanguage": "json" }, { - "id": "41d9df9e-fb28-4706-8c42-7fd75d80534c", + "id": "7c00a2bb-66a4-4b31-afbe-e12b5e15320b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -72763,7 +72763,7 @@ "_postman_previewlanguage": "json" }, { - "id": "468619df-a0f1-4d30-ba5d-080a1815c707", + "id": "60024f28-b0fb-4a3d-ba5f-3005ed23b8b2", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -72808,7 +72808,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1d63ea8a-69c9-457b-a969-62d3e7ef6804", + "id": "8285ebf2-baaa-4dd6-96cd-7b61aac9a3e3", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -72853,7 +72853,7 @@ "_postman_previewlanguage": "json" }, { - "id": "42b22b02-a984-4a81-8063-d99d5a4f7799", + "id": "895f2012-5e14-4542-aa53-b44edc227d29", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -72904,7 +72904,7 @@ } }, { - "id": "dc4533ec-44c7-4d8c-b169-f9b70ce5e318", + "id": "78364e17-6883-4ee0-b4ef-0a76fbef14b4", "name": "Set Duo MFA configuration", "request": { "name": "Set Duo MFA configuration", @@ -72948,7 +72948,7 @@ }, "response": [ { - "id": "71eab441-b482-4afa-a2b8-69f19f40fbe2", + "id": "80a45110-7584-4746-80b0-e2c60afb77fe", "name": "MFA configuration of an Duo MFA method.", "originalRequest": { "url": { @@ -73006,7 +73006,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9b04df6d-01f9-4884-9981-afe21a4e103c", + "id": "fa81e769-21dc-4121-8752-9bae377f51ab", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -73064,7 +73064,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7211072d-f138-41f1-943f-ce917c8e3b89", + "id": "90c2079c-ef36-4953-af11-5e1c22d0a646", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -73122,7 +73122,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9d000520-7b29-4223-83cd-77b45832fa00", + "id": "03af2497-f8a2-4674-affa-fe7885f5eda6", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -73180,7 +73180,7 @@ "_postman_previewlanguage": "json" }, { - "id": "245a4ffd-2031-4553-8627-917347ae677b", + "id": "de707ccb-f75a-4d28-98f0-86b418a5fc62", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -73238,7 +73238,7 @@ "_postman_previewlanguage": "json" }, { - "id": "31aa1ec0-8d61-4a3c-b0eb-d6c0f92f64ee", + "id": "327b78b4-f5fb-4c71-9d9d-12715976a3a7", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -73302,7 +73302,7 @@ } }, { - "id": "0ab39e4e-6e8f-4f33-af81-03e71b692311", + "id": "2f687162-8070-4e37-933c-81d8c5952a86", "name": "Configuration of KBA MFA method", "request": { "name": "Configuration of KBA MFA method", @@ -73343,7 +73343,7 @@ }, "response": [ { - "id": "a791c412-1bb2-4c01-97ff-41fe90eae9b5", + "id": "0be44cb5-1749-4456-a694-415408363f85", "name": "The configuration for KBA MFA method.", "originalRequest": { "url": { @@ -73398,7 +73398,7 @@ "_postman_previewlanguage": "json" }, { - "id": "676859cc-8760-4871-a85b-65f427abdfc8", + "id": "1a784419-c66c-4d4a-9110-127102afb978", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -73453,7 +73453,7 @@ "_postman_previewlanguage": "json" }, { - "id": "91b61e16-89a3-40b1-bafd-97af02c9ee15", + "id": "70d31809-8156-42fc-a5f3-f0c8c3397fa8", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -73508,7 +73508,7 @@ "_postman_previewlanguage": "json" }, { - "id": "03eec78c-5502-4d65-b404-28b2355a7d20", + "id": "b5ac1341-17a5-4752-bae5-4f1eeb9fc416", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -73563,7 +73563,7 @@ "_postman_previewlanguage": "json" }, { - "id": "09dd268e-454c-4fed-afae-331b8fa3d004", + "id": "c721b5ad-257a-4223-9e4f-3c1e884cf9e1", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -73618,7 +73618,7 @@ "_postman_previewlanguage": "json" }, { - "id": "92ff645e-bf2b-4223-8bcc-9b0ba37411fd", + "id": "da584b68-599c-41ea-bd80-9b6d6827215c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -73679,7 +73679,7 @@ } }, { - "id": "6017bb48-7a7f-4c46-ad2c-e959c31d5607", + "id": "8fd42e04-ded4-44ab-8868-d256f639e913", "name": "Set MFA KBA configuration", "request": { "name": "Set MFA KBA configuration", @@ -73724,7 +73724,7 @@ }, "response": [ { - "id": "d35de13e-2972-4c4c-b476-aeb4c52adb92", + "id": "3b00e9b9-e5b7-449f-8b31-365010277b4a", "name": "The new KBA configuration for the user.", "originalRequest": { "url": { @@ -73783,7 +73783,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b1f5fd82-6495-4888-9108-be74ddfebe51", + "id": "a24cb039-06b9-497c-b183-d7838563e20a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -73842,7 +73842,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d6e398db-e14d-4f04-8122-1022e575b544", + "id": "4fee1280-7e31-4e82-9288-585b52b9377a", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -73901,7 +73901,7 @@ "_postman_previewlanguage": "json" }, { - "id": "504f987b-d2d8-4902-a0f4-856298f83f7d", + "id": "9fe1853f-c00f-42da-b4e5-8c6763e20620", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -73960,7 +73960,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f97c3c49-8ef0-4373-a7bf-b22b01b24519", + "id": "ce15c9b2-c489-4a38-adb7-94f38b623469", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -74019,7 +74019,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0e77ef40-3d86-4bae-ba37-fe6fb8092bfc", + "id": "dd260dbe-755d-43a2-b6cb-844da8c4cd41", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -74084,7 +74084,7 @@ } }, { - "id": "a15e6fd9-9da4-4d70-9f7b-f11f1588d240", + "id": "6380479d-637b-43e0-a845-7432dd6c16b9", "name": "MFA method's test configuration", "request": { "name": "MFA method's test configuration", @@ -74126,7 +74126,7 @@ }, "response": [ { - "id": "5902d5f4-5b1d-40c2-b43b-4ae69c7ab8c6", + "id": "290023dd-36c1-4db5-abeb-b1bb0479433c", "name": "The result of configuration test for the MFA provider.", "originalRequest": { "url": { @@ -74171,7 +74171,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2b0e27ad-1e92-43d3-b86a-17ba0a50ba4f", + "id": "420185f4-d432-4aa9-89a3-6a5158564437", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -74216,7 +74216,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2cc02438-9d00-4068-b240-bdf6efd28f45", + "id": "d804cf20-0901-42a7-87f1-c9e28bce600f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -74261,7 +74261,7 @@ "_postman_previewlanguage": "json" }, { - "id": "46dba0ab-af19-4f9d-9afa-68dd05c6351f", + "id": "1cb96c53-01f6-41f2-847f-944d674a20f5", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -74306,7 +74306,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e8c88d30-e3bb-442b-8687-51767c0a4752", + "id": "28263a50-d8a2-425f-bcea-18fc21b7ae53", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -74351,7 +74351,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8542ddb2-9bbf-4a02-89a0-0aee741c6982", + "id": "29b7c07b-6ff4-430a-aa5c-a43762a025c9", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -74402,7 +74402,7 @@ } }, { - "id": "b6dfea50-141f-484b-b556-b1864a775a24", + "id": "a05c7704-63c4-4579-a725-c9a846784d37", "name": "Delete MFA method configuration", "request": { "name": "Delete MFA method configuration", @@ -74444,7 +74444,7 @@ }, "response": [ { - "id": "ac4b852f-dcaf-44f3-ad0f-7405d8637419", + "id": "845b09d7-db28-40e8-8619-2e55c4f5f5cb", "name": "MFA configuration of an MFA method.", "originalRequest": { "url": { @@ -74489,7 +74489,7 @@ "_postman_previewlanguage": "json" }, { - "id": "073f6752-7314-4404-b9a7-0673adbe8aef", + "id": "09cd7b2e-e176-4002-8ca8-6ea498c11fd0", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -74534,7 +74534,7 @@ "_postman_previewlanguage": "json" }, { - "id": "893fbd85-adef-4ee4-bcfb-fd77a121e02b", + "id": "a2c8bad8-9303-4139-8619-d2dfe49e9aa0", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -74579,7 +74579,7 @@ "_postman_previewlanguage": "json" }, { - "id": "35abca48-0040-49f2-8450-2d53978015cf", + "id": "9fe7bfdd-ad9f-4ea1-adc4-c8cf034e20b0", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -74624,7 +74624,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7b61921f-b86b-4be1-9577-61681801b441", + "id": "5b93bc02-5761-4cb4-8850-ec66128a2b8f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -74669,7 +74669,7 @@ "_postman_previewlanguage": "json" }, { - "id": "61ea7d8e-97e0-4fc2-acc3-d7a9ed3236a6", + "id": "86d09318-bde4-4f98-bacf-8ad6d09d2108", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -74726,7 +74726,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": "7f06d368-c94a-4c9a-ac3e-f51a94f45368", + "id": "52c5eee5-1fd4-432f-a399-da01deca5043", "name": "Verifying authentication via Okta method", "request": { "name": "Verifying authentication via Okta method", @@ -74770,7 +74770,7 @@ }, "response": [ { - "id": "d8f357d5-f23b-4932-923c-ffeeecd33c36", + "id": "c3795f8c-90fb-41a2-957a-f4e5c5e7f642", "name": "The status of verification request.", "originalRequest": { "url": { @@ -74828,7 +74828,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b1920005-ab80-4a44-93e3-9224bcba6625", + "id": "2841bb61-25ce-403e-8abc-ddc68dedc0cf", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -74886,7 +74886,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0a56c337-8077-4ee0-9997-dadca2d8d5dd", + "id": "d3819b8d-d40c-4cf6-960a-67822ec6ad04", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -74944,7 +74944,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7f12468b-7e0f-4104-ade0-30d1ce44b504", + "id": "d2f4013e-77c2-4826-a7c9-b4d3398704ab", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -75002,7 +75002,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a91e5acf-4a21-4fe1-9375-db76d68adc98", + "id": "86f75d8e-8e20-49de-908a-a5b7c4524318", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -75060,7 +75060,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8aaea873-59e4-465e-a713-806e6f7c9504", + "id": "e5b8a5f9-d2df-48c6-8d03-6de4961f2257", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -75124,7 +75124,7 @@ } }, { - "id": "8a80c9d2-296e-4c59-b8a9-e03ebe16e3c1", + "id": "14449567-6b5a-4bc7-8804-d48f8dcd17d0", "name": "Verifying authentication via Duo method", "request": { "name": "Verifying authentication via Duo method", @@ -75168,7 +75168,7 @@ }, "response": [ { - "id": "47ea6fae-8dd2-44f0-a8be-ac16612bf835", + "id": "61cbcbaf-2576-460b-97fa-6fc02850aaa8", "name": "The status of verification request.", "originalRequest": { "url": { @@ -75226,7 +75226,7 @@ "_postman_previewlanguage": "json" }, { - "id": "deb7ecd2-0f5a-46fa-aff3-7cbb68cb6bde", + "id": "4bdb02d9-75c2-4fe0-8afd-e66904f62425", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -75284,7 +75284,7 @@ "_postman_previewlanguage": "json" }, { - "id": "07c20be7-51a5-4972-800d-38ac942b3718", + "id": "9b211916-84fa-4bcf-bbd5-563cf5f87471", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -75342,7 +75342,7 @@ "_postman_previewlanguage": "json" }, { - "id": "98e0af0c-a330-40c4-bbd0-fcf488a7c92c", + "id": "cc7b3d40-2014-4964-9d6e-afb7a11e2476", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -75400,7 +75400,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e15dcdf8-6d8c-41f7-b50b-415f7e438d78", + "id": "3b471575-4a4d-4409-be10-a22a2ccb552f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -75458,7 +75458,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6da2d245-3ba9-44b9-a1d4-95973237d417", + "id": "9968281b-f265-4213-b6a2-ec1215a9504b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -75522,7 +75522,7 @@ } }, { - "id": "8dea6c1c-1e67-499f-8688-3cc8c4e45952", + "id": "8d156706-5ea5-4e1b-bdff-12f6f5589a19", "name": "Polling MFA method by VerificationPollRequest", "request": { "name": "Polling MFA method by VerificationPollRequest", @@ -75577,7 +75577,7 @@ }, "response": [ { - "id": "14405058-dbbd-476f-97c1-55e1c0e6c414", + "id": "48484170-1f3f-4f21-8831-641157ef777b", "name": "MFA VerificationPollRequest status an MFA method.", "originalRequest": { "url": { @@ -75635,7 +75635,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d4f48835-c891-4527-ba2b-aeddccdf6d26", + "id": "a8ec94cd-306a-42c2-b0a7-652ec67fa0f9", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -75693,7 +75693,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2c1be751-7225-4df7-bac3-d04a56a545cd", + "id": "4d01518a-6d38-4486-ac89-6fa7175aa000", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -75751,7 +75751,7 @@ "_postman_previewlanguage": "json" }, { - "id": "00f823d6-6e24-439c-9e03-6a925cc76390", + "id": "fc8cc53d-82c5-496a-9561-a5af6927eb93", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -75809,7 +75809,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7014abc0-12cd-415b-9cc5-7cee0ce1c23d", + "id": "53b55e8b-806f-4224-acd3-af5eb76b44f9", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -75867,7 +75867,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e54732c1-b122-4749-9571-92aec8aa380a", + "id": "7ae07dfe-739c-48d3-b3c4-5d0440077662", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -75931,7 +75931,7 @@ } }, { - "id": "324a2fb4-3e9e-4ea9-b092-3ca6099eb960", + "id": "7443230a-dd90-46d6-9bb1-87e683b99620", "name": "Authenticate KBA provided MFA method", "request": { "name": "Authenticate KBA provided MFA method", @@ -75975,7 +75975,7 @@ }, "response": [ { - "id": "ed8049ad-d7e6-4553-8bd9-1fb1d64aee30", + "id": "d37f0db9-6a8d-47d9-87b4-9eb869a01268", "name": "KBA authenticated status.", "originalRequest": { "url": { @@ -76033,7 +76033,7 @@ "_postman_previewlanguage": "json" }, { - "id": "69b2f208-c734-406b-bda2-e69d118ecaf0", + "id": "86e18941-bde1-4f46-83d6-d49d3355a87b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -76091,7 +76091,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9f527006-fad7-483a-8a3a-ed88d200b20a", + "id": "3c783d57-3863-4e26-87d6-02cc0a8c1660", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -76149,7 +76149,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7fe6b0fc-ce8c-42d0-b795-c2a709ce89f7", + "id": "d03f9565-dc11-40d4-a820-81441c39f403", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -76207,7 +76207,7 @@ "_postman_previewlanguage": "json" }, { - "id": "25a4558a-f099-4ad3-b153-d98e613ce683", + "id": "f179dbd8-0bf3-4f40-bb26-956e2fb749d3", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -76265,7 +76265,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c35d2cb1-5a86-415a-87a1-e32b0f577e17", + "id": "0c7250da-48ba-401e-86a3-f3679637e3f8", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -76329,7 +76329,7 @@ } }, { - "id": "156d7dbe-7be9-4623-84fb-628de3efd546", + "id": "3cbc57c6-ebf7-46b7-b324-0255d694d4fa", "name": "Authenticate Token provided MFA method", "request": { "name": "Authenticate Token provided MFA method", @@ -76373,7 +76373,7 @@ }, "response": [ { - "id": "514a138d-bb29-4a3a-ba64-0b9e20f45706", + "id": "f0d2d1a7-c63d-46a7-a4eb-d60469ba2243", "name": "Token authenticated status.", "originalRequest": { "url": { @@ -76431,7 +76431,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bb4c3de8-9c33-40a3-8781-f000c91b2b0d", + "id": "537aea1a-e01a-46e9-ba81-4c5220ffbc99", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -76489,7 +76489,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b571fde5-dedf-40ff-ba37-04ed886cd1ba", + "id": "3d5debde-cbb5-49f2-9085-b189040f1404", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -76547,7 +76547,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f6782560-fbcc-4f6c-b353-e0a31103f9ba", + "id": "39a7a25b-611f-413e-babd-4ce0002dc2fe", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -76605,7 +76605,7 @@ "_postman_previewlanguage": "json" }, { - "id": "399dd0c3-680d-4f20-a2e2-b59a6a4d2d0d", + "id": "412147bd-6be7-4730-a80f-6830db4245e9", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -76663,7 +76663,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4ff1cf7b-03b1-4c3c-a30e-712dd5900627", + "id": "679a1181-7fa1-42e0-bab8-4ae7bce302a0", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -76727,7 +76727,7 @@ } }, { - "id": "cab565a3-57c2-4124-9246-6a35572a1844", + "id": "4e0a0fa6-51fa-49b3-b32c-af457c060182", "name": "Create and send user token", "request": { "name": "Create and send user token", @@ -76771,7 +76771,7 @@ }, "response": [ { - "id": "dbdaba39-b2ba-4ad8-a396-54dfe0df5941", + "id": "d8c1ecd0-a8ee-46fe-8946-40a87fc6ad61", "name": "Token send status.", "originalRequest": { "url": { @@ -76829,7 +76829,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d78fc557-a90c-4254-84fe-5d7a8c3b75a1", + "id": "63ee0bf0-f655-45d0-abfc-465bfc6c2877", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -76887,7 +76887,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e79f369d-32b0-471e-a07f-222cf5f958ac", + "id": "96977692-dd76-44a7-a314-4e1847de8ecd", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -76945,7 +76945,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0f0f4903-ff95-4727-9384-6a13dd0accef", + "id": "20d3e93e-6092-4bd6-b07b-4a4f658f8ad2", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -77003,7 +77003,7 @@ "_postman_previewlanguage": "json" }, { - "id": "639367c9-dd2a-4919-949e-ea21c6375e86", + "id": "4457a468-e551-412e-8355-5643b23c96a8", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -77061,7 +77061,7 @@ "_postman_previewlanguage": "json" }, { - "id": "728ccc4b-3a36-4855-b41c-55c2a2354b34", + "id": "af697e6c-d112-440c-aa5f-954035776586", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -77131,7 +77131,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": "6b33bca1-a5b4-4968-9f41-e19a34fa6a13", + "id": "d41cc805-59f9-4524-bdfe-31a21d8287d7", "name": "Create Non-Employee Record", "request": { "name": "Create Non-Employee Record", @@ -77173,7 +77173,7 @@ }, "response": [ { - "id": "be00d1e3-e199-43a2-945e-f5eea457662c", + "id": "4a9671fc-a1a0-426b-a114-02d27a060e1f", "name": "Created non-employee record.", "originalRequest": { "url": { @@ -77229,7 +77229,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3640ac5d-09bb-47b4-827d-b3431507817a", + "id": "ce3825a8-e547-4a88-8bbe-84a0c8db20e9", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -77285,7 +77285,7 @@ "_postman_previewlanguage": "json" }, { - "id": "15e0f38b-aa10-4256-85a4-221b68776ec6", + "id": "ce405fa6-88d9-441d-b07d-1c649b2df1c8", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -77341,7 +77341,7 @@ "_postman_previewlanguage": "json" }, { - "id": "12f2eec8-f5fe-4fb4-b5c0-e3f1915fa177", + "id": "84d3f2f4-7a16-460e-b90d-140933e8bd75", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -77397,7 +77397,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e5805fff-cc35-411b-a5f2-e7fe1c187392", + "id": "a6c0e26a-8954-45d8-94d4-567255885a5c", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -77453,7 +77453,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4e0c7ae5-e33f-4f14-af04-3de5627d1fef", + "id": "202e3cfd-eb50-4030-aab2-7a1bf3457d37", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -77515,7 +77515,7 @@ } }, { - "id": "7464f456-47b8-41e2-a38a-2895007546ce", + "id": "e71763c2-9433-4012-aaae-9f192cedb101", "name": "List Non-Employee Records", "request": { "name": "List Non-Employee Records", @@ -77590,7 +77590,7 @@ }, "response": [ { - "id": "0779a880-0d56-4aac-b2f5-95b4c1295505", + "id": "50365028-01f4-414c-9dc4-9700a20e4099", "name": "Non-Employee record objects", "originalRequest": { "url": { @@ -77679,7 +77679,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3decc6bb-3839-400a-8947-3984d600e9d3", + "id": "f6e4dbfe-40ca-4ed7-879b-29d11f747cbc", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -77768,7 +77768,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ade299ae-5487-4a84-839a-d21c185bd093", + "id": "e8b1013d-3bb2-4094-8392-a5531856fd19", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -77857,7 +77857,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cb30cf83-5516-44e0-8f4a-0cccf908af52", + "id": "bcdea55b-7778-4437-b9a7-d3a26a64d8a8", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -77946,7 +77946,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a83e5cdd-eba9-4618-8a8b-89a064fb5b65", + "id": "71de6027-4b73-4de1-ad0d-3ac7bff5393b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -78035,7 +78035,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f5bc45f6-e5b8-4905-a78b-cd54dc68f7c6", + "id": "374fc9a0-27d2-42d0-aacc-b14915661bfb", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -78130,7 +78130,7 @@ } }, { - "id": "07864a56-0aa6-4b54-bdea-ca3b495f16ff", + "id": "90ba7957-3ee2-4397-928d-388650fc87d2", "name": "Get a Non-Employee Record", "request": { "name": "Get a Non-Employee Record", @@ -78171,7 +78171,7 @@ }, "response": [ { - "id": "2e84c990-0a0f-42e1-aa90-464c4eebd0ff", + "id": "e950b4a6-b37c-4fc7-86ff-7c72d1073dcf", "name": "Non-Employee record object", "originalRequest": { "url": { @@ -78215,7 +78215,7 @@ "_postman_previewlanguage": "json" }, { - "id": "51ff7329-d6d9-4832-9103-a36a33f6f66f", + "id": "1dee27e9-a15d-4788-9f08-f4209a24cabd", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -78259,7 +78259,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c1def23b-a1fa-4a40-b8ba-7fbc40e82cff", + "id": "f7bcaabd-c350-4657-a491-393ed91e0243", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -78303,7 +78303,7 @@ "_postman_previewlanguage": "json" }, { - "id": "94567fb2-28f8-4cf2-a426-5d4dd5147175", + "id": "23f51e33-3d59-4d5e-a53c-6f06c221f14f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -78347,7 +78347,7 @@ "_postman_previewlanguage": "json" }, { - "id": "de18766a-4df2-491f-a521-f1424f5c1cbb", + "id": "0c072184-0e27-415d-971f-c97bb8db2ea9", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -78391,7 +78391,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f5217fc5-47d5-4b20-a6f1-8370212a1bf7", + "id": "ef459a53-a773-46a7-a002-7f685dae3c98", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -78441,7 +78441,7 @@ } }, { - "id": "9d4786ea-10b6-4753-b3db-e37224f5123c", + "id": "df7146e1-39cc-408e-8152-c9d3fb4597fb", "name": "Update Non-Employee Record", "request": { "name": "Update Non-Employee Record", @@ -78495,7 +78495,7 @@ }, "response": [ { - "id": "828749d3-e7c3-4eca-8bbb-37a6cda4e1fa", + "id": "cb52d8e9-29b1-4fcf-bab8-4292cd29fdcb", "name": "An updated non-employee record.", "originalRequest": { "url": { @@ -78552,7 +78552,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5622a1f2-5013-4dd8-96e3-835768f327f8", + "id": "fc88690b-dbda-47fc-acdb-1dcbb15b6b1f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -78609,7 +78609,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dc23791a-0ed0-45b2-9c0d-e36272e8bf6d", + "id": "9b7a7687-b8af-4554-a6c4-9235ccd58de5", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -78666,7 +78666,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3245b02b-5037-4d3e-8074-feee03bfe1ec", + "id": "69b69f46-fec3-490a-a33c-6865a7479bac", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -78723,7 +78723,7 @@ "_postman_previewlanguage": "json" }, { - "id": "38c05f76-aeb4-4524-8b41-a72f6c8823d1", + "id": "88fc0698-1f6a-4aa1-a735-cd959454bda9", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -78780,7 +78780,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f7d10988-2502-4b59-b0d9-f023aebf89b4", + "id": "b197fde1-61f6-4f85-8a87-e65305f37ad9", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -78837,7 +78837,7 @@ "_postman_previewlanguage": "json" }, { - "id": "10262901-1847-4f6f-aaef-d55062f7382e", + "id": "cbfd1d30-c1fb-43d2-a5da-2ed163b69445", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -78900,7 +78900,7 @@ } }, { - "id": "226254cf-218a-4ab7-b4dc-fad4f1718e30", + "id": "0cff0cf6-ea88-4298-b687-f18f48776b00", "name": "Patch Non-Employee Record", "request": { "name": "Patch Non-Employee Record", @@ -78954,7 +78954,7 @@ }, "response": [ { - "id": "8d14cf27-d35a-43c8-82c2-cb1af52d8f34", + "id": "5c59de21-edbb-4674-a0e2-d8041d4f264f", "name": "A patched non-employee record.", "originalRequest": { "url": { @@ -79011,7 +79011,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7966c5ed-610c-49bb-9758-60ee716cd6f4", + "id": "69ef24b1-f180-4f8c-b754-1e75ef1b57cd", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -79068,7 +79068,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4812cd33-9136-4608-9dac-790b947a2086", + "id": "ff085c67-67c9-4207-bccc-9b97b7efdf10", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -79125,7 +79125,7 @@ "_postman_previewlanguage": "json" }, { - "id": "aa36d975-2e52-44a2-8718-b9327a14d33c", + "id": "9c60dab3-6143-49cf-9099-0fb575800ca0", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -79182,7 +79182,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3890e4fc-63b4-4109-b580-d4a44369e299", + "id": "59ad6061-6177-474d-88b2-b2e385173e5c", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -79239,7 +79239,7 @@ "_postman_previewlanguage": "json" }, { - "id": "efac885d-184a-4615-8407-0f25c243a1b9", + "id": "fa701198-f73e-4640-b2c7-f522b2a0f2e1", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -79296,7 +79296,7 @@ "_postman_previewlanguage": "json" }, { - "id": "26cd90e2-e294-4a80-a7d4-8df81187db08", + "id": "92141e06-cf90-4c9d-a248-4a204fb1dee2", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -79359,7 +79359,7 @@ } }, { - "id": "400de6b9-8f75-4be7-b8ad-dba367bbf8e5", + "id": "c714e56e-4169-4c1d-a195-db02e0c649ad", "name": "Delete Non-Employee Record", "request": { "name": "Delete Non-Employee Record", @@ -79400,7 +79400,7 @@ }, "response": [ { - "id": "1047dc4c-c6dc-49d2-aaec-d86e89f5b929", + "id": "f38d937b-0d92-41da-8ab7-6130aff1dc34", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -79434,7 +79434,7 @@ "_postman_previewlanguage": "text" }, { - "id": "60eda0db-32b3-4715-a01e-b70ae5321d63", + "id": "b091fe94-faf7-45b6-84e6-40d95cc81406", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -79478,7 +79478,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5845270c-020e-43a5-8c8d-04209c8f3707", + "id": "cce0a0f2-100c-4ee5-83ae-8d03d889a32f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -79522,7 +79522,7 @@ "_postman_previewlanguage": "json" }, { - "id": "26e333fc-e64f-4262-90ea-514c238890fa", + "id": "f3582165-a689-4938-8688-37d64b22026e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -79566,7 +79566,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d9982a35-2a6d-4d1e-9c7f-1f752a846604", + "id": "ce111ba6-5914-4a8a-a42b-a67cc6ac53ba", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -79610,7 +79610,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0a43ca05-7b86-4149-a1bd-d27388987210", + "id": "378f5a04-8cb4-48b6-be91-bc34719f0134", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -79660,7 +79660,7 @@ } }, { - "id": "ff0583ac-358d-41b7-9907-5afc5b3ef2d9", + "id": "555339c4-f3f7-49ca-8a98-16f73c94703f", "name": "Delete Multiple Non-Employee Records", "request": { "name": "Delete Multiple Non-Employee Records", @@ -79703,7 +79703,7 @@ }, "response": [ { - "id": "a6a357e1-f936-48e0-b954-9c4f0b9aa068", + "id": "e966fcc7-2d57-4bde-80b3-da6bec3906c3", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -79750,7 +79750,7 @@ "_postman_previewlanguage": "text" }, { - "id": "ed8371a2-3273-4ec0-a4fc-e088b93c110a", + "id": "e0100249-d798-4f31-962c-84a3102c1de9", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -79807,7 +79807,7 @@ "_postman_previewlanguage": "json" }, { - "id": "db23218e-bf85-43ea-bc08-e79765eb27fc", + "id": "e561c8d2-a585-4fc3-9fa0-7fb3a2b0021e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -79864,7 +79864,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fea58843-d9bf-4d4e-8a0a-019fc0fe6617", + "id": "bcc4e1b7-0da2-46ec-a96e-adaf409871dc", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -79921,7 +79921,7 @@ "_postman_previewlanguage": "json" }, { - "id": "442934f8-83f1-4055-a964-2cff7b46b61d", + "id": "2e162a3a-9bae-4daf-861b-1e844d79bb1a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -79978,7 +79978,7 @@ "_postman_previewlanguage": "json" }, { - "id": "af99e333-f42d-4a3b-9dec-78bbdf7d0703", + "id": "47a22d5b-2a80-4af8-a69d-7afd7c5b5a63", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -80041,7 +80041,7 @@ } }, { - "id": "c9bcf3d2-2f4d-4c14-ab0a-7fd493c373a4", + "id": "09b1e115-7b22-405f-ac50-f149ab8fd4e2", "name": "Create Non-Employee Request", "request": { "name": "Create Non-Employee Request", @@ -80083,7 +80083,7 @@ }, "response": [ { - "id": "58e77fa2-2e74-4931-bd6a-4cdca8f6ca2e", + "id": "51721585-ae45-47d3-ad08-20eedf257f6e", "name": "Non-Employee request creation object", "originalRequest": { "url": { @@ -80139,7 +80139,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3f560636-fe3e-4a03-ade2-cb4ae689fa33", + "id": "b9477da3-d8d0-4d46-8150-d129647dfc43", "name": "400.1 Bad Request Content", "originalRequest": { "url": { @@ -80195,7 +80195,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9acc4d35-ff2e-40b2-a9e6-af9e012989f2", + "id": "9a655ab4-0860-4958-bc29-ee94771a7c99", "name": "400.1.409 Reference conflict", "originalRequest": { "url": { @@ -80251,7 +80251,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fe5bda7d-39d8-4a51-b528-9dd748a185e7", + "id": "a3952064-6781-4da5-b650-bdf372897fab", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -80307,7 +80307,7 @@ "_postman_previewlanguage": "json" }, { - "id": "992cf367-cf1e-4193-9291-e6f93aac055c", + "id": "16146d13-75d5-4622-a407-2a7d59445e76", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -80363,7 +80363,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2d3f6d45-5aa6-4767-9354-636f8a565386", + "id": "d71b3c2d-4893-4679-a7c0-b8d7cbc8be3e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -80419,7 +80419,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a135f65a-4898-4777-9721-06631548b0ed", + "id": "1ea5c697-44aa-4cef-b596-82dcbcdc5d42", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -80481,7 +80481,7 @@ } }, { - "id": "7e1762cf-2a2c-4b75-aeed-64aeef2bd220", + "id": "2a7dc2a9-fbb7-4ab6-9113-969dd16df425", "name": "List Non-Employee Requests", "request": { "name": "List Non-Employee Requests", @@ -80565,7 +80565,7 @@ }, "response": [ { - "id": "1946a4da-69e5-413d-823a-32cf457d72ff", + "id": "314c9f32-2e6f-4e29-9413-101c06fd025f", "name": "List of non-employee request objects.", "originalRequest": { "url": { @@ -80663,7 +80663,7 @@ "_postman_previewlanguage": "json" }, { - "id": "103e5808-70fa-48b2-9620-4155ad44a2c2", + "id": "77d2330a-275b-479e-af2d-e5d58a7ef4dd", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -80761,7 +80761,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5ccda53b-d050-4095-bf19-f453b6366720", + "id": "40a6298b-63de-4908-ad58-16bb97e6084d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -80859,7 +80859,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0a9794a2-2000-4e3f-8194-0c7786c9e1c7", + "id": "54b48e79-4544-4f56-9abe-fd5f0d4679b1", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -80957,7 +80957,7 @@ "_postman_previewlanguage": "json" }, { - "id": "31c408cd-ce1d-410b-93d5-0757703c5e43", + "id": "a685a705-b907-4ec5-b512-627a4a2f0583", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -81055,7 +81055,7 @@ "_postman_previewlanguage": "json" }, { - "id": "75e9a914-f8cb-48c8-95e7-d4a6967d6b51", + "id": "7e2437d5-3055-4993-ab70-249641f9b49f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -81159,7 +81159,7 @@ } }, { - "id": "8ace6b64-d4f8-4738-a4a5-f4691d5bbe36", + "id": "31efdd71-89d7-4413-83aa-694dd9c13746", "name": "Get a Non-Employee Request", "request": { "name": "Get a Non-Employee Request", @@ -81200,7 +81200,7 @@ }, "response": [ { - "id": "492652c2-07ed-444f-978d-49d8e9b439e2", + "id": "1eecaa7f-eac5-4598-9273-d64c9dc95897", "name": "Non-Employee request object.", "originalRequest": { "url": { @@ -81244,7 +81244,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a782df76-e7d3-4d41-ae71-18cac8684eaa", + "id": "f47ce286-b926-4231-97c3-49ba71bff49b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -81288,7 +81288,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c03fdf13-2d72-40f1-b8e8-5707257e0d12", + "id": "45cd6042-32df-4ce5-8ba2-3c6a8c470adb", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -81332,7 +81332,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8ffb9604-29fe-4f2f-997e-b2e724613a3e", + "id": "327698f5-4c77-4510-a049-618a104fe533", "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": "af34ade8-e853-4a6d-ba56-6161f9959597", + "id": "30e4151e-ea29-4e4f-a18e-8602b3d8985e", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -81420,7 +81420,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5af4e600-9baa-4d07-9aac-26cb06086561", + "id": "1ee287cf-5d06-4862-a8b5-455904656338", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -81464,7 +81464,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9e754a32-10dc-4c8b-b7d8-bf925e99284f", + "id": "b3e302c3-dce3-4741-a760-b9377075835f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -81514,7 +81514,7 @@ } }, { - "id": "faba53be-c619-4d70-91a6-274e8ba6cd2b", + "id": "d6b76ab0-43f9-48fe-aa82-fbffb2acf4c6", "name": "Delete Non-Employee Request", "request": { "name": "Delete Non-Employee Request", @@ -81555,7 +81555,7 @@ }, "response": [ { - "id": "d87299dc-d86d-4ce3-95af-aa990fa38378", + "id": "7fcd9619-b527-49bb-86ee-7912fef9faed", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -81589,7 +81589,7 @@ "_postman_previewlanguage": "text" }, { - "id": "e5883528-a709-454a-b39f-0cf1e614e37d", + "id": "315787fb-304d-48b2-b243-4daeb72bfe75", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -81633,7 +81633,7 @@ "_postman_previewlanguage": "json" }, { - "id": "32b6708b-badc-40db-a900-9cc6c21d97d7", + "id": "2d2ce104-fa99-45e1-b711-8a5942a11354", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -81677,7 +81677,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fa9b490d-c77c-43d7-86d8-f033d0f563c9", + "id": "4747b4f1-3194-43bf-815f-94a41819e7c7", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -81721,7 +81721,7 @@ "_postman_previewlanguage": "json" }, { - "id": "44cbd45c-d032-4672-a635-612bef5e186a", + "id": "0f9d2f94-b0b5-44d1-9282-5fe7bfcfd93c", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -81765,7 +81765,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b6c9ecba-fc19-4a89-a797-6d53fd4e76ff", + "id": "2a04741d-57fe-4c72-a8c7-f32a6e9b5c23", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -81809,7 +81809,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9e75ba40-3a64-4179-a345-aede1a638e23", + "id": "7c8f5e71-e823-4aee-8682-324a811d87bc", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -81859,7 +81859,7 @@ } }, { - "id": "47065988-9d7b-4fc2-9512-c8857c391750", + "id": "e9e94002-fd81-4554-85d4-c708541f9bec", "name": "Get Summary of Non-Employee Requests", "request": { "name": "Get Summary of Non-Employee Requests", @@ -81901,7 +81901,7 @@ }, "response": [ { - "id": "3ffe0f0a-42b4-4f8b-9475-58587a52b317", + "id": "875820a2-b14e-4428-82ef-a26441b560f5", "name": "Non-Employee request summary object.", "originalRequest": { "url": { @@ -81946,7 +81946,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cfb72569-e3f6-4dba-9a64-43e620765365", + "id": "0527be54-158b-4217-b51f-9851e4051f58", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -81991,7 +81991,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9fcfceb0-07ea-4a47-b03e-687ec034809e", + "id": "dfdb8d8b-28a5-4744-9bca-d4909ee0c673", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -82036,7 +82036,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d885cb5a-b5c9-4ddc-a32e-3dc0b08b2523", + "id": "10afb7fb-fad6-4567-b7b7-b0a9cf60598e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -82081,7 +82081,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bca5b7aa-9203-4437-be1c-4fac6fd94433", + "id": "8799a315-4e46-4157-afe7-143006fc9ccc", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -82126,7 +82126,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d9c3c02e-3b66-4d5b-b1f2-f787bbabf1d3", + "id": "e5642dd7-a491-425d-8214-8ec2b8f76be2", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -82177,7 +82177,7 @@ } }, { - "id": "212294ef-e8dc-413e-a6b6-9a05d3208e4e", + "id": "066ab008-b362-448a-b756-4d81d3e09a34", "name": "Create Non-Employee Source", "request": { "name": "Create Non-Employee Source", @@ -82219,7 +82219,7 @@ }, "response": [ { - "id": "d301cb0c-b427-4b6d-b38b-a70e977520c3", + "id": "003c0746-a1f7-4d6a-96d3-ba013d13e2dd", "name": "Created non-employee source.", "originalRequest": { "url": { @@ -82275,7 +82275,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f02dd8c0-b55d-4342-8921-c8ba06d2a25d", + "id": "3ad21117-e2c3-4b7a-aa12-5a9311319ccd", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -82331,7 +82331,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c869b7be-c72d-4a3c-8e23-34c2949e9144", + "id": "a4675b28-b23a-4107-b349-28fdfae77c02", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -82387,7 +82387,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cee74768-f18a-424f-9dd3-f0de61926efa", + "id": "e5544618-3ab4-4a10-b08e-2f688c397bd1", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -82443,7 +82443,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cb6a370b-83cf-499c-a2c1-88a7aa43ed82", + "id": "9bec46cc-7b63-42d3-80c4-db14f2f72ddb", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -82499,7 +82499,7 @@ "_postman_previewlanguage": "json" }, { - "id": "045f05b8-8c5d-43a2-adba-36573b046082", + "id": "3aee0827-beee-42ba-8bcc-74c44ad6e6d3", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -82561,7 +82561,7 @@ } }, { - "id": "fe9f8030-f0f5-4346-acb8-bda4a01f2df6", + "id": "da4e8d37-ce25-4729-b900-9ed5a1b2313b", "name": "List Non-Employee Sources", "request": { "name": "List Non-Employee Sources", @@ -82645,7 +82645,7 @@ }, "response": [ { - "id": "a4f65659-0bce-4fd6-9a2c-68ad911831cb", + "id": "56d6dd95-9115-45bd-8169-a10aca3fe2b6", "name": "List of non-employee sources objects.", "originalRequest": { "url": { @@ -82743,7 +82743,7 @@ "_postman_previewlanguage": "json" }, { - "id": "400ca88e-5bbc-4c7d-ad24-4d403a5d0089", + "id": "61ea8974-a72d-457d-92b2-8e3145b09aa5", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -82841,7 +82841,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c58095a5-b94e-4c33-a12d-c14fed9b02e7", + "id": "13f5d8ef-0752-41d5-8edd-90ebd4c39e74", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -82939,7 +82939,7 @@ "_postman_previewlanguage": "json" }, { - "id": "294a0ba1-b079-411e-a7a3-d6c4692e90d9", + "id": "b8ac2aa2-63b2-4f46-bccf-244093f1e7a4", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -83037,7 +83037,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a0a40d07-4918-4666-b459-b71f9f91d22d", + "id": "0b4e5cb2-e589-4303-bc7d-ef3f601cb71b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -83135,7 +83135,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5823ce33-0518-4f7b-80af-5b63d609803a", + "id": "b2d6cfed-1038-4ce2-8818-25193c6e4580", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -83239,7 +83239,7 @@ } }, { - "id": "be4e2ba9-ce79-433e-b6df-49ef7c5d1091", + "id": "ea9bcc23-5e61-4af9-b23e-e8f68b15aa47", "name": "Get a Non-Employee Source", "request": { "name": "Get a Non-Employee Source", @@ -83280,7 +83280,7 @@ }, "response": [ { - "id": "53f8c533-41b5-4cf2-b9c7-b42875b5a4e1", + "id": "c851440e-18db-494e-af77-1d95bbc1b228", "name": "Non-Employee source object.", "originalRequest": { "url": { @@ -83324,7 +83324,7 @@ "_postman_previewlanguage": "json" }, { - "id": "873ebbea-4299-4b8d-811c-12f71a81fc5f", + "id": "02acdf6d-11c9-414d-b483-238ab2e66395", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -83368,7 +83368,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e0ad8256-efb4-4bad-87e2-a113890d29d0", + "id": "e46cc41f-bfa7-4914-8d2b-e41ca15f4b5e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -83412,7 +83412,7 @@ "_postman_previewlanguage": "json" }, { - "id": "040feaac-94b3-4ecf-ad34-7128be1e5b21", + "id": "0db815d1-467d-435f-84ae-03d3c0bfd657", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -83456,7 +83456,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d9c9cae3-bfac-4789-94f0-04984acff178", + "id": "f4df3c6d-56ad-412b-9dde-1fc701194c5f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -83500,7 +83500,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5749f2ca-ae8f-4249-a43a-71290f833c3b", + "id": "9d866521-61fb-43b7-a1b8-52b074af4d4d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -83550,7 +83550,7 @@ } }, { - "id": "d8270058-47e8-4e93-8daf-e274c78b5abc", + "id": "289bd971-3a55-4ed7-90ed-a6756c95e237", "name": "Patch a Non-Employee Source", "request": { "name": "Patch a Non-Employee Source", @@ -83604,7 +83604,7 @@ }, "response": [ { - "id": "0f760c06-e38a-4078-a6af-25e2a2da1ca7", + "id": "919ca1c8-8ced-4187-b74f-d220b7acdd18", "name": "A patched non-employee source object.", "originalRequest": { "url": { @@ -83661,7 +83661,7 @@ "_postman_previewlanguage": "json" }, { - "id": "13a7ffe3-c818-4a83-adc5-e2bd2a3a712a", + "id": "7923a348-4e07-432a-901e-ffbbbbe8e829", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -83718,7 +83718,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c20a7c54-5f34-4015-86ff-9052bf98ccdf", + "id": "8ad09e01-eaf5-4c25-afa3-a9187f2dca4a", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -83775,7 +83775,7 @@ "_postman_previewlanguage": "json" }, { - "id": "602083f8-7bb2-46d6-b380-500af9ec2d65", + "id": "8dfe2593-5681-45f4-841a-77647e4bcf97", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -83832,7 +83832,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a6723afa-e33b-4022-9799-c7c579d14450", + "id": "0468bd10-4c34-4cd0-9f32-0f54a1b7ef65", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -83889,7 +83889,7 @@ "_postman_previewlanguage": "json" }, { - "id": "93a97176-27b0-4bb9-bc72-e63eee4a3850", + "id": "3339ec77-0ed6-4c85-91ca-bf3f1a63e60c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -83952,7 +83952,7 @@ } }, { - "id": "8708c408-029d-47cd-ac20-35130058609a", + "id": "8f429678-dce7-4904-ac53-30461955ce98", "name": "Delete Non-Employee Source", "request": { "name": "Delete Non-Employee Source", @@ -83993,7 +83993,7 @@ }, "response": [ { - "id": "d157b33c-de88-4cfc-9006-63a19415f9f6", + "id": "99f5e4e2-7234-46f3-be04-0d67be772022", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -84027,7 +84027,7 @@ "_postman_previewlanguage": "text" }, { - "id": "4d0d213d-df80-4eb8-8176-5726c0b265e4", + "id": "e6ec502f-1908-4f46-8151-cb430793a114", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -84071,7 +84071,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6e5133f0-94d3-4ed8-ab33-4bfcf5fc860b", + "id": "2cf858cd-4fa4-4dfe-a16c-840f2a78d1bb", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -84115,7 +84115,7 @@ "_postman_previewlanguage": "json" }, { - "id": "61d186b1-087c-47df-be01-e655a00fb008", + "id": "33ecff44-487e-4f7e-b115-458377942f6c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -84159,7 +84159,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4dc6480a-7ee2-4caf-8b8f-0eeffd7200fc", + "id": "423ec0f8-6bd4-4997-bbe8-622a289aa0be", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -84203,7 +84203,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2f8efb05-4abf-49a7-8af1-d8a7f6f6f813", + "id": "e025dbd0-48f1-4979-9aab-a2782edac49a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -84253,7 +84253,7 @@ } }, { - "id": "a84b115a-c108-4d19-b848-bd228503f308", + "id": "c8dfbb06-79d1-41d3-b0f8-d04096d73ff2", "name": "Exports Non-Employee Records to CSV", "request": { "name": "Exports Non-Employee Records to CSV", @@ -84296,7 +84296,7 @@ }, "response": [ { - "id": "c3ac6541-8ce0-43d1-878f-a14fbf21c472", + "id": "5d10514f-31b2-46f7-8d91-4922b5b26ff3", "name": "Exported CSV", "originalRequest": { "url": { @@ -84342,7 +84342,7 @@ "_postman_previewlanguage": "text" }, { - "id": "beb3e709-4290-4f80-b0b1-5dde76638d78", + "id": "c93dbd4f-7bdf-4cf9-9ca7-d01b21fb2609", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -84388,7 +84388,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5a2e7f84-bdba-4567-af1b-c56c72e93ee0", + "id": "1e7d1817-b35c-4d3f-8c62-d4132165b3ad", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -84434,7 +84434,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9d34b4ed-aca2-42b0-8a9b-5522c03e7093", + "id": "2d23279e-c878-4257-8aa4-e1c8fe0aa1e9", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -84480,7 +84480,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8243524c-de53-45f5-bfb2-4204b066deb6", + "id": "f96a5992-dcd5-4b41-bb05-6cfe0e4b2c7c", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -84526,7 +84526,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5571bc1b-ce08-4c8c-ad06-9b3d3beaf9db", + "id": "c8519461-a219-4925-8903-d5136ac78202", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -84572,7 +84572,7 @@ "_postman_previewlanguage": "json" }, { - "id": "654fd335-9646-482a-8fb0-3fc4cade0d66", + "id": "ecad9466-21a9-4e1c-9cc1-8f57aa65740e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -84624,7 +84624,7 @@ } }, { - "id": "ab902591-4180-440a-833d-007dcc3bcb86", + "id": "48d311a6-dc91-4299-a2ce-93cafa0a1742", "name": "Imports, or Updates, Non-Employee Records", "request": { "name": "Imports, or Updates, Non-Employee Records", @@ -84675,7 +84675,7 @@ "type": "text/plain" }, "key": "data", - "value": "culpa cillum", + "value": "laborum ut veniam fugiat", "type": "text" } ] @@ -84683,7 +84683,7 @@ }, "response": [ { - "id": "884ea514-f864-48fd-9a33-0a6cef961f66", + "id": "f739a839-def8-42bf-9acb-3ef7890682da", "name": "The CSV was accepted to be bulk inserted now or at a later time.", "originalRequest": { "url": { @@ -84726,7 +84726,7 @@ "type": "text/plain" }, "key": "data", - "value": "culpa cillum", + "value": "laborum ut veniam fugiat", "type": "text" } ] @@ -84745,7 +84745,7 @@ "_postman_previewlanguage": "json" }, { - "id": "99b5649c-7182-439a-89f7-f910dde82766", + "id": "06d6653e-1f78-40da-8e65-26c6e5053857", "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": { @@ -84788,7 +84788,7 @@ "type": "text/plain" }, "key": "data", - "value": "culpa cillum", + "value": "laborum ut veniam fugiat", "type": "text" } ] @@ -84807,7 +84807,7 @@ "_postman_previewlanguage": "json" }, { - "id": "054d8b4f-76d9-4fcd-b686-a6de54069ebe", + "id": "6fd62746-8840-4632-970a-1f784d4e4d42", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -84850,7 +84850,7 @@ "type": "text/plain" }, "key": "data", - "value": "culpa cillum", + "value": "laborum ut veniam fugiat", "type": "text" } ] @@ -84869,7 +84869,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cbe4552d-75fb-4f64-956e-aa1c336946e8", + "id": "56b03c86-d8a4-4ad4-b1bc-320aadb39f58", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -84912,7 +84912,7 @@ "type": "text/plain" }, "key": "data", - "value": "culpa cillum", + "value": "laborum ut veniam fugiat", "type": "text" } ] @@ -84931,7 +84931,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f365264c-c413-435f-abaa-8799863d76ec", + "id": "69e673db-6e59-45f5-8227-9647d359061d", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -84974,7 +84974,7 @@ "type": "text/plain" }, "key": "data", - "value": "culpa cillum", + "value": "laborum ut veniam fugiat", "type": "text" } ] @@ -84993,7 +84993,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3469ace2-8a59-4771-872d-b96212f6f163", + "id": "1210a920-841b-4bc0-9406-af837d7aa655", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -85036,7 +85036,7 @@ "type": "text/plain" }, "key": "data", - "value": "culpa cillum", + "value": "laborum ut veniam fugiat", "type": "text" } ] @@ -85055,7 +85055,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0959ee85-6e00-4198-a97e-4a85eb88c480", + "id": "1d1d581e-b317-4764-81f9-b03f1674e992", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -85098,7 +85098,7 @@ "type": "text/plain" }, "key": "data", - "value": "culpa cillum", + "value": "laborum ut veniam fugiat", "type": "text" } ] @@ -85123,7 +85123,7 @@ } }, { - "id": "e11ee707-fa7a-486a-9ab1-f6be9da246be", + "id": "e103cb54-9555-4404-a2e9-574c3a3a61b5", "name": "Obtain the status of bulk upload on the source", "request": { "name": "Obtain the status of bulk upload on the source", @@ -85166,7 +85166,7 @@ }, "response": [ { - "id": "b817111b-0f19-4c37-a9cf-50f466940ff1", + "id": "629ac10f-18e2-46a1-b1ce-79aff25a295b", "name": "Status of the newest bulk-upload job, if any.", "originalRequest": { "url": { @@ -85212,7 +85212,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ec4dafd7-a8c7-4c84-afaa-637862d3c85c", + "id": "b14ace81-bae8-49de-8f05-56a581a3ec71", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -85258,7 +85258,7 @@ "_postman_previewlanguage": "json" }, { - "id": "30bb7709-6686-4946-ad35-fddeb5dc0368", + "id": "a419287b-0c7b-4b3c-8578-c09086781af4", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -85304,7 +85304,7 @@ "_postman_previewlanguage": "json" }, { - "id": "399689c1-464b-4085-afa8-a3da5c4494ea", + "id": "5ee3a89c-5caa-4066-b06c-2193e5bb68bd", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -85350,7 +85350,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3e0f3d8c-d93b-406a-aadb-1b7a5796050f", + "id": "741c1a1f-f6c0-48c9-a69d-2418c68eb04b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -85396,7 +85396,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9bf753a6-1b72-44cc-8246-07aba8f0bf68", + "id": "69cd5488-2b7e-484c-9a67-e06c9ff5721a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -85448,7 +85448,7 @@ } }, { - "id": "ef0b6ceb-caef-424c-b530-38efc71c075c", + "id": "b6525126-fa1c-410a-9100-1034407ed0ae", "name": "Exports Source Schema Template", "request": { "name": "Exports Source Schema Template", @@ -85491,7 +85491,7 @@ }, "response": [ { - "id": "d3423a02-8972-46f3-97d7-a096d8c107f6", + "id": "fcdf273a-25e4-4ec5-ac30-ab2282d8986a", "name": "Exported Source Schema Template", "originalRequest": { "url": { @@ -85537,7 +85537,7 @@ "_postman_previewlanguage": "text" }, { - "id": "1acd59e8-5827-43b1-bfdc-59f450fa6fa4", + "id": "4a4aa778-ece2-4ce5-9adb-c02e0e26d01c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -85583,7 +85583,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3f46d888-faeb-484f-8e6d-abfb2dd05362", + "id": "dbfcee78-e652-4c3e-9a82-9a4039a38a59", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -85629,7 +85629,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a676a288-e930-44f9-be3e-4ab8be51ee9b", + "id": "8b45ab75-6fcd-484f-bd1f-3d9ddff2c4eb", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -85675,7 +85675,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8232b175-6941-44a8-9c25-45077b0af151", + "id": "4c17af2e-ea71-4853-837f-c6ac36384220", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -85721,7 +85721,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c5bd6755-275b-49e7-8c8d-c1cbf072b496", + "id": "f1b9a820-4ca8-4034-a1fd-9765748a6bd9", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -85767,7 +85767,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5c9521a2-e253-4304-8c14-55a9ee8c0705", + "id": "0358b210-f44e-4925-9b7b-71aa1e1cde9b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -85819,7 +85819,7 @@ } }, { - "id": "ea1be0a4-8a93-4a9d-95f8-8bd1a923c09f", + "id": "2cdcd90c-df21-4dac-8ae2-cd6ff4bd600a", "name": "Get List of Non-Employee Approval Requests", "request": { "name": "Get List of Non-Employee Approval Requests", @@ -85903,7 +85903,7 @@ }, "response": [ { - "id": "af8789ea-533f-4be1-b549-956ac5812ca0", + "id": "1c95d04b-6253-43d9-a57c-2a8a9e577ed2", "name": "List of approval items.", "originalRequest": { "url": { @@ -86001,7 +86001,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5d156932-546b-434e-b7a6-0b7f07c0f30a", + "id": "31fcf5ad-004d-4f22-a67d-cdb7b8fbe163", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -86099,7 +86099,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2288db20-79c7-4882-b122-e69e42eaef53", + "id": "a47563da-8bd9-40d2-8d0b-3ddd7f895aea", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -86197,7 +86197,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9f911019-b0bb-44bc-9292-f77af00cf696", + "id": "9bb88f71-1752-4a07-8fa4-bf27d588c6f4", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -86295,7 +86295,7 @@ "_postman_previewlanguage": "json" }, { - "id": "856e0c1b-c150-4108-a94f-50e722dd0a2b", + "id": "417bce01-a46c-441f-b6a0-d8021d01217e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -86393,7 +86393,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fd9148d8-52d7-43fa-8264-9e7fdcb9ea2e", + "id": "6ca2490a-e7f1-421a-968a-2285ae4eb591", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -86497,7 +86497,7 @@ } }, { - "id": "8523d389-f34e-467e-93e7-99a821a0e938", + "id": "a77e5e30-408f-4686-8d0d-76bb9e27ed32", "name": "Get a non-employee approval item detail", "request": { "name": "Get a non-employee approval item detail", @@ -86548,7 +86548,7 @@ }, "response": [ { - "id": "f888cb57-48f8-4b3b-a481-a5d573830a3b", + "id": "10221d67-2cfa-4a39-963e-1f9d91ad98ac", "name": "Non-Employee approval item object.", "originalRequest": { "url": { @@ -86602,7 +86602,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7cddf0bd-6c36-4e05-956a-3facc7fe3abc", + "id": "e7c833ea-d16c-458d-9c50-503bb6619134", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -86656,7 +86656,7 @@ "_postman_previewlanguage": "json" }, { - "id": "095785f0-b6cc-4606-a5c4-75a830f46d91", + "id": "c1e8b074-9ee2-4b93-8683-13d0dcfe6faa", "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": "8089750a-4a87-4e8a-a66a-5d9b12fe991d", + "id": "99de4b1f-da77-4199-9f5d-7c89da54d7de", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -86764,7 +86764,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e08e1770-1714-47c7-9838-272b8e4d00c7", + "id": "ec1eeb42-9bb8-4e12-b028-1e8f5cd8b9cd", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -86818,7 +86818,7 @@ "_postman_previewlanguage": "json" }, { - "id": "103cec2d-3385-4a62-9884-1ad4659b4318", + "id": "0fe581cc-47a9-4a1a-b8f5-98500d83eadc", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -86878,7 +86878,7 @@ } }, { - "id": "4005a450-a026-4338-81b6-aa921ec0e017", + "id": "7040c36f-858b-4ec3-babe-ec63398c906c", "name": "Approve a Non-Employee Request", "request": { "name": "Approve a Non-Employee Request", @@ -86933,7 +86933,7 @@ }, "response": [ { - "id": "4b98c056-a8bb-469c-978d-4bf02a426041", + "id": "904368e6-cae0-4155-a049-4098ce4bca7d", "name": "Non-Employee approval item object.", "originalRequest": { "url": { @@ -86991,7 +86991,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0fa2f184-cd85-45b9-a428-2e1c7f0828cd", + "id": "54a7506b-d189-49cb-827a-ea4b0336c474", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -87049,7 +87049,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d8023c1c-34eb-44a8-8ba6-7aa6b8dfb2b8", + "id": "686fe37c-c15f-4fd7-930a-54ba0e29e668", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -87107,7 +87107,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d49a3e84-be22-49e4-9682-97d31b874302", + "id": "1cd7c7a2-fc15-4018-ba51-370a78dc3dda", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -87165,7 +87165,7 @@ "_postman_previewlanguage": "json" }, { - "id": "acc74bbf-e384-4cb8-b102-d47204c6bbb6", + "id": "9829762f-0bb1-4771-922e-ff38afd0407d", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -87223,7 +87223,7 @@ "_postman_previewlanguage": "json" }, { - "id": "45a5a868-b828-4801-b12a-4c550dd33f96", + "id": "8cd22e14-3903-452f-9253-6e8591e9f2c3", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -87287,7 +87287,7 @@ } }, { - "id": "f11032a5-943f-4158-a62b-95757ffa0142", + "id": "1dd6bd07-8ae4-4dc7-801d-9cf9ee970ca5", "name": "Reject a Non-Employee Request", "request": { "name": "Reject a Non-Employee Request", @@ -87342,7 +87342,7 @@ }, "response": [ { - "id": "caf08d32-4b76-42d0-9ae1-88ac683a64e2", + "id": "2c8a1a2d-8d84-4c7e-898e-26aa4731e310", "name": "Non-Employee approval item object.", "originalRequest": { "url": { @@ -87400,7 +87400,7 @@ "_postman_previewlanguage": "json" }, { - "id": "672c4c76-67db-4c15-8901-593d42e380a5", + "id": "06e1ab5d-471f-497f-acc9-bbdb0cb3d603", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -87458,7 +87458,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a788fe83-1bfd-41c3-9f5b-041fde934084", + "id": "a026df36-9861-480f-b896-a6a71f8ff62c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -87516,7 +87516,7 @@ "_postman_previewlanguage": "json" }, { - "id": "27e4256b-9e04-4612-949e-60a8bcdbfdbd", + "id": "e0ea7979-0de6-4c19-8480-349676c9f0cd", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -87574,7 +87574,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0918d5fd-0ace-4cac-8cbe-e3e84fbdf9fd", + "id": "6187cdff-ed83-45fb-97f9-5228ff6867e6", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -87632,7 +87632,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f8243948-617d-492c-9b94-3b7cb9c55de4", + "id": "d9797ad5-195c-4ad6-8a84-d2afd420976a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -87696,7 +87696,7 @@ } }, { - "id": "f81d1fa6-0621-4b35-a459-dfbd2636c2c5", + "id": "13c1dfc7-a5d9-4059-a065-655401533096", "name": "Get Summary of Non-Employee Approval Requests", "request": { "name": "Get Summary of Non-Employee Approval Requests", @@ -87738,7 +87738,7 @@ }, "response": [ { - "id": "2bdd321e-6485-4314-b623-ce2a4a59a8b5", + "id": "19ef3c36-0a04-46cc-9998-50a699662afd", "name": "summary of non-employee approval requests", "originalRequest": { "url": { @@ -87783,7 +87783,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2a75127f-adf8-4b58-9f85-4624e82dfda5", + "id": "74622494-889a-4b55-ae6f-6b6dc3008a66", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -87828,7 +87828,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0bdd910b-0935-4005-94ca-766a1393630f", + "id": "c8e4349c-b7c8-4095-abf6-bd038203f484", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -87873,7 +87873,7 @@ "_postman_previewlanguage": "json" }, { - "id": "798a6d7f-8d88-47f3-a653-724a8762f7b2", + "id": "d0b0d44c-ce41-4d85-84ed-3201942a1bfe", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -87918,7 +87918,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7d43ca10-1d1f-4808-b846-464af516e182", + "id": "7d1e1ad5-77fd-4c0c-9a52-327de9bf508c", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -87963,7 +87963,7 @@ "_postman_previewlanguage": "json" }, { - "id": "13e91ee6-8d3b-4fe8-825e-bf495700eeac", + "id": "a3a95f4b-947a-4a7e-9a61-4faaa8f3bde2", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -88014,7 +88014,7 @@ } }, { - "id": "c97f8fd0-098f-4744-ab14-a0cd8385112f", + "id": "2c0defe3-9493-40ac-ab3b-0e8e93a56305", "name": "List Schema Attributes Non-Employee Source", "request": { "name": "List Schema Attributes Non-Employee Source", @@ -88056,7 +88056,7 @@ }, "response": [ { - "id": "cf421974-f8a5-4ebc-9914-b519c750c39f", + "id": "ce760fdf-58df-4ffd-9829-d3c71a5360bb", "name": "A list of Schema Attributes", "originalRequest": { "url": { @@ -88101,7 +88101,7 @@ "_postman_previewlanguage": "json" }, { - "id": "947e9999-440a-418c-b170-9154b85e53a8", + "id": "0b9402c3-4184-490b-bb7b-91ff1577ae1a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -88146,7 +88146,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5a451fdc-acd0-4d61-8f50-cae9562dbd77", + "id": "88ebc728-285e-46ed-ba8b-8dac346cc3b6", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -88191,7 +88191,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b1943ed0-b9d0-4442-8ab5-4b0d133da77f", + "id": "c3bbe932-266d-4e1a-9154-9ac2f406b409", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -88236,7 +88236,7 @@ "_postman_previewlanguage": "json" }, { - "id": "20b85641-d423-4496-8b49-51c8eec8e8bf", + "id": "b74e35cd-568c-46a4-bf06-5f8e2ad9998c", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -88281,7 +88281,7 @@ "_postman_previewlanguage": "json" }, { - "id": "115548f3-6fdd-441c-861c-5a96015af1f4", + "id": "082e15e6-29fe-4c79-a62b-38227fdf0892", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -88326,7 +88326,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f20332f0-d44d-4fab-8782-4a3ceda12c9e", + "id": "84018e93-0ee1-4223-a111-83e01581a6af", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -88377,7 +88377,7 @@ } }, { - "id": "394c6a53-1876-45b7-b9ac-9c60a5219338", + "id": "ac65882b-638a-4fd7-a588-8f13c5963501", "name": "Create a new Schema Attribute for Non-Employee Source", "request": { "name": "Create a new Schema Attribute for Non-Employee Source", @@ -88432,7 +88432,7 @@ }, "response": [ { - "id": "df07ceb8-cf91-48bd-b687-3c2519db3057", + "id": "50afb6dc-83a4-4d83-af57-460251abf8f5", "name": "Schema Attribute created.", "originalRequest": { "url": { @@ -88490,7 +88490,7 @@ "_postman_previewlanguage": "json" }, { - "id": "49db9803-cbf2-475e-9d6e-8e62cb520b3f", + "id": "bb51dbb7-4f87-4ece-aa5f-f99bcdc07dc8", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -88548,7 +88548,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ba142363-ae2f-4217-9331-d255c7058df7", + "id": "f9278e91-932a-451f-9705-4fd9002cae77", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -88606,7 +88606,7 @@ "_postman_previewlanguage": "json" }, { - "id": "af50a178-5fa7-4eb3-bb18-089ac725f51e", + "id": "c132cdb0-0d5c-430d-bf61-8bf4079f0daa", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -88664,7 +88664,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3c61bc19-f091-416e-910e-6b8a28b48166", + "id": "5594278a-8688-42fe-b231-8ee2580f3114", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -88722,7 +88722,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8d31017e-d010-47bf-b435-096f303fc937", + "id": "42ddab53-88d7-42d5-8874-0230cfe812c1", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -88786,7 +88786,7 @@ } }, { - "id": "bbdf29ab-663d-4403-84e9-202ed52773ff", + "id": "8977f076-108a-476d-85e7-eafe47bf5013", "name": "Delete all custom schema attributes for Non-Employee Source", "request": { "name": "Delete all custom schema attributes for Non-Employee Source", @@ -88828,7 +88828,7 @@ }, "response": [ { - "id": "303072de-0b51-49d4-b87c-040ed74cbca3", + "id": "223b542c-6033-4340-ace9-641268bb3f66", "name": "All custon Schema Attributes were successfully deleted.", "originalRequest": { "url": { @@ -88863,7 +88863,7 @@ "_postman_previewlanguage": "text" }, { - "id": "35c1f1e3-06d6-4495-8a21-6b115d3e3083", + "id": "1da1aeb5-9f0c-4b8d-9276-48e1e43d55ac", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -88908,7 +88908,7 @@ "_postman_previewlanguage": "json" }, { - "id": "74f60653-7831-4d01-9f38-521b6d2e5fdb", + "id": "bee236ce-ce4f-4d5e-98dd-b88c3498c11e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -88953,7 +88953,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5a8711c0-3499-4c6b-b27b-686f7b05a9fb", + "id": "ab7c68e4-4f11-4569-b189-96f46123acc9", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -88998,7 +88998,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6c416d47-9f50-4935-9306-b33904dca5db", + "id": "2177ba68-060c-4d11-9883-1d8a710eda7b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -89043,7 +89043,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8073b2d0-ff0b-4b1e-9c1c-d1da335f413b", + "id": "c4d24ded-a526-4350-831f-e387af2ba70a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -89094,7 +89094,7 @@ } }, { - "id": "f172544c-5701-407d-bf35-709aa4da0d5c", + "id": "c34a7959-71ac-499a-816d-c0ab0c679d0a", "name": "Get Schema Attribute Non-Employee Source", "request": { "name": "Get Schema Attribute Non-Employee Source", @@ -89147,7 +89147,7 @@ }, "response": [ { - "id": "a4e901bb-86c9-41a2-bfbc-a08e97c51f28", + "id": "e6b93a45-3d7e-4a48-b9d0-86c95b6e8313", "name": "The Schema Attribute", "originalRequest": { "url": { @@ -89193,7 +89193,7 @@ "_postman_previewlanguage": "json" }, { - "id": "394c769a-c172-4e2a-afc6-6d2fc61fd4fa", + "id": "8ba21d20-4374-411e-8062-aeacd187d60e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -89239,7 +89239,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8a2beba1-4e4b-4b37-8292-3f5e752b8e73", + "id": "8ced0174-858f-4704-b776-0751ba506204", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -89285,7 +89285,7 @@ "_postman_previewlanguage": "json" }, { - "id": "18f1a800-1d4f-41c4-9500-988fe221c912", + "id": "99a3788a-0ddb-4805-a8e2-fcaa3c6f9e4c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -89331,7 +89331,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6df420a5-6561-4f13-8f64-1233fbee8ed5", + "id": "be069764-7194-465d-a112-5bd32773ab31", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -89377,7 +89377,7 @@ "_postman_previewlanguage": "json" }, { - "id": "09f36c06-673c-446d-94ba-05ddbda1eaca", + "id": "8b4fbf65-e716-4bf8-b8b3-9da9dc0e2eef", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -89429,7 +89429,7 @@ } }, { - "id": "c77a20b3-0409-488a-86f3-c170da46cb5f", + "id": "a68e2897-6844-4f7e-a48d-f00d79700839", "name": "Patch a Schema Attribute for Non-Employee Source", "request": { "name": "Patch a Schema Attribute for Non-Employee Source", @@ -89495,7 +89495,7 @@ }, "response": [ { - "id": "02c42126-20c8-42a2-b12a-93e8f58abf70", + "id": "742b4bdf-912f-49f3-9cd4-214d150eb6bd", "name": "The Schema Attribute was successfully patched.", "originalRequest": { "url": { @@ -89554,7 +89554,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5fbb65eb-6945-407e-82ea-65c05d0e92a3", + "id": "749aa0e3-a342-4580-bfb3-14d555638b21", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -89613,7 +89613,7 @@ "_postman_previewlanguage": "json" }, { - "id": "52ae2319-5e00-4989-bc70-20d33b58d78e", + "id": "def68013-ca18-46e9-91bb-2fd40f829739", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -89672,7 +89672,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7091e0de-1c33-4d87-83cf-e6530eef21be", + "id": "5e3116cd-f59e-4689-8bdf-f0becbb872ab", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -89731,7 +89731,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ba17ce2e-99c7-4cfd-99e6-1fcdccfa6e8a", + "id": "f104cec6-17fb-42b7-90a4-f92649352edc", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -89790,7 +89790,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7e7abd75-741c-4eaa-af16-1890d8790c8a", + "id": "438a8242-59b9-4c37-8a85-db78d56e8264", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -89849,7 +89849,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e27b2458-f4bc-4243-b7ff-d76ce1428f3e", + "id": "340e596b-c0ec-4eab-87af-5cbb8bef4afa", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -89914,7 +89914,7 @@ } }, { - "id": "bbb57ecd-24c3-41ec-b4fb-f9ffc09a0de4", + "id": "2970b0a7-6e26-4ebc-b707-e0897cc47bcc", "name": "Delete a Schema Attribute for Non-Employee Source", "request": { "name": "Delete a Schema Attribute for Non-Employee Source", @@ -89967,7 +89967,7 @@ }, "response": [ { - "id": "bf48b997-c40b-439b-8424-a5961f6416f6", + "id": "0ba439a6-4bbc-483b-8a9c-85f203f8be25", "name": "The Schema Attribute was successfully deleted.", "originalRequest": { "url": { @@ -90003,7 +90003,7 @@ "_postman_previewlanguage": "text" }, { - "id": "dfe0703e-0bf9-4da8-9b6d-a16cfa7d91a8", + "id": "d6ba645b-c022-483d-8b68-329ec37cbd1c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -90049,7 +90049,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4411eb3e-2225-4d7e-b818-eab479a198b2", + "id": "7543d89f-0f3a-44f0-9512-1559ab8d7026", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -90095,7 +90095,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7664564c-a4a8-484f-81ff-0f27782a0fc1", + "id": "605d045a-cb53-401e-8678-6da50a04fa2b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -90141,7 +90141,7 @@ "_postman_previewlanguage": "json" }, { - "id": "67b22407-e816-4a97-bfff-e6f248af6185", + "id": "9060d375-6e62-411c-9d70-2e796c9235c7", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -90187,7 +90187,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ccb982aa-1c3f-442b-97b9-d6a0d59984bd", + "id": "1456467c-7fb9-4e8b-886e-761b9d1c5d90", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -90245,7 +90245,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": "829c347e-c3e6-4ac7-9476-478c435eec02", + "id": "59bbff98-b20c-4a22-bed9-ddb574b0ad3f", "name": "List OAuth Clients", "request": { "name": "List OAuth Clients", @@ -90284,7 +90284,7 @@ }, "response": [ { - "id": "513f34c2-52e2-413f-92a0-e38b2c4f6b83", + "id": "eb5776b1-6d44-4244-b7b6-8745d0d3e43d", "name": "List of OAuth clients.", "originalRequest": { "url": { @@ -90337,7 +90337,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1bcaf264-6418-4353-89ba-4780d40c75f7", + "id": "3f257977-d0fa-4548-84e8-93d030bc5aa4", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -90390,7 +90390,7 @@ "_postman_previewlanguage": "json" }, { - "id": "044e9fa7-30cb-4a11-9013-9211cd7075e9", + "id": "84d761aa-8703-4ede-9483-900c53d2bcce", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -90443,7 +90443,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e72988dd-4202-4fab-acb7-ebe8c3022634", + "id": "1405687b-599b-4982-9f6a-96b0c254e5ab", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -90496,7 +90496,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8664c109-c5a3-4e12-8e27-b412c13b9ff9", + "id": "791df532-e3aa-409f-99e3-e9da30e5e470", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -90549,7 +90549,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8bcc354c-13be-44a5-88b1-53bcce37a942", + "id": "b6e1425c-c6f7-41cd-8d3a-ad19073c212e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -90608,7 +90608,7 @@ } }, { - "id": "99907d2e-f698-442b-97fe-5fb58a071cd3", + "id": "f0e37496-149e-48bf-9273-1806c5d68a1f", "name": "Create OAuth Client", "request": { "name": "Create OAuth Client", @@ -90650,7 +90650,7 @@ }, "response": [ { - "id": "9c6b7f6a-9c6d-45bd-b076-29646c954fb0", + "id": "92f1fb6e-3af3-490b-b488-33de0300fd0b", "name": "Request succeeded.", "originalRequest": { "url": { @@ -90706,7 +90706,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a34a0523-b100-4fb6-9b01-45191b9435e7", + "id": "814e6628-d5a6-4dfe-bfd3-19dd87c7b08d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -90762,7 +90762,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a3483ad7-4e53-4577-938c-86b88a191a4e", + "id": "2dc4344f-61ee-4c17-acc8-8cb5e1e9289c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -90818,7 +90818,7 @@ "_postman_previewlanguage": "json" }, { - "id": "748cfddf-20d6-4127-a784-85593e54ac25", + "id": "0be36f49-92db-49e9-82c7-6dbb092157e1", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -90874,7 +90874,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0696e789-17a2-4357-8128-9977b4c70c38", + "id": "cf895c09-bc25-4c97-8733-eb73e60aa47b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -90930,7 +90930,7 @@ "_postman_previewlanguage": "json" }, { - "id": "05340378-bab0-4376-82a2-6e50b474a573", + "id": "b2d7c9ff-5cb3-4011-b36d-175226fa6b00", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -90992,7 +90992,7 @@ } }, { - "id": "f51ae0fd-99ee-4027-895b-8a772f31fb4f", + "id": "3629d9cb-c9f3-4a76-be2a-0ea03bacb718", "name": "Get OAuth Client", "request": { "name": "Get OAuth Client", @@ -91033,7 +91033,7 @@ }, "response": [ { - "id": "0f9fc776-42d6-4aa8-b5e8-754060d1cbff", + "id": "e15fff3f-4795-4a55-993c-c29740934a62", "name": "Request succeeded.", "originalRequest": { "url": { @@ -91077,7 +91077,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4bad8064-5e3e-4236-8471-48d057b8cf73", + "id": "aa3a3a47-f7b2-437b-84d3-411924cb968f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -91121,7 +91121,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6ef6de2b-807f-4031-b7b9-42575e52023f", + "id": "f04a2304-9154-49df-b71f-0c082d71c0e0", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -91165,7 +91165,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cab9a97a-ea3d-456a-bebf-602a08364978", + "id": "ca89f902-f071-491a-a699-a80ef9e90e90", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -91209,7 +91209,7 @@ "_postman_previewlanguage": "json" }, { - "id": "66a9899d-c189-4b58-8800-891671bd470e", + "id": "9596c7a7-7f4d-4df9-b469-709706018830", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -91253,7 +91253,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1aab8807-3160-493b-85a3-eedc4dbde3a2", + "id": "53356baf-af63-40b2-8f79-68c50f2095a7", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -91297,7 +91297,7 @@ "_postman_previewlanguage": "json" }, { - "id": "acf72b19-c1f3-45dd-84ef-61958a00455b", + "id": "bd67b367-da9d-418f-a894-37748932cc51", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -91347,7 +91347,7 @@ } }, { - "id": "a059b7c6-860e-4c90-a11a-be76f107ca20", + "id": "d10bde77-9e23-46b9-a53b-fa3f3b035fd6", "name": "Delete OAuth Client", "request": { "name": "Delete OAuth Client", @@ -91388,7 +91388,7 @@ }, "response": [ { - "id": "24c5dc8d-5cae-4733-896e-4cbe292156c8", + "id": "068aab6a-ac4e-493a-9124-4a798f9d6ab7", "name": "No content.", "originalRequest": { "url": { @@ -91422,7 +91422,7 @@ "_postman_previewlanguage": "text" }, { - "id": "3985258a-3395-4fd6-9149-c047977878e2", + "id": "af58149b-a8c5-4350-80d4-dd5b5f5e8d58", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -91466,7 +91466,7 @@ "_postman_previewlanguage": "json" }, { - "id": "19d445ee-79dc-426d-913d-ac8936c15d39", + "id": "14dec387-5943-46a7-84a1-27bf98c2d23f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -91510,7 +91510,7 @@ "_postman_previewlanguage": "json" }, { - "id": "049e2baa-76b0-4175-9a24-e927e6011066", + "id": "0757780b-9cf1-4cf1-82c9-86fc89379d9a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -91554,7 +91554,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0a26578a-c92e-4442-9d02-3043c7209940", + "id": "6a0236b7-7e01-4e0f-9a95-da32c53bf53b", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -91598,7 +91598,7 @@ "_postman_previewlanguage": "json" }, { - "id": "323bc0d8-9944-4b23-8cb4-1b39819568fc", + "id": "02cf2d74-d977-4968-8a29-61d493049e65", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -91642,7 +91642,7 @@ "_postman_previewlanguage": "json" }, { - "id": "29539c3d-4b5e-46d1-a1e1-abb3b440ce34", + "id": "11339fb8-ec1a-4859-a4cc-bcf867b1d27e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -91692,7 +91692,7 @@ } }, { - "id": "826f6b81-fa04-4120-b0dd-16efbf1f3c0b", + "id": "80f3b963-9a0c-49fc-9abd-f75cfd6c6334", "name": "Patch OAuth Client", "request": { "name": "Patch OAuth Client", @@ -91746,7 +91746,7 @@ }, "response": [ { - "id": "de838356-5aa2-49a5-a947-6a0ef84c3389", + "id": "541832e7-c717-4f5a-82fa-3fc9d671c575", "name": "Indicates the PATCH operation succeeded, and returns the OAuth client's new representation.", "originalRequest": { "url": { @@ -91803,7 +91803,7 @@ "_postman_previewlanguage": "json" }, { - "id": "70fd98e1-2c5e-42d1-831f-85b5a7924bfd", + "id": "4547a3c2-99e9-4058-a4d1-02fd16c0d91f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -91860,7 +91860,7 @@ "_postman_previewlanguage": "json" }, { - "id": "31dd8cec-0fff-47e0-a98a-c9232e8e6b2e", + "id": "aeb5cf09-58e8-401e-b197-c60555719de3", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -91917,7 +91917,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8cc4dbb0-1fde-4d10-beae-ae2f44b4729c", + "id": "acfcc9fd-0351-45c2-ba29-c99cc1be1adc", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -91974,7 +91974,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7ba72b60-6377-4131-aa93-f2f6feb5237b", + "id": "e6b87282-8723-4399-9e1e-03993517c6a5", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -92031,7 +92031,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5e90a768-03cb-4a3e-ab01-434a147d3dd4", + "id": "93d0d19d-5fb6-4f10-97a8-34e8bd87dcf7", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -92088,7 +92088,7 @@ "_postman_previewlanguage": "json" }, { - "id": "95a6cecd-a13c-480e-bb31-6b755c7692ac", + "id": "3f6b8789-58e0-4f00-8fe7-c560fbf3faa1", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -92157,7 +92157,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": "301ff27b-1393-496f-910c-a00830a10cee", + "id": "04daf8f5-472b-4805-be62-b89ce20fdd0a", "name": "Get Password Org Config", "request": { "name": "Get Password Org Config", @@ -92186,7 +92186,7 @@ }, "response": [ { - "id": "83c6feb0-e333-4db5-a078-c02868d1ec57", + "id": "3e6b293c-8076-4fde-b3e8-91b272b94184", "name": "Reference to the password org config.", "originalRequest": { "url": { @@ -92229,7 +92229,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f5c56c47-f0cf-4a75-8816-d9c1b4a065ed", + "id": "474747c9-8e14-407b-861d-f611ac796a87", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -92272,7 +92272,7 @@ "_postman_previewlanguage": "json" }, { - "id": "253824d3-2fbb-4be2-8291-7cc363ea221b", + "id": "f6f12715-b883-4c36-815b-75c753646c95", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -92315,7 +92315,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0f637c65-0abc-4a16-a1b4-85cdf302fe4c", + "id": "da82f422-8cea-4010-ab51-d7e8fb083ae2", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -92358,7 +92358,7 @@ "_postman_previewlanguage": "json" }, { - "id": "87bd8759-c9ae-4f8f-8d94-a6ee47320f63", + "id": "bf73bf77-5cba-42ac-b5c1-f7a9abe6fc35", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -92401,7 +92401,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d4020d57-0267-491a-ab71-2087ad1eb1fe", + "id": "c67bab9b-16a6-4d0f-a65f-1f71a4d2cd58", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -92450,7 +92450,7 @@ } }, { - "id": "cf19b581-03c6-44b5-9039-e4d2fa2bc1ad", + "id": "db6f5b4f-a7f6-47bd-9464-2d95800827f3", "name": "Update Password Org Config", "request": { "name": "Update Password Org Config", @@ -92492,7 +92492,7 @@ }, "response": [ { - "id": "3b480423-a418-4fc7-824f-afa00ce0db3c", + "id": "71802023-f87f-4126-8bd8-a2b1fe25add2", "name": "Reference to the password org config.", "originalRequest": { "url": { @@ -92548,7 +92548,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c9fccb2b-f79d-4a3d-bc28-108301c57495", + "id": "d07a197c-afd3-462e-a91d-3f48f52c0fd8", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -92604,7 +92604,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f71726d0-2546-4a51-b97a-2938771cdf99", + "id": "b82ff228-bf5a-4113-a3aa-a54e9568384b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -92660,7 +92660,7 @@ "_postman_previewlanguage": "json" }, { - "id": "43f8b9f5-0c0c-4eb0-bf62-e8a524781b17", + "id": "d58fdfc6-7589-4787-9c68-0680c3e69287", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -92716,7 +92716,7 @@ "_postman_previewlanguage": "json" }, { - "id": "93265c34-b4a4-4a97-88c8-c033c6f34bee", + "id": "4dba799e-0253-42c3-ae22-e306bf99ad9a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -92772,7 +92772,7 @@ "_postman_previewlanguage": "json" }, { - "id": "93fb7316-7e44-4de1-8ca8-bf04dd866a41", + "id": "f2183a5f-21ad-4d0e-ba2c-68660b82856e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -92834,7 +92834,7 @@ } }, { - "id": "afe529de-e9b6-43e9-b171-ece24f0ea031", + "id": "01190ce7-beda-4646-ba0e-47f417c28545", "name": "Create Password Org Config", "request": { "name": "Create Password Org Config", @@ -92876,7 +92876,7 @@ }, "response": [ { - "id": "ad68a3f0-9440-4ebf-a6a5-d7dcc155e5a6", + "id": "919490b2-fd9c-41d8-a481-6c541940fa48", "name": "Reference to the password org config.", "originalRequest": { "url": { @@ -92932,7 +92932,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f91b3b0d-dbd0-459f-9f2d-5cf56b287b83", + "id": "b904748b-3ea7-46c7-a86c-6f7be8635bd7", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -92988,7 +92988,7 @@ "_postman_previewlanguage": "json" }, { - "id": "98c80c7d-80e2-45d9-a5cb-5e7cb8eaea74", + "id": "0d5f89f6-40af-44d8-b32f-772ade8c6c87", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -93044,7 +93044,7 @@ "_postman_previewlanguage": "json" }, { - "id": "42c63309-7ed3-4c5d-abb8-4c704f014457", + "id": "53cef952-c79a-4f67-aff2-9fe18614eba1", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -93100,7 +93100,7 @@ "_postman_previewlanguage": "json" }, { - "id": "980b8f70-4049-4c34-8c8a-2105ea4eba2b", + "id": "065cb599-08af-4892-b9bf-d4350c78d2ec", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -93156,7 +93156,7 @@ "_postman_previewlanguage": "json" }, { - "id": "94307e67-62e7-4434-bf53-b64db78a94c5", + "id": "001cf755-c956-4bb6-b2b0-6de631aabc61", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -93224,7 +93224,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": "a023599a-5008-4716-8bc7-b7e1d8da2ee4", + "id": "b94ea702-78c6-4dc8-a46f-7e1b5cd67ea4", "name": "Get Password Dictionary", "request": { "name": "Get Password Dictionary", @@ -93253,7 +93253,7 @@ }, "response": [ { - "id": "19c5b52f-4267-4776-9f43-e2473b9d377c", + "id": "a2778132-331c-406c-bbb4-b507f3267ba9", "name": "A password dictionary response", "originalRequest": { "url": { @@ -93291,12 +93291,12 @@ "value": "text/plain" } ], - "body": "voluptate Excepteur Ut labore", + "body": "dolor do cillum", "cookie": [], "_postman_previewlanguage": "text" }, { - "id": "9df72cd2-ee2d-48e8-b5c5-1ee8229494ba", + "id": "1347fc80-4562-4990-904b-341a05d5c7ce", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -93339,7 +93339,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a077fb7f-b810-42ba-8b1f-8191fac6a419", + "id": "5db4811d-2060-476d-8b34-cf882e75c88f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -93382,7 +93382,7 @@ "_postman_previewlanguage": "json" }, { - "id": "92bac9c4-0f23-4f10-b9d3-9119acd2c4f8", + "id": "a66646d4-1e64-47fc-8a9e-474204183974", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -93425,7 +93425,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9cb153a9-8ce6-4879-9ab3-fb410561d073", + "id": "5a35fa93-fcc5-481c-8074-434b39aad1a3", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -93468,7 +93468,7 @@ "_postman_previewlanguage": "json" }, { - "id": "565a7676-0a01-4551-a9e2-87ae2c66d38a", + "id": "4ff5da1e-3eee-47e2-9b6a-46c5f0e4aa75", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -93511,7 +93511,7 @@ "_postman_previewlanguage": "json" }, { - "id": "98827155-202d-4797-8ac9-67bfd0938abd", + "id": "3e181487-54ed-447e-b4a3-7c2a4566acf3", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -93560,7 +93560,7 @@ } }, { - "id": "13ec67d2-22cb-4287-84b9-aa16149d8660", + "id": "6e1255f9-4e3d-47cf-ac70-9f4ee7ed0add", "name": "Update Password Dictionary", "request": { "name": "Update Password Dictionary", @@ -93598,7 +93598,7 @@ "type": "text/plain" }, "key": "file", - "value": "mollit est culpa", + "value": "in veniam elit", "type": "text" } ] @@ -93606,7 +93606,7 @@ }, "response": [ { - "id": "b0239050-a883-40fa-af76-6ceb89c6d8f0", + "id": "992e281b-e3e7-4bf5-8668-29362c180063", "name": "Successfully updated.", "originalRequest": { "url": { @@ -93643,7 +93643,7 @@ "type": "text/plain" }, "key": "file", - "value": "mollit est culpa", + "value": "in veniam elit", "type": "text" } ] @@ -93656,7 +93656,7 @@ "_postman_previewlanguage": "text" }, { - "id": "be5cedc4-83d0-4c79-9cf3-1ac1f5743868", + "id": "72c2549d-9660-4ac9-aeb3-eff1bb554d10", "name": "Created.", "originalRequest": { "url": { @@ -93693,7 +93693,7 @@ "type": "text/plain" }, "key": "file", - "value": "mollit est culpa", + "value": "in veniam elit", "type": "text" } ] @@ -93706,7 +93706,7 @@ "_postman_previewlanguage": "text" }, { - "id": "510939c2-38ab-46de-8ab2-05bef9723021", + "id": "f8dab2f9-6e11-40b3-95bf-41a52f8ab931", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -93747,7 +93747,7 @@ "type": "text/plain" }, "key": "file", - "value": "mollit est culpa", + "value": "in veniam elit", "type": "text" } ] @@ -93766,7 +93766,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d8675f68-af5e-43ca-b9d5-730f7a6f6343", + "id": "a0a115ae-748a-4e3f-931d-6bca29428e4b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -93807,7 +93807,7 @@ "type": "text/plain" }, "key": "file", - "value": "mollit est culpa", + "value": "in veniam elit", "type": "text" } ] @@ -93826,7 +93826,7 @@ "_postman_previewlanguage": "json" }, { - "id": "306bb2e7-dbfe-450d-8d6a-575c8bfef0b4", + "id": "d4aea810-98b7-4c7d-9bb4-bb4809f397ef", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -93867,7 +93867,7 @@ "type": "text/plain" }, "key": "file", - "value": "mollit est culpa", + "value": "in veniam elit", "type": "text" } ] @@ -93886,7 +93886,7 @@ "_postman_previewlanguage": "json" }, { - "id": "31632528-e9c5-4803-bc69-3c10f65dc518", + "id": "56eede0c-0226-467f-b045-368539a82fd8", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -93927,7 +93927,7 @@ "type": "text/plain" }, "key": "file", - "value": "mollit est culpa", + "value": "in veniam elit", "type": "text" } ] @@ -93946,7 +93946,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9180badf-b678-4e28-a0e4-a0dbff777812", + "id": "9a0d123d-698d-4187-a313-8cbe24c08835", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -93987,7 +93987,7 @@ "type": "text/plain" }, "key": "file", - "value": "mollit est culpa", + "value": "in veniam elit", "type": "text" } ] @@ -94006,7 +94006,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bb6f9a1b-82d6-4c4a-a0a0-ad0366e14023", + "id": "2e279db4-9fd2-4260-b8e4-606a778a581a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -94047,7 +94047,7 @@ "type": "text/plain" }, "key": "file", - "value": "mollit est culpa", + "value": "in veniam elit", "type": "text" } ] @@ -94078,7 +94078,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": "8bf80642-b5c7-4524-be25-44e3eab7eaa7", + "id": "a2411161-1d01-4b5a-bfa8-aa4e0ed90e7a", "name": "Query Password Info", "request": { "name": "Query Password Info", @@ -94120,7 +94120,7 @@ }, "response": [ { - "id": "8e6d51de-4a4a-435f-8266-8baf15c3a10f", + "id": "1e81856d-3ada-4d17-8c88-e9a12e0a589c", "name": "Reference to the password info.", "originalRequest": { "url": { @@ -94176,7 +94176,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0f6988c2-5e72-4318-b2f7-91c20e93ea20", + "id": "bfce0abc-7055-4e31-8661-f350cf504c96", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -94232,7 +94232,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6e7bd5df-ee83-46a2-8374-e130f1c3c8de", + "id": "db1d5854-fa67-462d-9449-da1460172b16", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -94288,7 +94288,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ff5aeeb9-8493-4cc0-908f-f3d70d359b65", + "id": "074262ec-e3d4-4c7b-8de7-c0af5eba8789", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -94344,7 +94344,7 @@ "_postman_previewlanguage": "json" }, { - "id": "611cd4f8-7eed-4778-a037-a55c5d8a8df9", + "id": "fc016265-c2e6-4b18-b747-89abac321d08", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -94400,7 +94400,7 @@ "_postman_previewlanguage": "json" }, { - "id": "423c5067-781a-4f9a-a738-2e65b2d578ff", + "id": "acd1fff4-f26c-4d1d-bc49-d33a1f921ce4", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -94462,7 +94462,7 @@ } }, { - "id": "3007134a-f583-46de-a778-9b648c5122f9", + "id": "e5217192-0ef6-44c1-b433-7deb1c424e86", "name": "Set Identity's Password", "request": { "name": "Set Identity's Password", @@ -94504,7 +94504,7 @@ }, "response": [ { - "id": "9d5df5c4-6bcd-4400-af6f-ede9043631eb", + "id": "102fd419-c92f-4d1d-8358-7ae15fdc6ac6", "name": "Reference to the password change.", "originalRequest": { "url": { @@ -94560,7 +94560,7 @@ "_postman_previewlanguage": "json" }, { - "id": "91e4a54f-4778-43ad-84c9-934287a6ede7", + "id": "7d569473-bd1a-4303-8cd5-fb7799281a33", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -94616,7 +94616,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d3c2557d-1741-4a2d-bca7-4684a84afb1d", + "id": "93b2b9b8-f5a0-4dcf-b69d-9ae5718443f0", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -94672,7 +94672,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4dadc470-4b0b-4308-ade1-37ab016c10f1", + "id": "b86c0db2-8718-4284-8dde-14bcc0698bb7", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -94728,7 +94728,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ccd41e0d-6180-4eee-a38d-f39031fea7cc", + "id": "e75bd794-c887-4df6-a1aa-6838e85eff45", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -94784,7 +94784,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a41f61dc-8768-4802-97b6-d6cfa57fd2df", + "id": "5a2af989-9bc2-4261-bba7-9eaf350a69ab", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -94846,7 +94846,7 @@ } }, { - "id": "a1506037-80aa-4671-8c60-e053a745edea", + "id": "398cd1be-fe83-4528-acbd-ac5b647f5106", "name": "Get Password Change Request Status", "request": { "name": "Get Password Change Request Status", @@ -94887,7 +94887,7 @@ }, "response": [ { - "id": "d7668483-2a51-4241-a50c-dd2ee5bf5076", + "id": "41d0174b-715a-4e99-9479-24e80feb1211", "name": "Status of the password change request", "originalRequest": { "url": { @@ -94931,7 +94931,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ba1e0d8c-1fd5-4b3f-82bc-f8a5abd65004", + "id": "338ff1b0-df41-4118-9d68-25daa1e864ab", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -94975,7 +94975,7 @@ "_postman_previewlanguage": "json" }, { - "id": "70afd954-4cb7-45dd-8cfc-fe2a1e69aa74", + "id": "f62bad2b-1e7e-4564-a3e3-9938b98a0c32", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -95019,7 +95019,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c2b74009-cfb8-4996-98b7-45d2ac31a878", + "id": "f7e09bbd-8d87-4806-889a-42135b3d4a69", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -95063,7 +95063,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4463e195-2cdc-4371-9d0a-5c7165557cb8", + "id": "b12ec7a8-789c-4536-94c7-33748737e608", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -95107,7 +95107,7 @@ "_postman_previewlanguage": "json" }, { - "id": "93e6e32c-68e2-43f4-9c47-7cdff39ba0e8", + "id": "5f8467aa-3a0c-4c84-9e29-21494b5111c6", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -95151,7 +95151,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7bf777fc-f74a-4616-8a8b-d8d36a846a82", + "id": "47c02e58-ce41-4721-9741-ff0b6d36d2c3", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -95207,7 +95207,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": "fbec7a4e-df20-46fd-a8b6-5fb9ab5650ca", + "id": "ac6279f1-94a2-4bd4-a5d7-f81481f837dd", "name": "Get Password Policy by ID", "request": { "name": "Get Password Policy by ID", @@ -95248,7 +95248,7 @@ }, "response": [ { - "id": "f1b94844-32c4-4d03-aa21-2cc6408e3811", + "id": "4cfcedfa-2fc3-48ba-bef1-ec1b15c699bd", "name": "Reference to the password policy.", "originalRequest": { "url": { @@ -95292,7 +95292,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7e536e05-4c1c-47df-9b86-307c21ba60dc", + "id": "d815d9c8-c393-424a-875e-4a25f2b05e46", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -95336,7 +95336,7 @@ "_postman_previewlanguage": "json" }, { - "id": "39997d20-ec65-4801-809c-ef93528e59c4", + "id": "ff24022a-e71d-4a14-bd35-8e349cc4c292", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -95380,7 +95380,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f068aa6a-f3c4-44d7-b7ca-c1c1149056e3", + "id": "332e4ba6-11bf-45ee-8c7d-5aec70dfcfa1", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -95424,7 +95424,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fb0da8eb-57d0-4a4b-a411-5cfafe0e8dd0", + "id": "e75ab5e1-6593-4996-809f-e77a7b3aeddd", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -95468,7 +95468,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b8845cdb-85d6-4efe-9ed5-3358ac563b33", + "id": "05063cd4-f0d8-4ba6-8475-63e7c07d55bb", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -95512,7 +95512,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3184fa02-4f2c-4de7-9115-a0f911e45383", + "id": "10574d3c-7b6a-4635-bd8b-bae2353fc54b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -95562,7 +95562,7 @@ } }, { - "id": "f18e93d2-52b8-44ea-a32c-98f7fce61b59", + "id": "cd456c81-2d32-4ca9-986d-fa6f9d9ef487", "name": "Update Password Policy by ID", "request": { "name": "Update Password Policy by ID", @@ -95616,7 +95616,7 @@ }, "response": [ { - "id": "85d5c3f7-070d-43f9-bd68-22f2c9229059", + "id": "f1143b19-3415-4497-ac8e-d94169c7f26e", "name": "Reference to the password policy.", "originalRequest": { "url": { @@ -95673,7 +95673,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ecf09faa-3f41-4ec8-8dee-8a40bb277596", + "id": "0927f858-9fca-461e-9d5e-4a6b17520144", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -95730,7 +95730,7 @@ "_postman_previewlanguage": "json" }, { - "id": "95f7f897-cb4f-4c94-b4d1-d28343d60d48", + "id": "83cf9ddd-50c1-4084-bcf8-a2a7ac181e56", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -95787,7 +95787,7 @@ "_postman_previewlanguage": "json" }, { - "id": "89ef2edf-2daa-4e3b-85b0-1f54ca5d1a86", + "id": "5b6bee3d-1a18-43d5-9414-7c008e787c08", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -95844,7 +95844,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3daa9cb6-e84e-4959-a961-6cdfaec93239", + "id": "07170cea-39a4-4d60-9df9-7a79724b127f", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -95901,7 +95901,7 @@ "_postman_previewlanguage": "json" }, { - "id": "60f2f169-79aa-423c-8a80-a1871b64652f", + "id": "356af9f9-57cb-47f2-9dbc-5356434fa058", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -95958,7 +95958,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0be5211f-c7ba-40fb-94a4-09486542a5d6", + "id": "9fc0fe2a-c66b-44ee-a56e-1e752ec2332c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -96021,7 +96021,7 @@ } }, { - "id": "19659ccb-659a-47a1-bc4b-b2cb0a08981a", + "id": "8014dca8-56e6-47fd-9600-361170ba384b", "name": "Delete Password Policy by ID", "request": { "name": "Delete Password Policy by ID", @@ -96062,7 +96062,7 @@ }, "response": [ { - "id": "24a0f836-bfe7-4e34-8dca-19a0826e6521", + "id": "ea9300a6-07d1-4131-987b-4d312b2a7e75", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -96096,7 +96096,7 @@ "_postman_previewlanguage": "text" }, { - "id": "9b4f18f8-31b3-40da-a9a5-45f2463504be", + "id": "7982d2fc-d703-4194-9e43-1840a6fe7ec8", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -96140,7 +96140,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f84a81b0-048d-4dd4-ac6c-cd7e0d334157", + "id": "c8f32d8f-2106-4cc6-bd1a-4a82131c1e70", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -96184,7 +96184,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b3f829e3-fc45-4f29-ad80-427630b8b88a", + "id": "7a9b1be6-2054-47ab-80bf-8b6c0b979a19", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -96228,7 +96228,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1b7da145-6cba-4d85-b999-72d362747610", + "id": "d5c4d53a-a48c-48ff-be6b-0e94739d25bd", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -96272,7 +96272,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9dbb5977-d611-4030-8e05-47a2a8ec823f", + "id": "518d03ca-a87d-425e-920c-6146724befef", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -96316,7 +96316,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c32baf3d-da5d-4151-b5f2-e6e363781c49", + "id": "00d9c8c0-c5ec-4ee9-bd74-e9bed85ac529", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -96366,7 +96366,7 @@ } }, { - "id": "d0f5a905-329a-430f-8890-795dd23ad1a4", + "id": "0938bbf9-9fa4-4344-b6c8-58c2fccc3df1", "name": "Create Password Policy", "request": { "name": "Create Password Policy", @@ -96408,7 +96408,7 @@ }, "response": [ { - "id": "815bda87-0787-4892-bb74-c9e329f34183", + "id": "139b7a8e-b6e6-4a25-b8b8-2099a43ad67e", "name": "Reference to the password policy.", "originalRequest": { "url": { @@ -96459,12 +96459,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"2c91808e7d976f3b017d9f5ceae440c8\",\n \"description\": \"Information about the Password Policy\",\n \"name\": \"PasswordPolicy Example\",\n \"dateCreated\": \"1975-02-16T11:09:05.379Z\",\n \"lastUpdated\": \"1995-10-03T14:52:02.442Z\",\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\": \"est ma\",\n \"modified\": \"esse veniam\",\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\": \"2004-10-19T14:21:47.158Z\",\n \"lastUpdated\": \"2020-05-24T01:15:46.783Z\",\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\": \"ullamco in cupidatat velit est\",\n \"modified\": \"nulla\",\n \"sourceIds\": [\n \"2c91808382ffee0b01830de154f14034\",\n \"2f98808382ffee0b01830de154f12134\"\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "5b7c5fd6-6f1e-4121-8f47-857de9946e6a", + "id": "14844514-2923-4d77-8f4b-119431694ab8", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -96520,7 +96520,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ddde2552-a62f-41e7-8d33-ccb7eb1203bc", + "id": "64548e56-d3da-4507-ae30-baf4480c94b3", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -96576,7 +96576,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f07d2203-c472-4b42-a702-b1b20fce8077", + "id": "28c83b97-d124-422f-9c99-04871f14e166", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -96632,7 +96632,7 @@ "_postman_previewlanguage": "json" }, { - "id": "decd25b9-fbf7-41f8-a341-fdf1d1f9b2a9", + "id": "542544f1-9fac-4a7d-8e01-638a134252a3", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -96688,7 +96688,7 @@ "_postman_previewlanguage": "json" }, { - "id": "02863674-891f-41c1-81c6-d9198729456b", + "id": "4e14ebdc-9095-4068-9eb3-fd41f0ba1b52", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -96744,7 +96744,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6dc85d29-e26f-4aed-9106-2cbcf7393418", + "id": "6d18a381-0602-4c8e-844f-dc5c7a251c21", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -96806,7 +96806,7 @@ } }, { - "id": "33afc44c-a437-4e77-ba40-b406be691fe4", + "id": "e4c2c882-8599-430d-a091-0128c81f5654", "name": "List Password Policies", "request": { "name": "List Password Policies", @@ -96863,7 +96863,7 @@ }, "response": [ { - "id": "3160956f-2998-433e-a4c9-e002b11c47db", + "id": "894378ef-d086-4bbb-b22e-9343ceee6890", "name": "List of all Password Policies.", "originalRequest": { "url": { @@ -96934,7 +96934,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e275a682-71b2-4718-a546-6eb0408ebfe9", + "id": "be75f6ba-fc44-4796-a4a1-b8bf0a932fbe", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -97005,7 +97005,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b055a351-b759-4118-b6f0-a545a48c418e", + "id": "9f1ac8ae-6fdc-4073-aa15-f5edd4b62dcd", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -97076,7 +97076,7 @@ "_postman_previewlanguage": "json" }, { - "id": "53f9b172-c9a7-4548-adfb-ae286cca126f", + "id": "d77389bd-afe8-4051-aa65-1651d83d42f3", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -97147,7 +97147,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b9672d98-8164-4bdf-89b9-a366da1a985c", + "id": "4327c402-7c3d-41b7-a700-6427125c883e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -97218,7 +97218,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2754a87c-2f2b-4f66-9667-cab9199ae6f6", + "id": "d095ccf5-876b-4af8-af07-fc9355766bbf", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -97301,7 +97301,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": "63e615a7-170d-411e-aabc-e2671a8dbdab", + "id": "80a1759e-d56c-4cd8-af0c-5a40921ae93a", "name": "Get Password Sync Group List", "request": { "name": "Get Password Sync Group List", @@ -97358,7 +97358,7 @@ }, "response": [ { - "id": "dfa26506-8bb3-4c97-a39b-f68d9c5287f4", + "id": "84fa7ccf-26f6-46d4-9a0e-01c9f1707cd5", "name": "A list of password sync groups.", "originalRequest": { "url": { @@ -97429,7 +97429,7 @@ "_postman_previewlanguage": "json" }, { - "id": "34d3725e-7bd4-410b-833e-384997947a8c", + "id": "4f0865c8-5a73-45b2-b4bf-ff83de38ddb1", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -97500,7 +97500,7 @@ "_postman_previewlanguage": "json" }, { - "id": "662fff51-d3a2-4b33-86fa-a1b363fddb52", + "id": "4f0f8ced-dae7-4550-be12-6ffb43dad82c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -97571,7 +97571,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bb854447-9fcd-4d4b-a9bc-19cfb99e0693", + "id": "e56d2f45-b136-41e6-8ed3-c99ee09cd956", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -97642,7 +97642,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f7517532-a25b-43c3-8c54-b0eb349faee3", + "id": "6b4f62a2-8217-44a5-a8ab-fd757a06bf6c", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -97713,7 +97713,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6c88ed2b-7b4e-4306-9b7d-bae4eaa3ac5b", + "id": "9f9009d6-629b-4aa8-a0b3-f8cdfc3bf74e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -97790,7 +97790,7 @@ } }, { - "id": "8648189f-d589-44dd-8151-ffab35599284", + "id": "d4a54446-01d8-48fd-a043-7db17a213906", "name": "Create Password Sync Group", "request": { "name": "Create Password Sync Group", @@ -97832,7 +97832,7 @@ }, "response": [ { - "id": "16d77088-29ef-4cad-8796-9328d447068e", + "id": "a917de88-1783-4396-9493-195cdeb05e17", "name": "Reference to the password sync group.", "originalRequest": { "url": { @@ -97888,7 +97888,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0ae2e16e-0d7c-4f0e-947d-703a2d61381f", + "id": "e2b1c2ed-ddc5-44a8-9900-c5931a99b16a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -97944,7 +97944,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a5a06a72-cbbf-4d7c-b039-e0b038110a03", + "id": "dd20b126-9680-4f8e-b619-670ff0e30ec3", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -98000,7 +98000,7 @@ "_postman_previewlanguage": "json" }, { - "id": "533c987d-040d-4418-8b9c-45e0b2624de2", + "id": "e0beb474-723e-480d-b736-8c206ace03b3", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -98056,7 +98056,7 @@ "_postman_previewlanguage": "json" }, { - "id": "778b8a5a-2dbf-4499-8686-751391c94c4d", + "id": "65d5a590-2dd5-47ce-ab7e-b511b1ecbcf4", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -98112,7 +98112,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cac4ce61-7755-4155-ab2b-9998ebb550a7", + "id": "360101d3-32f9-4f67-b1d3-c016cda52f21", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -98174,7 +98174,7 @@ } }, { - "id": "5e567d50-9403-432c-839e-9757bede70db", + "id": "91f1e567-4628-4623-a5c6-2255a1f07a8a", "name": "Get Password Sync Group by ID", "request": { "name": "Get Password Sync Group by ID", @@ -98215,7 +98215,7 @@ }, "response": [ { - "id": "588e43ee-1164-4175-aa5d-5bd24fbf51cb", + "id": "9080b529-32ca-4e23-8d19-389c45aac086", "name": "Reference to the password sync group.", "originalRequest": { "url": { @@ -98259,7 +98259,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b6f147ca-1ceb-46a2-856b-729d53927a47", + "id": "8690dedc-41b6-4a44-b6de-bac82b77ae2a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -98303,7 +98303,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d6d7044d-14b1-41b8-b6cd-495099d47165", + "id": "16ea1de2-0877-40c0-8807-355c3ac7daac", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -98347,7 +98347,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a8e050e1-b1ad-4290-862d-20fc4582874c", + "id": "c407e880-16c6-46a4-996e-02a2c68f290e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -98391,7 +98391,7 @@ "_postman_previewlanguage": "json" }, { - "id": "01aeeae7-83cd-4051-9bd9-9dd429374a6b", + "id": "7d91a26f-10da-4db8-bc03-b9358a7b25b1", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -98435,7 +98435,7 @@ "_postman_previewlanguage": "json" }, { - "id": "579f9d9d-5362-4c99-b78c-c439490b42b3", + "id": "66d0b6d6-a79e-4eee-bc69-02b62020c36f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -98479,7 +98479,7 @@ "_postman_previewlanguage": "json" }, { - "id": "30ed2a18-0665-4154-975f-ad7f6015c776", + "id": "29c57959-c1ce-4110-a262-844931cea3b1", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -98529,7 +98529,7 @@ } }, { - "id": "bc83c62c-359d-49f1-91f9-663394b34d08", + "id": "15f17671-d67e-4492-8aad-bd10372cfccf", "name": "Update Password Sync Group by ID", "request": { "name": "Update Password Sync Group by ID", @@ -98583,7 +98583,7 @@ }, "response": [ { - "id": "69469a64-d5ea-4955-9901-9a448eb26cbc", + "id": "bff79c2e-2f4c-4bf5-ac6a-593ccc5f748d", "name": "Reference to the password sync group.", "originalRequest": { "url": { @@ -98640,7 +98640,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9236d7c5-7a2b-4ce6-882d-6ec1ac79c46c", + "id": "917e175d-96a4-4920-905e-5d9da2bb2282", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -98697,7 +98697,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cc47a815-ffe2-4604-8459-0093073430aa", + "id": "0679ae2a-df0b-43f2-a71a-9d9a5061a70f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -98754,7 +98754,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4cd6c4a6-912d-4be5-82b4-5d16a27090c2", + "id": "f77ac688-3e10-4190-90a5-e6849f90e011", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -98811,7 +98811,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2b9c8860-2209-4aef-9626-48385ed0fc4f", + "id": "65f58fc8-453b-46e5-b8f5-207ab19a16af", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -98868,7 +98868,7 @@ "_postman_previewlanguage": "json" }, { - "id": "76723de2-803a-4793-8680-2ec0a08bb340", + "id": "485862e8-b6af-4592-a480-5d088782397a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -98925,7 +98925,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4a518cbe-ad4a-4b21-bbeb-16b8e5e0c7db", + "id": "9d2120cb-2466-41ec-a84a-4a05ccfdce9d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -98988,7 +98988,7 @@ } }, { - "id": "c574287c-7a83-4abd-b57e-1d98d59c4d46", + "id": "e1610e25-1fba-4290-90cc-8aafcdf39954", "name": "Delete Password Sync Group by ID", "request": { "name": "Delete Password Sync Group by ID", @@ -99029,7 +99029,7 @@ }, "response": [ { - "id": "064170d9-0626-46a5-9db8-8b0104239ad1", + "id": "8d85c2f3-c6f0-4159-a4a7-de9c2c13757f", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -99063,7 +99063,7 @@ "_postman_previewlanguage": "text" }, { - "id": "231f94ca-3891-45b2-bc56-06356c191924", + "id": "c433d624-2521-4ddb-8e81-13525df62de4", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -99107,7 +99107,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1cb515cc-f5ad-4e90-b3a0-501af491c01a", + "id": "0d47ba9d-d445-4913-9cd0-c9eb841c846e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -99151,7 +99151,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7fd4536c-a079-4865-87c0-b5f6525d9592", + "id": "26d65729-1a30-481d-b775-42509ab90382", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -99195,7 +99195,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3024b354-645a-44df-ae1c-22b5505a566a", + "id": "351198f8-227a-4558-8a6f-656df0c43c11", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -99239,7 +99239,7 @@ "_postman_previewlanguage": "json" }, { - "id": "93ce2dc5-be99-4a25-a0a9-c857a8ceab90", + "id": "47c4507c-6183-4ad3-b496-686f81a4ff49", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -99295,7 +99295,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": "8a644d91-d120-45c5-87d3-a8c09fd5b4e7", + "id": "8e76f44f-afbc-495b-bbac-955bdfe076b0", "name": "List Personal Access Tokens", "request": { "name": "List Personal Access Tokens", @@ -99343,7 +99343,7 @@ }, "response": [ { - "id": "3c067b97-3948-43fc-a982-e89baa68df65", + "id": "35d04f1a-3f5d-40ef-b988-531b5f7ac41a", "name": "List of personal access tokens.", "originalRequest": { "url": { @@ -99405,7 +99405,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ae53b744-a9e6-47bf-8a0d-c470679a473d", + "id": "5546e2f9-8fea-4b71-b72f-66e9da01bb8c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -99467,7 +99467,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5b092e9a-f64f-4e0c-b678-e49330f3d3eb", + "id": "02896564-c170-48e2-9e5f-95291b631035", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -99529,7 +99529,7 @@ "_postman_previewlanguage": "json" }, { - "id": "25a0a5db-9923-445b-af95-4e645bb6e757", + "id": "5b77dfa2-c8e1-4bd2-b1b7-18b15429d3d4", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -99591,7 +99591,7 @@ "_postman_previewlanguage": "json" }, { - "id": "805643a1-2abf-483c-accc-5f7eda154789", + "id": "25600ce0-c04f-4604-b9a3-07469f9c5832", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -99653,7 +99653,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e47b8b17-f515-40f0-ae3c-a40086d9b9f6", + "id": "cbd9c65e-a348-4d8a-8572-2297f580c521", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -99721,7 +99721,7 @@ } }, { - "id": "9c5468b4-f386-40eb-82eb-1fdd6832a738", + "id": "7fa2fdb4-a126-4933-8462-beaec0b42bba", "name": "Create Personal Access Token", "request": { "name": "Create Personal Access Token", @@ -99763,7 +99763,7 @@ }, "response": [ { - "id": "d4745ac3-115d-46a0-99e5-05db8c75c794", + "id": "f7af246f-6a03-4c1c-a965-d3004bfd0c00", "name": "Created. Note - this is the only time Personal Access Tokens' secret attribute will be displayed.", "originalRequest": { "url": { @@ -99819,7 +99819,7 @@ "_postman_previewlanguage": "json" }, { - "id": "36d77a5f-f6e0-4d8b-b622-f17d6e8fd5d7", + "id": "c498125b-e5fb-4ea4-8473-130330a0fe1c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -99875,7 +99875,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2c528a91-91f6-4f8d-801d-b47051c1a2eb", + "id": "942fe8ff-b56d-41c1-ae82-df63fdd4a08f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -99931,7 +99931,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a898e951-ae52-4c56-91fa-e4c723155631", + "id": "e9a706f1-c1e9-40f3-9612-934b91ff5456", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -99987,7 +99987,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c2faba3a-b7de-497f-9aca-28904e9dcaaf", + "id": "5904cd75-a580-41b7-a2c4-4dda900680e2", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -100043,7 +100043,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ae6dd16e-54be-4a4d-964c-e615ea7111da", + "id": "a7d9f258-0cdc-42cc-a658-9add7a6ba9f0", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -100105,7 +100105,7 @@ } }, { - "id": "a6a90675-c506-4409-9b46-3df3fb614051", + "id": "47e36195-f198-4822-b3fb-7be549d7e186", "name": "Patch Personal Access Token", "request": { "name": "Patch Personal Access Token", @@ -100159,7 +100159,7 @@ }, "response": [ { - "id": "3536bd9d-e76b-4dc4-86d3-a855dc6ce143", + "id": "f2b624fa-dd8c-4b6d-ba69-a5da93800f4c", "name": "Indicates the PATCH operation succeeded, and returns the PAT's new representation.", "originalRequest": { "url": { @@ -100216,7 +100216,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f40f413f-d0c0-47e2-9b14-a3fdcfa7abc7", + "id": "5d60cfe2-159e-4755-a23c-90e0ab758cc4", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -100273,7 +100273,7 @@ "_postman_previewlanguage": "json" }, { - "id": "807cf3e9-b239-4966-ac8a-792083b17456", + "id": "e6c2ece8-8f0a-422d-b8ee-200be6a46d73", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -100330,7 +100330,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4ef589fd-1dc8-4ea9-978b-67a37d2a346c", + "id": "5030b252-b559-4267-9ebe-59e7d992c9f6", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -100387,7 +100387,7 @@ "_postman_previewlanguage": "json" }, { - "id": "21229282-8e22-44c6-a4e1-e2cd1268249d", + "id": "8e797bf5-e913-41e1-90bc-d69798a9172a", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -100444,7 +100444,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5a63e6ec-0e1b-4d0c-947c-b8bde427b8d4", + "id": "ff019c1a-7d49-4f26-be95-3ccccc06e6cf", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -100501,7 +100501,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8efa1413-db60-4968-92fe-1b7a672bb574", + "id": "498f74a3-9124-4f04-bdb9-524d28725c14", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -100564,7 +100564,7 @@ } }, { - "id": "f4f16254-d4a3-413d-8b85-985e5a447e6d", + "id": "bc3317af-07ca-4182-9ef6-6eb50c9cd324", "name": "Delete Personal Access Token", "request": { "name": "Delete Personal Access Token", @@ -100605,7 +100605,7 @@ }, "response": [ { - "id": "1b9c3757-612d-4b7d-b8be-c436ea59eb1b", + "id": "abc2e47e-a04c-4eee-9352-8206adc5f12a", "name": "No content.", "originalRequest": { "url": { @@ -100639,7 +100639,7 @@ "_postman_previewlanguage": "text" }, { - "id": "7c438cf5-18e0-402a-9ed5-ca67d813340f", + "id": "845d6cb7-fb4d-456c-99fa-0cf5378a91c6", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -100683,7 +100683,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cdda4bee-bec6-448d-b582-b8afdd963e47", + "id": "aeb494bb-fbd3-488f-8907-53ec6dceec56", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -100727,7 +100727,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9bfbd147-7b86-4ae8-a92f-879c19eb76d8", + "id": "b06de1d4-a6e8-4826-bfd6-f782d85388a5", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -100771,7 +100771,7 @@ "_postman_previewlanguage": "json" }, { - "id": "35531577-2854-40a9-97ec-e10bd4cd7170", + "id": "4fa5da08-f6b1-476f-a4ba-593b7f8cfe2c", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -100815,7 +100815,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b4bfecae-22c8-451c-a13b-762c880a62c0", + "id": "377ca809-8a2a-46d1-bfd2-0dd5360d222a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -100859,7 +100859,7 @@ "_postman_previewlanguage": "json" }, { - "id": "916badf9-0757-4a7f-bfa2-8382e15960de", + "id": "d3ea1c13-a975-4c1a-9a59-91421036689f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -100915,7 +100915,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": "fabc177f-802b-493a-be7d-f2b79adecd3b", + "id": "f38b5d50-30f4-4938-8d65-bf451e40b7c2", "name": "Get a list of public identities", "request": { "name": "Get a list of public identities", @@ -100996,7 +100996,7 @@ }, "response": [ { - "id": "e371174c-c21c-407f-81ea-b0a5040cc6b5", + "id": "d5761351-6801-4bd3-abf7-e08c2546e270", "name": "A list of public identity objects.", "originalRequest": { "url": { @@ -101094,7 +101094,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d8c3927c-9844-4627-b12e-db57f8f654d8", + "id": "e2c6f30b-d079-4ee6-888c-05e9b256de57", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -101192,7 +101192,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9a9c6cfe-563b-452c-befc-1c0ec0bf6cda", + "id": "a767ba6f-1415-493a-ac90-b89f082062d1", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -101290,7 +101290,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d37170d7-31d4-4178-b56a-d34943ee5f59", + "id": "7fde00b9-ee1b-4c2b-a28d-c21b8f21cd68", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -101388,7 +101388,7 @@ "_postman_previewlanguage": "json" }, { - "id": "70f54166-57d7-4ddd-ad2e-d1d4ae5d041e", + "id": "17d2d322-809b-4922-b670-7e83ebbb3b0b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -101486,7 +101486,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5c6982e3-d397-4e07-942e-070f421351b6", + "id": "3701ba32-97f9-4b57-bd5c-122c3599c69d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -101596,7 +101596,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": "75228073-c9f4-437e-aff3-29d3f673daa1", + "id": "61ec5764-a73d-425c-9f5c-9dea6cff0829", "name": "Get the Public Identities Configuration", "request": { "name": "Get the Public Identities Configuration", @@ -101625,7 +101625,7 @@ }, "response": [ { - "id": "8867f177-ce98-4664-908c-181b5137ab4f", + "id": "12b30900-4c93-4972-82d8-29af8f9c133b", "name": "Request succeeded.", "originalRequest": { "url": { @@ -101668,7 +101668,7 @@ "_postman_previewlanguage": "json" }, { - "id": "930ff916-2e5a-4736-ad80-f84a4cafe62c", + "id": "35b46b41-e4ae-427e-9fc6-3b4039acffea", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -101711,7 +101711,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4574ed77-9a5e-4bf3-8352-2d28963e1723", + "id": "682d749f-acdd-4fba-9b96-a12c26d2bc5b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -101754,7 +101754,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d0595900-b9c7-40f2-94f2-9cef76c3f3e0", + "id": "16b953a2-0c71-4c06-95c6-529606c80c26", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -101797,7 +101797,7 @@ "_postman_previewlanguage": "json" }, { - "id": "846365bd-9d9e-41a9-954d-87a6f3e41bc1", + "id": "b14134b7-19d0-41d6-9fcc-8371bab56f78", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -101840,7 +101840,7 @@ "_postman_previewlanguage": "json" }, { - "id": "992ac9d9-8a24-4ba1-8a27-7eccea9aaa37", + "id": "48fc067c-2ad7-4707-92b0-60b1001116f2", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -101889,7 +101889,7 @@ } }, { - "id": "57a8ccb3-960b-46c5-8d3c-d768db351c2a", + "id": "15269096-f046-4803-b313-c6e98fcab70a", "name": "Update the Public Identities Configuration", "request": { "name": "Update the Public Identities Configuration", @@ -101931,7 +101931,7 @@ }, "response": [ { - "id": "2c6d163a-0359-45da-baa3-90a84b5fa018", + "id": "bdf7408d-359c-4005-af67-8f1c83a85a17", "name": "Request succeeded.", "originalRequest": { "url": { @@ -101987,7 +101987,7 @@ "_postman_previewlanguage": "json" }, { - "id": "057b5fca-9f7c-4381-ad22-c4c8103eeaa4", + "id": "b94824b0-3b3a-4a3c-87bc-283c6a34538b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -102043,7 +102043,7 @@ "_postman_previewlanguage": "json" }, { - "id": "46ccb6d3-4cda-485d-8c35-e15c35b6126b", + "id": "131061ff-3fde-448e-9cd1-3bfc5832f030", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -102099,7 +102099,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5ed2eba2-e916-4e96-b504-faf6638515c1", + "id": "8c0ea5cc-c6e6-4821-91ae-c75fb1014828", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -102155,7 +102155,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c187b5ab-5bf2-4798-b370-10c79130e98c", + "id": "502f6c4a-6919-4850-a3b7-fa8c9188604a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -102211,7 +102211,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dae5a46d-4faa-47fa-afac-f5cc8b406c63", + "id": "cd287753-29db-483b-b3a8-615ed77163a9", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -102279,7 +102279,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": "8b83aa85-1287-4eba-97a6-e122624fda02", + "id": "ac1690ff-34b1-4553-9499-a18a06cbd1b9", "name": "Get Report Result", "request": { "name": "Get Report Result", @@ -102331,7 +102331,7 @@ }, "response": [ { - "id": "1bcf3212-89b2-41bf-a8a8-a59b8efa0e39", + "id": "88eb8bb7-cadb-44d6-bc9d-99885f8624f6", "name": "Details about report that was run or is running.", "originalRequest": { "url": { @@ -102386,7 +102386,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b89ab41b-9f0c-422e-9b10-dbf9d43c3c6c", + "id": "3e73ca24-a823-4b0e-a9cd-662b5e4c9bc0", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -102441,7 +102441,7 @@ "_postman_previewlanguage": "json" }, { - "id": "421bd2d3-809a-40ab-b5aa-e852314ec884", + "id": "a1236645-6912-47be-a3c8-7b81da3058f2", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -102496,7 +102496,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4d0f8811-40ae-4a00-9c50-b6daf64311f4", + "id": "8f6c2177-e729-49e7-8714-9642eedd6e2e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -102551,7 +102551,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d558d8a8-4d33-4f47-9069-7c997e8998f1", + "id": "db86ebe1-a817-4885-9089-59fb2e1219df", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -102606,7 +102606,7 @@ "_postman_previewlanguage": "json" }, { - "id": "42904a2e-45c2-4c6e-9ee6-56110b369b33", + "id": "f336fb32-3c26-4ad8-bc00-514d863c8309", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -102667,7 +102667,7 @@ } }, { - "id": "8311d5f3-49bc-457b-a874-dd20e2d3a46c", + "id": "9f593330-ccba-499f-be99-64b81073f131", "name": "Run Report", "request": { "name": "Run Report", @@ -102710,7 +102710,7 @@ }, "response": [ { - "id": "694410a5-61f7-4b9e-8154-92e27c6559c7", + "id": "84cf9f51-47fd-46c2-98b4-ec50f6bc866c", "name": "Identities Details Report task result.", "originalRequest": { "url": { @@ -102767,7 +102767,7 @@ "_postman_previewlanguage": "json" }, { - "id": "357b8172-1084-470b-903d-e9a758804d55", + "id": "a69384ca-a129-443d-8036-d26964ff123c", "name": "Identities Details Report task result.", "originalRequest": { "url": { @@ -102824,7 +102824,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f252151f-2a27-4fc6-b38e-690e39c2324a", + "id": "f2c07c07-0e50-4450-b3e2-81c88a4f2594", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -102881,7 +102881,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bdc7bb59-b83a-4498-9382-14ee5f6b9b59", + "id": "2e4f4cc7-086b-49bb-9cf6-a4368a898ad6", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -102938,7 +102938,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ec6ae9c7-f88e-491d-ba03-f0f044e7461b", + "id": "f556acf8-23a4-4c56-984e-ee767522418b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -102995,7 +102995,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b53c1337-dbbd-4fa6-8380-f228b2ec1c25", + "id": "6f49085b-a6be-483e-b0ee-d35520ad7c7b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -103052,7 +103052,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ea1d5b72-fca1-4c2a-bd8f-5e0b8377cccc", + "id": "a17aaea0-2bc2-4f07-b0de-19fcad948d6f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -103115,7 +103115,7 @@ } }, { - "id": "b55d3c4c-ec95-4e33-940d-de429cbf7fa9", + "id": "bc6b2e4f-8ca1-4944-a4c5-34a2c8095742", "name": "Cancel Report", "request": { "name": "Cancel Report", @@ -103157,7 +103157,7 @@ }, "response": [ { - "id": "ed709e9f-1940-4e06-bd29-907338b74185", + "id": "49ad3750-9074-4f53-9923-ba88c63f78dd", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -103192,7 +103192,7 @@ "_postman_previewlanguage": "text" }, { - "id": "cc59b594-a49b-417d-9cef-f87f0691cde0", + "id": "27ebc9be-f133-4441-8e96-53c3cbd8c9e4", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -103237,7 +103237,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ef7e5885-ea30-44c5-901d-41566f8eb0b7", + "id": "bf666cd6-2747-4f1f-8a62-5a9944cdb883", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -103282,7 +103282,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cd751790-7822-4344-bc65-6a7148db43d9", + "id": "db39a371-98bc-434a-ad11-f9a24507e06e", "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": "9624ae25-efac-4364-90f4-e9fe015e2499", + "id": "94dc47a6-a814-405f-8be7-ddd7e1df0ee3", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -103372,7 +103372,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1870e7f0-bb9b-463b-afd8-731018b9d91b", + "id": "71acee0d-16d5-4cc8-8e90-62dc1f9a100f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -103423,7 +103423,7 @@ } }, { - "id": "69020653-ceb9-41f1-9b05-f9a0a54264a3", + "id": "b35afd49-f665-4e13-89a5-7b7c19b6489d", "name": "Get Report File", "request": { "name": "Get Report File", @@ -103492,7 +103492,7 @@ }, "response": [ { - "id": "72e2be8d-9870-41cd-885f-96a9a089732d", + "id": "7124617a-23be-4c0b-82c2-9c90600fca57", "name": "Report file in selected format. CSV by default.", "originalRequest": { "url": { @@ -103568,12 +103568,12 @@ "value": "attachment;filename=\\\"fileName\"" } ], - "body": "voluptate Excepteur Ut labore", + "body": "dolor do cillum", "cookie": [], "_postman_previewlanguage": "text" }, { - "id": "1f770e62-236d-4157-9562-8e3e9a3a401a", + "id": "e2da53d7-dcc8-443f-9f8a-271f03a4f31f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -103645,7 +103645,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1e86504c-15f5-4468-95ba-5496955fcfb1", + "id": "99f7f065-b771-4583-9854-b98bfae412a1", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -103717,7 +103717,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f63aa965-d79e-4ee0-89c0-0bde25eca565", + "id": "4c0288d1-89a1-40fe-ae9b-9a5d3285e6a6", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -103789,7 +103789,7 @@ "_postman_previewlanguage": "json" }, { - "id": "24a36c94-9215-4030-9451-dee54b26d97e", + "id": "e97f18b5-0278-4d65-8316-e0f2945a2ceb", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -103861,7 +103861,7 @@ "_postman_previewlanguage": "json" }, { - "id": "de5640c3-354f-4a50-968b-a25eb9a1c047", + "id": "d3e3c346-0b12-4b10-81df-ee78f6471d4c", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -103933,7 +103933,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e6f3168d-09e4-4b64-a39c-59344937cb79", + "id": "8ed7b279-58b9-4928-8ab9-d3a01d20286a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -104017,7 +104017,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": "b9d4ae5f-a0ab-4aa6-950e-318cb8bef752", + "id": "12106b5c-6fbe-42ea-9239-f435c1c126c0", "name": "Requestable Objects List", "request": { "name": "Requestable Objects List", @@ -104128,7 +104128,7 @@ }, "response": [ { - "id": "0e3daa38-ac78-44a1-9b0c-85b6ac17235e", + "id": "820523ad-d3f1-4edd-be70-c8de03852b4e", "name": "List of requestable objects", "originalRequest": { "url": { @@ -104253,7 +104253,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0cbfaa9f-438c-459d-a913-1c39cb8f3b22", + "id": "8f43ed6c-54d5-4d9e-82e3-24a833dc5d20", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -104378,7 +104378,7 @@ "_postman_previewlanguage": "json" }, { - "id": "87c9b865-cd28-4b26-888b-9c15ac8777ca", + "id": "fa20ce71-a02a-4691-8706-22ba9761d2dd", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -104503,7 +104503,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6c186a9c-4a3b-4ddd-8db6-ad6bfc31c014", + "id": "ecde5b2c-2753-4418-92a6-ba1ff3313025", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -104628,7 +104628,7 @@ "_postman_previewlanguage": "json" }, { - "id": "40f23365-5ce8-4ebf-b809-67b145bdf0fd", + "id": "726e356d-ce19-4841-baf2-2a70ee0bd146", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -104753,7 +104753,7 @@ "_postman_previewlanguage": "json" }, { - "id": "09f8989b-8b82-4218-b9be-3c642338a0e7", + "id": "64aee329-8974-4610-9f22-6848825b9390", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -104890,7 +104890,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": "5949a929-85d0-4cf8-b65c-c8e57bd098a1", + "id": "e07e2e0f-3cf4-43f9-8c20-812934a83cc8", "name": "List Roles", "request": { "name": "List Roles", @@ -104992,7 +104992,7 @@ }, "response": [ { - "id": "46a170ee-e20a-45a6-8800-029e9ca2e134", + "id": "1ee1f0eb-9b96-4b89-9da4-4b2bf69b45fb", "name": "List of Roles", "originalRequest": { "url": { @@ -105103,12 +105103,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"name\": \"Role 2567\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"support\"\n },\n \"id\": \"2c918086749d78830174a1a40e121518\",\n \"created\": \"2021-03-01T22:32:58.104Z\",\n \"modified\": \"2021-03-02T20:22:28.104Z\",\n \"description\": \"Urna amet cursus pellentesque nisl orci maximus lorem nisl euismod fusce morbi placerat adipiscing maecenas nisi tristique et metus et lacus sed morbi nunc nisl maximus magna arcu varius sollicitudin elementum enim maecenas nisi id ipsum tempus fusce diam ipsum tortor.\",\n \"accessProfiles\": [\n {\n \"id\": \"ff808081751e6e129f1518161919ecca\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"Access Profile 2567\"\n },\n {\n \"id\": \"ff808081751e6e129f1518161919ecca\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"Access Profile 2567\"\n }\n ],\n \"entitlements\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n }\n ],\n \"membership\": {\n \"type\": \"IDENTITY_LIST\",\n \"criteria\": {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n }\n ]\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n }\n ]\n }\n ]\n },\n \"identities\": [\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\",\n \"aliasName\": \"t.edison\"\n },\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\",\n \"aliasName\": \"t.edison\"\n }\n ]\n },\n \"legacyMembershipInfo\": {\n \"type\": \"IDENTITY_LIST\"\n },\n \"enabled\": true,\n \"requestable\": true,\n \"accessRequestConfig\": {\n \"commentsRequired\": true,\n \"denialCommentsRequired\": true,\n \"approvalSchemes\": [\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n },\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n }\n ]\n },\n \"revocationRequestConfig\": null,\n \"segments\": [\n \"f7b1b8a3-5fed-4fd4-ad29-82014e137e19\",\n \"29cb6c06-1da8-43ea-8be4-b3125f248f2a\"\n ],\n \"dimensional\": false,\n \"dimensionRefs\": \"dolore incididunt exercitation in\"\n },\n {\n \"name\": \"Role 2567\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"support\"\n },\n \"id\": \"2c918086749d78830174a1a40e121518\",\n \"created\": \"2021-03-01T22:32:58.104Z\",\n \"modified\": \"2021-03-02T20:22:28.104Z\",\n \"description\": \"Urna amet cursus pellentesque nisl orci maximus lorem nisl euismod fusce morbi placerat adipiscing maecenas nisi tristique et metus et lacus sed morbi nunc nisl maximus magna arcu varius sollicitudin elementum enim maecenas nisi id ipsum tempus fusce diam ipsum tortor.\",\n \"accessProfiles\": [\n {\n \"id\": \"ff808081751e6e129f1518161919ecca\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"Access Profile 2567\"\n },\n {\n \"id\": \"ff808081751e6e129f1518161919ecca\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"Access Profile 2567\"\n }\n ],\n \"entitlements\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n }\n ],\n \"membership\": {\n \"type\": \"IDENTITY_LIST\",\n \"criteria\": {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n }\n ]\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n }\n ]\n }\n ]\n },\n \"identities\": [\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\",\n \"aliasName\": \"t.edison\"\n },\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\",\n \"aliasName\": \"t.edison\"\n }\n ]\n },\n \"legacyMembershipInfo\": {\n \"type\": \"IDENTITY_LIST\"\n },\n \"enabled\": true,\n \"requestable\": true,\n \"accessRequestConfig\": {\n \"commentsRequired\": true,\n \"denialCommentsRequired\": true,\n \"approvalSchemes\": [\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n },\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n }\n ]\n },\n \"revocationRequestConfig\": null,\n \"segments\": [\n \"f7b1b8a3-5fed-4fd4-ad29-82014e137e19\",\n \"29cb6c06-1da8-43ea-8be4-b3125f248f2a\"\n ],\n \"dimensional\": true,\n \"dimensionRefs\": \"ut incididunt nulla quis occaecat\"\n }\n]", + "body": "[\n {\n \"name\": \"Role 2567\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"support\"\n },\n \"id\": \"2c918086749d78830174a1a40e121518\",\n \"created\": \"2021-03-01T22:32:58.104Z\",\n \"modified\": \"2021-03-02T20:22:28.104Z\",\n \"description\": \"Urna amet cursus pellentesque nisl orci maximus lorem nisl euismod fusce morbi placerat adipiscing maecenas nisi tristique et metus et lacus sed morbi nunc nisl maximus magna arcu varius sollicitudin elementum enim maecenas nisi id ipsum tempus fusce diam ipsum tortor.\",\n \"accessProfiles\": [\n {\n \"id\": \"ff808081751e6e129f1518161919ecca\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"Access Profile 2567\"\n },\n {\n \"id\": \"ff808081751e6e129f1518161919ecca\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"Access Profile 2567\"\n }\n ],\n \"entitlements\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n }\n ],\n \"membership\": {\n \"type\": \"IDENTITY_LIST\",\n \"criteria\": {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n }\n ]\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n }\n ]\n }\n ]\n },\n \"identities\": [\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\",\n \"aliasName\": \"t.edison\"\n },\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\",\n \"aliasName\": \"t.edison\"\n }\n ]\n },\n \"legacyMembershipInfo\": {\n \"type\": \"IDENTITY_LIST\"\n },\n \"enabled\": true,\n \"requestable\": true,\n \"accessRequestConfig\": {\n \"commentsRequired\": true,\n \"denialCommentsRequired\": true,\n \"approvalSchemes\": [\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n },\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n }\n ]\n },\n \"revocationRequestConfig\": null,\n \"segments\": [\n \"f7b1b8a3-5fed-4fd4-ad29-82014e137e19\",\n \"29cb6c06-1da8-43ea-8be4-b3125f248f2a\"\n ],\n \"dimensional\": false,\n \"dimensionRefs\": \"mollit\"\n },\n {\n \"name\": \"Role 2567\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"support\"\n },\n \"id\": \"2c918086749d78830174a1a40e121518\",\n \"created\": \"2021-03-01T22:32:58.104Z\",\n \"modified\": \"2021-03-02T20:22:28.104Z\",\n \"description\": \"Urna amet cursus pellentesque nisl orci maximus lorem nisl euismod fusce morbi placerat adipiscing maecenas nisi tristique et metus et lacus sed morbi nunc nisl maximus magna arcu varius sollicitudin elementum enim maecenas nisi id ipsum tempus fusce diam ipsum tortor.\",\n \"accessProfiles\": [\n {\n \"id\": \"ff808081751e6e129f1518161919ecca\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"Access Profile 2567\"\n },\n {\n \"id\": \"ff808081751e6e129f1518161919ecca\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"Access Profile 2567\"\n }\n ],\n \"entitlements\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n }\n ],\n \"membership\": {\n \"type\": \"IDENTITY_LIST\",\n \"criteria\": {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n }\n ]\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n }\n ]\n }\n ]\n },\n \"identities\": [\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\",\n \"aliasName\": \"t.edison\"\n },\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\",\n \"aliasName\": \"t.edison\"\n }\n ]\n },\n \"legacyMembershipInfo\": {\n \"type\": \"IDENTITY_LIST\"\n },\n \"enabled\": true,\n \"requestable\": true,\n \"accessRequestConfig\": {\n \"commentsRequired\": true,\n \"denialCommentsRequired\": true,\n \"approvalSchemes\": [\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n },\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n }\n ]\n },\n \"revocationRequestConfig\": null,\n \"segments\": [\n \"f7b1b8a3-5fed-4fd4-ad29-82014e137e19\",\n \"29cb6c06-1da8-43ea-8be4-b3125f248f2a\"\n ],\n \"dimensional\": true,\n \"dimensionRefs\": \"co\"\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "6fd58995-3f97-412b-8b09-454991159ef3", + "id": "da1dd69e-b623-4184-9141-28db49390112", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -105224,7 +105224,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c17fef1f-46c1-4895-a4e5-1ba78c3fc06b", + "id": "62d107d4-802c-4c17-96d6-4d84f2595c03", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -105340,7 +105340,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6cbccbfb-1f9b-447e-aacc-48e4009c50a0", + "id": "8850dacc-d81a-4c27-8c61-06d228cb5686", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -105456,7 +105456,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9b27d6e0-913d-4282-99a9-9c921b367ce1", + "id": "22b8ee33-7fdd-4afd-9ca0-9c0e3cf223db", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -105572,7 +105572,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ae786a24-2e2e-4fa1-811c-baefaff35265", + "id": "ec16e050-0f80-4acb-a5b2-a87f2fcbb2d1", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -105694,7 +105694,7 @@ } }, { - "id": "b334a3a9-09e0-4517-848f-c6a8b3c4fd77", + "id": "a3bfff71-e118-41f1-a1b1-07ce440392b2", "name": "Create a Role", "request": { "name": "Create a Role", @@ -105725,7 +105725,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"Role 2567\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"support\"\n },\n \"id\": \"2c918086749d78830174a1a40e121518\",\n \"created\": \"2021-03-01T22:32:58.104Z\",\n \"modified\": \"2021-03-02T20:22:28.104Z\",\n \"description\": \"Urna amet cursus pellentesque nisl orci maximus lorem nisl euismod fusce morbi placerat adipiscing maecenas nisi tristique et metus et lacus sed morbi nunc nisl maximus magna arcu varius sollicitudin elementum enim maecenas nisi id ipsum tempus fusce diam ipsum tortor.\",\n \"accessProfiles\": [\n {\n \"id\": \"ff808081751e6e129f1518161919ecca\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"Access Profile 2567\"\n },\n {\n \"id\": \"ff808081751e6e129f1518161919ecca\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"Access Profile 2567\"\n }\n ],\n \"entitlements\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n }\n ],\n \"membership\": {\n \"type\": \"IDENTITY_LIST\",\n \"criteria\": {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n }\n ]\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n }\n ]\n }\n ]\n },\n \"identities\": [\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\",\n \"aliasName\": \"t.edison\"\n },\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\",\n \"aliasName\": \"t.edison\"\n }\n ]\n },\n \"legacyMembershipInfo\": {\n \"type\": \"IDENTITY_LIST\"\n },\n \"enabled\": true,\n \"requestable\": true,\n \"accessRequestConfig\": {\n \"commentsRequired\": true,\n \"denialCommentsRequired\": true,\n \"approvalSchemes\": [\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n },\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n }\n ]\n },\n \"revocationRequestConfig\": null,\n \"segments\": [\n \"f7b1b8a3-5fed-4fd4-ad29-82014e137e19\",\n \"29cb6c06-1da8-43ea-8be4-b3125f248f2a\"\n ],\n \"dimensional\": true,\n \"dimensionRefs\": \"ex deserunt ullam\"\n}", + "raw": "{\n \"name\": \"Role 2567\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"support\"\n },\n \"id\": \"2c918086749d78830174a1a40e121518\",\n \"created\": \"2021-03-01T22:32:58.104Z\",\n \"modified\": \"2021-03-02T20:22:28.104Z\",\n \"description\": \"Urna amet cursus pellentesque nisl orci maximus lorem nisl euismod fusce morbi placerat adipiscing maecenas nisi tristique et metus et lacus sed morbi nunc nisl maximus magna arcu varius sollicitudin elementum enim maecenas nisi id ipsum tempus fusce diam ipsum tortor.\",\n \"accessProfiles\": [\n {\n \"id\": \"ff808081751e6e129f1518161919ecca\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"Access Profile 2567\"\n },\n {\n \"id\": \"ff808081751e6e129f1518161919ecca\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"Access Profile 2567\"\n }\n ],\n \"entitlements\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n }\n ],\n \"membership\": {\n \"type\": \"IDENTITY_LIST\",\n \"criteria\": {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n }\n ]\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n }\n ]\n }\n ]\n },\n \"identities\": [\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\",\n \"aliasName\": \"t.edison\"\n },\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\",\n \"aliasName\": \"t.edison\"\n }\n ]\n },\n \"legacyMembershipInfo\": {\n \"type\": \"IDENTITY_LIST\"\n },\n \"enabled\": true,\n \"requestable\": true,\n \"accessRequestConfig\": {\n \"commentsRequired\": true,\n \"denialCommentsRequired\": true,\n \"approvalSchemes\": [\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n },\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n }\n ]\n },\n \"revocationRequestConfig\": null,\n \"segments\": [\n \"f7b1b8a3-5fed-4fd4-ad29-82014e137e19\",\n \"29cb6c06-1da8-43ea-8be4-b3125f248f2a\"\n ],\n \"dimensional\": false,\n \"dimensionRefs\": \"commodo aute Duis dolore quis\"\n}", "options": { "raw": { "headerFamily": "json", @@ -105736,7 +105736,7 @@ }, "response": [ { - "id": "723683fe-37c8-47bc-aa7f-641e61d44461", + "id": "0e79bdd9-4069-45c9-8c83-38e6e38e934d", "name": "Role created", "originalRequest": { "url": { @@ -105770,7 +105770,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"Role 2567\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"support\"\n },\n \"id\": \"2c918086749d78830174a1a40e121518\",\n \"created\": \"2021-03-01T22:32:58.104Z\",\n \"modified\": \"2021-03-02T20:22:28.104Z\",\n \"description\": \"Urna amet cursus pellentesque nisl orci maximus lorem nisl euismod fusce morbi placerat adipiscing maecenas nisi tristique et metus et lacus sed morbi nunc nisl maximus magna arcu varius sollicitudin elementum enim maecenas nisi id ipsum tempus fusce diam ipsum tortor.\",\n \"accessProfiles\": [\n {\n \"id\": \"ff808081751e6e129f1518161919ecca\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"Access Profile 2567\"\n },\n {\n \"id\": \"ff808081751e6e129f1518161919ecca\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"Access Profile 2567\"\n }\n ],\n \"entitlements\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n }\n ],\n \"membership\": {\n \"type\": \"IDENTITY_LIST\",\n \"criteria\": {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n }\n ]\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n }\n ]\n }\n ]\n },\n \"identities\": [\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\",\n \"aliasName\": \"t.edison\"\n },\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\",\n \"aliasName\": \"t.edison\"\n }\n ]\n },\n \"legacyMembershipInfo\": {\n \"type\": \"IDENTITY_LIST\"\n },\n \"enabled\": true,\n \"requestable\": true,\n \"accessRequestConfig\": {\n \"commentsRequired\": true,\n \"denialCommentsRequired\": true,\n \"approvalSchemes\": [\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n },\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n }\n ]\n },\n \"revocationRequestConfig\": null,\n \"segments\": [\n \"f7b1b8a3-5fed-4fd4-ad29-82014e137e19\",\n \"29cb6c06-1da8-43ea-8be4-b3125f248f2a\"\n ],\n \"dimensional\": true,\n \"dimensionRefs\": \"ex deserunt ullam\"\n}", + "raw": "{\n \"name\": \"Role 2567\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"support\"\n },\n \"id\": \"2c918086749d78830174a1a40e121518\",\n \"created\": \"2021-03-01T22:32:58.104Z\",\n \"modified\": \"2021-03-02T20:22:28.104Z\",\n \"description\": \"Urna amet cursus pellentesque nisl orci maximus lorem nisl euismod fusce morbi placerat adipiscing maecenas nisi tristique et metus et lacus sed morbi nunc nisl maximus magna arcu varius sollicitudin elementum enim maecenas nisi id ipsum tempus fusce diam ipsum tortor.\",\n \"accessProfiles\": [\n {\n \"id\": \"ff808081751e6e129f1518161919ecca\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"Access Profile 2567\"\n },\n {\n \"id\": \"ff808081751e6e129f1518161919ecca\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"Access Profile 2567\"\n }\n ],\n \"entitlements\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n }\n ],\n \"membership\": {\n \"type\": \"IDENTITY_LIST\",\n \"criteria\": {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n }\n ]\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n }\n ]\n }\n ]\n },\n \"identities\": [\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\",\n \"aliasName\": \"t.edison\"\n },\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\",\n \"aliasName\": \"t.edison\"\n }\n ]\n },\n \"legacyMembershipInfo\": {\n \"type\": \"IDENTITY_LIST\"\n },\n \"enabled\": true,\n \"requestable\": true,\n \"accessRequestConfig\": {\n \"commentsRequired\": true,\n \"denialCommentsRequired\": true,\n \"approvalSchemes\": [\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n },\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n }\n ]\n },\n \"revocationRequestConfig\": null,\n \"segments\": [\n \"f7b1b8a3-5fed-4fd4-ad29-82014e137e19\",\n \"29cb6c06-1da8-43ea-8be4-b3125f248f2a\"\n ],\n \"dimensional\": false,\n \"dimensionRefs\": \"commodo aute Duis dolore quis\"\n}", "options": { "raw": { "headerFamily": "json", @@ -105787,12 +105787,12 @@ "value": "application/json" } ], - "body": "{\n \"name\": \"Role 2567\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"support\"\n },\n \"id\": \"2c918086749d78830174a1a40e121518\",\n \"created\": \"2021-03-01T22:32:58.104Z\",\n \"modified\": \"2021-03-02T20:22:28.104Z\",\n \"description\": \"Urna amet cursus pellentesque nisl orci maximus lorem nisl euismod fusce morbi placerat adipiscing maecenas nisi tristique et metus et lacus sed morbi nunc nisl maximus magna arcu varius sollicitudin elementum enim maecenas nisi id ipsum tempus fusce diam ipsum tortor.\",\n \"accessProfiles\": [\n {\n \"id\": \"ff808081751e6e129f1518161919ecca\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"Access Profile 2567\"\n },\n {\n \"id\": \"ff808081751e6e129f1518161919ecca\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"Access Profile 2567\"\n }\n ],\n \"entitlements\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n }\n ],\n \"membership\": {\n \"type\": \"IDENTITY_LIST\",\n \"criteria\": {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n }\n ]\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n }\n ]\n }\n ]\n },\n \"identities\": [\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\",\n \"aliasName\": \"t.edison\"\n },\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\",\n \"aliasName\": \"t.edison\"\n }\n ]\n },\n \"legacyMembershipInfo\": {\n \"type\": \"IDENTITY_LIST\"\n },\n \"enabled\": true,\n \"requestable\": true,\n \"accessRequestConfig\": {\n \"commentsRequired\": true,\n \"denialCommentsRequired\": true,\n \"approvalSchemes\": [\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n },\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n }\n ]\n },\n \"revocationRequestConfig\": null,\n \"segments\": [\n \"f7b1b8a3-5fed-4fd4-ad29-82014e137e19\",\n \"29cb6c06-1da8-43ea-8be4-b3125f248f2a\"\n ],\n \"dimensional\": true,\n \"dimensionRefs\": \"ex deserunt ullam\"\n}", + "body": "{\n \"name\": \"Role 2567\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"support\"\n },\n \"id\": \"2c918086749d78830174a1a40e121518\",\n \"created\": \"2021-03-01T22:32:58.104Z\",\n \"modified\": \"2021-03-02T20:22:28.104Z\",\n \"description\": \"Urna amet cursus pellentesque nisl orci maximus lorem nisl euismod fusce morbi placerat adipiscing maecenas nisi tristique et metus et lacus sed morbi nunc nisl maximus magna arcu varius sollicitudin elementum enim maecenas nisi id ipsum tempus fusce diam ipsum tortor.\",\n \"accessProfiles\": [\n {\n \"id\": \"ff808081751e6e129f1518161919ecca\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"Access Profile 2567\"\n },\n {\n \"id\": \"ff808081751e6e129f1518161919ecca\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"Access Profile 2567\"\n }\n ],\n \"entitlements\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n }\n ],\n \"membership\": {\n \"type\": \"IDENTITY_LIST\",\n \"criteria\": {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n }\n ]\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n }\n ]\n }\n ]\n },\n \"identities\": [\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\",\n \"aliasName\": \"t.edison\"\n },\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\",\n \"aliasName\": \"t.edison\"\n }\n ]\n },\n \"legacyMembershipInfo\": {\n \"type\": \"IDENTITY_LIST\"\n },\n \"enabled\": true,\n \"requestable\": true,\n \"accessRequestConfig\": {\n \"commentsRequired\": true,\n \"denialCommentsRequired\": true,\n \"approvalSchemes\": [\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n },\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n }\n ]\n },\n \"revocationRequestConfig\": null,\n \"segments\": [\n \"f7b1b8a3-5fed-4fd4-ad29-82014e137e19\",\n \"29cb6c06-1da8-43ea-8be4-b3125f248f2a\"\n ],\n \"dimensional\": false,\n \"dimensionRefs\": \"commodo aute Duis dolore quis\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "5c326ee7-4d37-4363-bf26-63626d6989ab", + "id": "1d6e794f-8151-4b03-8691-c40be8be975b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -105826,7 +105826,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"Role 2567\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"support\"\n },\n \"id\": \"2c918086749d78830174a1a40e121518\",\n \"created\": \"2021-03-01T22:32:58.104Z\",\n \"modified\": \"2021-03-02T20:22:28.104Z\",\n \"description\": \"Urna amet cursus pellentesque nisl orci maximus lorem nisl euismod fusce morbi placerat adipiscing maecenas nisi tristique et metus et lacus sed morbi nunc nisl maximus magna arcu varius sollicitudin elementum enim maecenas nisi id ipsum tempus fusce diam ipsum tortor.\",\n \"accessProfiles\": [\n {\n \"id\": \"ff808081751e6e129f1518161919ecca\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"Access Profile 2567\"\n },\n {\n \"id\": \"ff808081751e6e129f1518161919ecca\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"Access Profile 2567\"\n }\n ],\n \"entitlements\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n }\n ],\n \"membership\": {\n \"type\": \"IDENTITY_LIST\",\n \"criteria\": {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n }\n ]\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n }\n ]\n }\n ]\n },\n \"identities\": [\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\",\n \"aliasName\": \"t.edison\"\n },\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\",\n \"aliasName\": \"t.edison\"\n }\n ]\n },\n \"legacyMembershipInfo\": {\n \"type\": \"IDENTITY_LIST\"\n },\n \"enabled\": true,\n \"requestable\": true,\n \"accessRequestConfig\": {\n \"commentsRequired\": true,\n \"denialCommentsRequired\": true,\n \"approvalSchemes\": [\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n },\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n }\n ]\n },\n \"revocationRequestConfig\": null,\n \"segments\": [\n \"f7b1b8a3-5fed-4fd4-ad29-82014e137e19\",\n \"29cb6c06-1da8-43ea-8be4-b3125f248f2a\"\n ],\n \"dimensional\": true,\n \"dimensionRefs\": \"ex deserunt ullam\"\n}", + "raw": "{\n \"name\": \"Role 2567\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"support\"\n },\n \"id\": \"2c918086749d78830174a1a40e121518\",\n \"created\": \"2021-03-01T22:32:58.104Z\",\n \"modified\": \"2021-03-02T20:22:28.104Z\",\n \"description\": \"Urna amet cursus pellentesque nisl orci maximus lorem nisl euismod fusce morbi placerat adipiscing maecenas nisi tristique et metus et lacus sed morbi nunc nisl maximus magna arcu varius sollicitudin elementum enim maecenas nisi id ipsum tempus fusce diam ipsum tortor.\",\n \"accessProfiles\": [\n {\n \"id\": \"ff808081751e6e129f1518161919ecca\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"Access Profile 2567\"\n },\n {\n \"id\": \"ff808081751e6e129f1518161919ecca\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"Access Profile 2567\"\n }\n ],\n \"entitlements\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n }\n ],\n \"membership\": {\n \"type\": \"IDENTITY_LIST\",\n \"criteria\": {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n }\n ]\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n }\n ]\n }\n ]\n },\n \"identities\": [\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\",\n \"aliasName\": \"t.edison\"\n },\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\",\n \"aliasName\": \"t.edison\"\n }\n ]\n },\n \"legacyMembershipInfo\": {\n \"type\": \"IDENTITY_LIST\"\n },\n \"enabled\": true,\n \"requestable\": true,\n \"accessRequestConfig\": {\n \"commentsRequired\": true,\n \"denialCommentsRequired\": true,\n \"approvalSchemes\": [\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n },\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n }\n ]\n },\n \"revocationRequestConfig\": null,\n \"segments\": [\n \"f7b1b8a3-5fed-4fd4-ad29-82014e137e19\",\n \"29cb6c06-1da8-43ea-8be4-b3125f248f2a\"\n ],\n \"dimensional\": false,\n \"dimensionRefs\": \"commodo aute Duis dolore quis\"\n}", "options": { "raw": { "headerFamily": "json", @@ -105848,7 +105848,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3c775b6c-7935-4b5f-95e2-71d6dbcd00e9", + "id": "22bde62b-239b-4986-a166-2604e1f744e1", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -105882,7 +105882,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"Role 2567\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"support\"\n },\n \"id\": \"2c918086749d78830174a1a40e121518\",\n \"created\": \"2021-03-01T22:32:58.104Z\",\n \"modified\": \"2021-03-02T20:22:28.104Z\",\n \"description\": \"Urna amet cursus pellentesque nisl orci maximus lorem nisl euismod fusce morbi placerat adipiscing maecenas nisi tristique et metus et lacus sed morbi nunc nisl maximus magna arcu varius sollicitudin elementum enim maecenas nisi id ipsum tempus fusce diam ipsum tortor.\",\n \"accessProfiles\": [\n {\n \"id\": \"ff808081751e6e129f1518161919ecca\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"Access Profile 2567\"\n },\n {\n \"id\": \"ff808081751e6e129f1518161919ecca\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"Access Profile 2567\"\n }\n ],\n \"entitlements\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n }\n ],\n \"membership\": {\n \"type\": \"IDENTITY_LIST\",\n \"criteria\": {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n }\n ]\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n }\n ]\n }\n ]\n },\n \"identities\": [\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\",\n \"aliasName\": \"t.edison\"\n },\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\",\n \"aliasName\": \"t.edison\"\n }\n ]\n },\n \"legacyMembershipInfo\": {\n \"type\": \"IDENTITY_LIST\"\n },\n \"enabled\": true,\n \"requestable\": true,\n \"accessRequestConfig\": {\n \"commentsRequired\": true,\n \"denialCommentsRequired\": true,\n \"approvalSchemes\": [\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n },\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n }\n ]\n },\n \"revocationRequestConfig\": null,\n \"segments\": [\n \"f7b1b8a3-5fed-4fd4-ad29-82014e137e19\",\n \"29cb6c06-1da8-43ea-8be4-b3125f248f2a\"\n ],\n \"dimensional\": true,\n \"dimensionRefs\": \"ex deserunt ullam\"\n}", + "raw": "{\n \"name\": \"Role 2567\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"support\"\n },\n \"id\": \"2c918086749d78830174a1a40e121518\",\n \"created\": \"2021-03-01T22:32:58.104Z\",\n \"modified\": \"2021-03-02T20:22:28.104Z\",\n \"description\": \"Urna amet cursus pellentesque nisl orci maximus lorem nisl euismod fusce morbi placerat adipiscing maecenas nisi tristique et metus et lacus sed morbi nunc nisl maximus magna arcu varius sollicitudin elementum enim maecenas nisi id ipsum tempus fusce diam ipsum tortor.\",\n \"accessProfiles\": [\n {\n \"id\": \"ff808081751e6e129f1518161919ecca\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"Access Profile 2567\"\n },\n {\n \"id\": \"ff808081751e6e129f1518161919ecca\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"Access Profile 2567\"\n }\n ],\n \"entitlements\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n }\n ],\n \"membership\": {\n \"type\": \"IDENTITY_LIST\",\n \"criteria\": {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n }\n ]\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n }\n ]\n }\n ]\n },\n \"identities\": [\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\",\n \"aliasName\": \"t.edison\"\n },\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\",\n \"aliasName\": \"t.edison\"\n }\n ]\n },\n \"legacyMembershipInfo\": {\n \"type\": \"IDENTITY_LIST\"\n },\n \"enabled\": true,\n \"requestable\": true,\n \"accessRequestConfig\": {\n \"commentsRequired\": true,\n \"denialCommentsRequired\": true,\n \"approvalSchemes\": [\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n },\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n }\n ]\n },\n \"revocationRequestConfig\": null,\n \"segments\": [\n \"f7b1b8a3-5fed-4fd4-ad29-82014e137e19\",\n \"29cb6c06-1da8-43ea-8be4-b3125f248f2a\"\n ],\n \"dimensional\": false,\n \"dimensionRefs\": \"commodo aute Duis dolore quis\"\n}", "options": { "raw": { "headerFamily": "json", @@ -105904,7 +105904,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d59bbb03-1496-470a-ab8e-bc0b041a7ddc", + "id": "0cf86fe3-1cd0-4163-b8dc-2ad2826b5dc8", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -105938,7 +105938,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"Role 2567\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"support\"\n },\n \"id\": \"2c918086749d78830174a1a40e121518\",\n \"created\": \"2021-03-01T22:32:58.104Z\",\n \"modified\": \"2021-03-02T20:22:28.104Z\",\n \"description\": \"Urna amet cursus pellentesque nisl orci maximus lorem nisl euismod fusce morbi placerat adipiscing maecenas nisi tristique et metus et lacus sed morbi nunc nisl maximus magna arcu varius sollicitudin elementum enim maecenas nisi id ipsum tempus fusce diam ipsum tortor.\",\n \"accessProfiles\": [\n {\n \"id\": \"ff808081751e6e129f1518161919ecca\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"Access Profile 2567\"\n },\n {\n \"id\": \"ff808081751e6e129f1518161919ecca\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"Access Profile 2567\"\n }\n ],\n \"entitlements\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n }\n ],\n \"membership\": {\n \"type\": \"IDENTITY_LIST\",\n \"criteria\": {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n }\n ]\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n }\n ]\n }\n ]\n },\n \"identities\": [\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\",\n \"aliasName\": \"t.edison\"\n },\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\",\n \"aliasName\": \"t.edison\"\n }\n ]\n },\n \"legacyMembershipInfo\": {\n \"type\": \"IDENTITY_LIST\"\n },\n \"enabled\": true,\n \"requestable\": true,\n \"accessRequestConfig\": {\n \"commentsRequired\": true,\n \"denialCommentsRequired\": true,\n \"approvalSchemes\": [\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n },\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n }\n ]\n },\n \"revocationRequestConfig\": null,\n \"segments\": [\n \"f7b1b8a3-5fed-4fd4-ad29-82014e137e19\",\n \"29cb6c06-1da8-43ea-8be4-b3125f248f2a\"\n ],\n \"dimensional\": true,\n \"dimensionRefs\": \"ex deserunt ullam\"\n}", + "raw": "{\n \"name\": \"Role 2567\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"support\"\n },\n \"id\": \"2c918086749d78830174a1a40e121518\",\n \"created\": \"2021-03-01T22:32:58.104Z\",\n \"modified\": \"2021-03-02T20:22:28.104Z\",\n \"description\": \"Urna amet cursus pellentesque nisl orci maximus lorem nisl euismod fusce morbi placerat adipiscing maecenas nisi tristique et metus et lacus sed morbi nunc nisl maximus magna arcu varius sollicitudin elementum enim maecenas nisi id ipsum tempus fusce diam ipsum tortor.\",\n \"accessProfiles\": [\n {\n \"id\": \"ff808081751e6e129f1518161919ecca\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"Access Profile 2567\"\n },\n {\n \"id\": \"ff808081751e6e129f1518161919ecca\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"Access Profile 2567\"\n }\n ],\n \"entitlements\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n }\n ],\n \"membership\": {\n \"type\": \"IDENTITY_LIST\",\n \"criteria\": {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n }\n ]\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n }\n ]\n }\n ]\n },\n \"identities\": [\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\",\n \"aliasName\": \"t.edison\"\n },\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\",\n \"aliasName\": \"t.edison\"\n }\n ]\n },\n \"legacyMembershipInfo\": {\n \"type\": \"IDENTITY_LIST\"\n },\n \"enabled\": true,\n \"requestable\": true,\n \"accessRequestConfig\": {\n \"commentsRequired\": true,\n \"denialCommentsRequired\": true,\n \"approvalSchemes\": [\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n },\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n }\n ]\n },\n \"revocationRequestConfig\": null,\n \"segments\": [\n \"f7b1b8a3-5fed-4fd4-ad29-82014e137e19\",\n \"29cb6c06-1da8-43ea-8be4-b3125f248f2a\"\n ],\n \"dimensional\": false,\n \"dimensionRefs\": \"commodo aute Duis dolore quis\"\n}", "options": { "raw": { "headerFamily": "json", @@ -105960,7 +105960,7 @@ "_postman_previewlanguage": "json" }, { - "id": "21a9cd23-0586-4676-9a39-b5b28f0946a9", + "id": "1a775595-141d-42c1-9c1a-c4bd6fe7cef7", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -105994,7 +105994,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"Role 2567\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"support\"\n },\n \"id\": \"2c918086749d78830174a1a40e121518\",\n \"created\": \"2021-03-01T22:32:58.104Z\",\n \"modified\": \"2021-03-02T20:22:28.104Z\",\n \"description\": \"Urna amet cursus pellentesque nisl orci maximus lorem nisl euismod fusce morbi placerat adipiscing maecenas nisi tristique et metus et lacus sed morbi nunc nisl maximus magna arcu varius sollicitudin elementum enim maecenas nisi id ipsum tempus fusce diam ipsum tortor.\",\n \"accessProfiles\": [\n {\n \"id\": \"ff808081751e6e129f1518161919ecca\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"Access Profile 2567\"\n },\n {\n \"id\": \"ff808081751e6e129f1518161919ecca\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"Access Profile 2567\"\n }\n ],\n \"entitlements\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n }\n ],\n \"membership\": {\n \"type\": \"IDENTITY_LIST\",\n \"criteria\": {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n }\n ]\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n }\n ]\n }\n ]\n },\n \"identities\": [\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\",\n \"aliasName\": \"t.edison\"\n },\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\",\n \"aliasName\": \"t.edison\"\n }\n ]\n },\n \"legacyMembershipInfo\": {\n \"type\": \"IDENTITY_LIST\"\n },\n \"enabled\": true,\n \"requestable\": true,\n \"accessRequestConfig\": {\n \"commentsRequired\": true,\n \"denialCommentsRequired\": true,\n \"approvalSchemes\": [\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n },\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n }\n ]\n },\n \"revocationRequestConfig\": null,\n \"segments\": [\n \"f7b1b8a3-5fed-4fd4-ad29-82014e137e19\",\n \"29cb6c06-1da8-43ea-8be4-b3125f248f2a\"\n ],\n \"dimensional\": true,\n \"dimensionRefs\": \"ex deserunt ullam\"\n}", + "raw": "{\n \"name\": \"Role 2567\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"support\"\n },\n \"id\": \"2c918086749d78830174a1a40e121518\",\n \"created\": \"2021-03-01T22:32:58.104Z\",\n \"modified\": \"2021-03-02T20:22:28.104Z\",\n \"description\": \"Urna amet cursus pellentesque nisl orci maximus lorem nisl euismod fusce morbi placerat adipiscing maecenas nisi tristique et metus et lacus sed morbi nunc nisl maximus magna arcu varius sollicitudin elementum enim maecenas nisi id ipsum tempus fusce diam ipsum tortor.\",\n \"accessProfiles\": [\n {\n \"id\": \"ff808081751e6e129f1518161919ecca\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"Access Profile 2567\"\n },\n {\n \"id\": \"ff808081751e6e129f1518161919ecca\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"Access Profile 2567\"\n }\n ],\n \"entitlements\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n }\n ],\n \"membership\": {\n \"type\": \"IDENTITY_LIST\",\n \"criteria\": {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n }\n ]\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n }\n ]\n }\n ]\n },\n \"identities\": [\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\",\n \"aliasName\": \"t.edison\"\n },\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\",\n \"aliasName\": \"t.edison\"\n }\n ]\n },\n \"legacyMembershipInfo\": {\n \"type\": \"IDENTITY_LIST\"\n },\n \"enabled\": true,\n \"requestable\": true,\n \"accessRequestConfig\": {\n \"commentsRequired\": true,\n \"denialCommentsRequired\": true,\n \"approvalSchemes\": [\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n },\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n }\n ]\n },\n \"revocationRequestConfig\": null,\n \"segments\": [\n \"f7b1b8a3-5fed-4fd4-ad29-82014e137e19\",\n \"29cb6c06-1da8-43ea-8be4-b3125f248f2a\"\n ],\n \"dimensional\": false,\n \"dimensionRefs\": \"commodo aute Duis dolore quis\"\n}", "options": { "raw": { "headerFamily": "json", @@ -106016,7 +106016,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9cfa4e90-5f17-4251-a00a-08e7af9d0281", + "id": "66f7f1a6-c2d0-4bed-8a45-76517903b9c1", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -106050,7 +106050,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"Role 2567\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"support\"\n },\n \"id\": \"2c918086749d78830174a1a40e121518\",\n \"created\": \"2021-03-01T22:32:58.104Z\",\n \"modified\": \"2021-03-02T20:22:28.104Z\",\n \"description\": \"Urna amet cursus pellentesque nisl orci maximus lorem nisl euismod fusce morbi placerat adipiscing maecenas nisi tristique et metus et lacus sed morbi nunc nisl maximus magna arcu varius sollicitudin elementum enim maecenas nisi id ipsum tempus fusce diam ipsum tortor.\",\n \"accessProfiles\": [\n {\n \"id\": \"ff808081751e6e129f1518161919ecca\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"Access Profile 2567\"\n },\n {\n \"id\": \"ff808081751e6e129f1518161919ecca\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"Access Profile 2567\"\n }\n ],\n \"entitlements\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n }\n ],\n \"membership\": {\n \"type\": \"IDENTITY_LIST\",\n \"criteria\": {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n }\n ]\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n }\n ]\n }\n ]\n },\n \"identities\": [\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\",\n \"aliasName\": \"t.edison\"\n },\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\",\n \"aliasName\": \"t.edison\"\n }\n ]\n },\n \"legacyMembershipInfo\": {\n \"type\": \"IDENTITY_LIST\"\n },\n \"enabled\": true,\n \"requestable\": true,\n \"accessRequestConfig\": {\n \"commentsRequired\": true,\n \"denialCommentsRequired\": true,\n \"approvalSchemes\": [\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n },\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n }\n ]\n },\n \"revocationRequestConfig\": null,\n \"segments\": [\n \"f7b1b8a3-5fed-4fd4-ad29-82014e137e19\",\n \"29cb6c06-1da8-43ea-8be4-b3125f248f2a\"\n ],\n \"dimensional\": true,\n \"dimensionRefs\": \"ex deserunt ullam\"\n}", + "raw": "{\n \"name\": \"Role 2567\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"support\"\n },\n \"id\": \"2c918086749d78830174a1a40e121518\",\n \"created\": \"2021-03-01T22:32:58.104Z\",\n \"modified\": \"2021-03-02T20:22:28.104Z\",\n \"description\": \"Urna amet cursus pellentesque nisl orci maximus lorem nisl euismod fusce morbi placerat adipiscing maecenas nisi tristique et metus et lacus sed morbi nunc nisl maximus magna arcu varius sollicitudin elementum enim maecenas nisi id ipsum tempus fusce diam ipsum tortor.\",\n \"accessProfiles\": [\n {\n \"id\": \"ff808081751e6e129f1518161919ecca\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"Access Profile 2567\"\n },\n {\n \"id\": \"ff808081751e6e129f1518161919ecca\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"Access Profile 2567\"\n }\n ],\n \"entitlements\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n }\n ],\n \"membership\": {\n \"type\": \"IDENTITY_LIST\",\n \"criteria\": {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n }\n ]\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n }\n ]\n }\n ]\n },\n \"identities\": [\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\",\n \"aliasName\": \"t.edison\"\n },\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\",\n \"aliasName\": \"t.edison\"\n }\n ]\n },\n \"legacyMembershipInfo\": {\n \"type\": \"IDENTITY_LIST\"\n },\n \"enabled\": true,\n \"requestable\": true,\n \"accessRequestConfig\": {\n \"commentsRequired\": true,\n \"denialCommentsRequired\": true,\n \"approvalSchemes\": [\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n },\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n }\n ]\n },\n \"revocationRequestConfig\": null,\n \"segments\": [\n \"f7b1b8a3-5fed-4fd4-ad29-82014e137e19\",\n \"29cb6c06-1da8-43ea-8be4-b3125f248f2a\"\n ],\n \"dimensional\": false,\n \"dimensionRefs\": \"commodo aute Duis dolore quis\"\n}", "options": { "raw": { "headerFamily": "json", @@ -106078,7 +106078,7 @@ } }, { - "id": "063a996c-9ea9-4423-bb4d-059c2c35e0ab", + "id": "8d07b11b-961e-4884-875a-25eaa64d58cc", "name": "Get a Role", "request": { "name": "Get a Role", @@ -106119,7 +106119,7 @@ }, "response": [ { - "id": "0d5df586-ad85-4dcf-b668-a73ace7e8f96", + "id": "03519048-4dfe-4a44-a376-a2cbdd24ae94", "name": "List of all Roles", "originalRequest": { "url": { @@ -106158,12 +106158,12 @@ "value": "application/json" } ], - "body": "{\n \"name\": \"Role 2567\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"support\"\n },\n \"id\": \"2c918086749d78830174a1a40e121518\",\n \"created\": \"2021-03-01T22:32:58.104Z\",\n \"modified\": \"2021-03-02T20:22:28.104Z\",\n \"description\": \"Urna amet cursus pellentesque nisl orci maximus lorem nisl euismod fusce morbi placerat adipiscing maecenas nisi tristique et metus et lacus sed morbi nunc nisl maximus magna arcu varius sollicitudin elementum enim maecenas nisi id ipsum tempus fusce diam ipsum tortor.\",\n \"accessProfiles\": [\n {\n \"id\": \"ff808081751e6e129f1518161919ecca\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"Access Profile 2567\"\n },\n {\n \"id\": \"ff808081751e6e129f1518161919ecca\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"Access Profile 2567\"\n }\n ],\n \"entitlements\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n }\n ],\n \"membership\": {\n \"type\": \"IDENTITY_LIST\",\n \"criteria\": {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n }\n ]\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n }\n ]\n }\n ]\n },\n \"identities\": [\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\",\n \"aliasName\": \"t.edison\"\n },\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\",\n \"aliasName\": \"t.edison\"\n }\n ]\n },\n \"legacyMembershipInfo\": {\n \"type\": \"IDENTITY_LIST\"\n },\n \"enabled\": true,\n \"requestable\": true,\n \"accessRequestConfig\": {\n \"commentsRequired\": true,\n \"denialCommentsRequired\": true,\n \"approvalSchemes\": [\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n },\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n }\n ]\n },\n \"revocationRequestConfig\": null,\n \"segments\": [\n \"f7b1b8a3-5fed-4fd4-ad29-82014e137e19\",\n \"29cb6c06-1da8-43ea-8be4-b3125f248f2a\"\n ],\n \"dimensional\": true,\n \"dimensionRefs\": \"ex deserunt ullam\"\n}", + "body": "{\n \"name\": \"Role 2567\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"support\"\n },\n \"id\": \"2c918086749d78830174a1a40e121518\",\n \"created\": \"2021-03-01T22:32:58.104Z\",\n \"modified\": \"2021-03-02T20:22:28.104Z\",\n \"description\": \"Urna amet cursus pellentesque nisl orci maximus lorem nisl euismod fusce morbi placerat adipiscing maecenas nisi tristique et metus et lacus sed morbi nunc nisl maximus magna arcu varius sollicitudin elementum enim maecenas nisi id ipsum tempus fusce diam ipsum tortor.\",\n \"accessProfiles\": [\n {\n \"id\": \"ff808081751e6e129f1518161919ecca\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"Access Profile 2567\"\n },\n {\n \"id\": \"ff808081751e6e129f1518161919ecca\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"Access Profile 2567\"\n }\n ],\n \"entitlements\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n }\n ],\n \"membership\": {\n \"type\": \"IDENTITY_LIST\",\n \"criteria\": {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n }\n ]\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n }\n ]\n }\n ]\n },\n \"identities\": [\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\",\n \"aliasName\": \"t.edison\"\n },\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\",\n \"aliasName\": \"t.edison\"\n }\n ]\n },\n \"legacyMembershipInfo\": {\n \"type\": \"IDENTITY_LIST\"\n },\n \"enabled\": true,\n \"requestable\": true,\n \"accessRequestConfig\": {\n \"commentsRequired\": true,\n \"denialCommentsRequired\": true,\n \"approvalSchemes\": [\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n },\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n }\n ]\n },\n \"revocationRequestConfig\": null,\n \"segments\": [\n \"f7b1b8a3-5fed-4fd4-ad29-82014e137e19\",\n \"29cb6c06-1da8-43ea-8be4-b3125f248f2a\"\n ],\n \"dimensional\": false,\n \"dimensionRefs\": \"commodo aute Duis dolore quis\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "fe486e3f-94fe-4083-b2dd-8059bc8a8a0c", + "id": "26e9e9d9-0825-489f-a194-830db7acc918", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -106207,7 +106207,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1b6978f2-b5da-4985-84f0-f0f9bdc595ee", + "id": "e9ecc62f-4f0e-4c1b-aeda-92405daf7dd0", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -106251,7 +106251,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2baeac5e-03e6-4802-9f96-f93621424705", + "id": "4ef04c9d-170c-4a9f-ae2e-2806c5ba0d98", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -106295,7 +106295,7 @@ "_postman_previewlanguage": "json" }, { - "id": "473198b1-5ac9-4bcb-ad2c-f2141f22b18d", + "id": "6a324827-7356-4aac-88ca-d7d01594d350", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -106339,7 +106339,7 @@ "_postman_previewlanguage": "json" }, { - "id": "96cee0c9-de0f-4bd2-9fb9-0c23849106ac", + "id": "07c61537-01c0-4893-8fbb-9ee519e09227", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -106389,7 +106389,7 @@ } }, { - "id": "aeb981b7-0501-4424-8b0c-54d456c5ba2a", + "id": "9d28dc17-cb00-4558-bd91-107fd2e352a3", "name": "Patch a specified Role", "request": { "name": "Patch a specified Role", @@ -106443,7 +106443,7 @@ }, "response": [ { - "id": "66a1e203-4626-42ea-9146-7933c013c0f5", + "id": "10fea336-a3a1-40ef-b876-a0d7cc48b009", "name": "Make a Role Requestable and Enable it in One Call", "originalRequest": { "url": { @@ -106495,12 +106495,12 @@ "value": "application/json" } ], - "body": "{\n \"name\": \"Role 2567\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"support\"\n },\n \"id\": \"2c918086749d78830174a1a40e121518\",\n \"created\": \"2021-03-01T22:32:58.104Z\",\n \"modified\": \"2021-03-02T20:22:28.104Z\",\n \"description\": \"Urna amet cursus pellentesque nisl orci maximus lorem nisl euismod fusce morbi placerat adipiscing maecenas nisi tristique et metus et lacus sed morbi nunc nisl maximus magna arcu varius sollicitudin elementum enim maecenas nisi id ipsum tempus fusce diam ipsum tortor.\",\n \"accessProfiles\": [\n {\n \"id\": \"ff808081751e6e129f1518161919ecca\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"Access Profile 2567\"\n },\n {\n \"id\": \"ff808081751e6e129f1518161919ecca\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"Access Profile 2567\"\n }\n ],\n \"entitlements\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n }\n ],\n \"membership\": {\n \"type\": \"IDENTITY_LIST\",\n \"criteria\": {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n }\n ]\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n }\n ]\n }\n ]\n },\n \"identities\": [\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\",\n \"aliasName\": \"t.edison\"\n },\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\",\n \"aliasName\": \"t.edison\"\n }\n ]\n },\n \"legacyMembershipInfo\": {\n \"type\": \"IDENTITY_LIST\"\n },\n \"enabled\": true,\n \"requestable\": true,\n \"accessRequestConfig\": {\n \"commentsRequired\": true,\n \"denialCommentsRequired\": true,\n \"approvalSchemes\": [\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n },\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n }\n ]\n },\n \"revocationRequestConfig\": null,\n \"segments\": [\n \"f7b1b8a3-5fed-4fd4-ad29-82014e137e19\",\n \"29cb6c06-1da8-43ea-8be4-b3125f248f2a\"\n ],\n \"dimensional\": true,\n \"dimensionRefs\": \"ex deserunt ullam\"\n}", + "body": "{\n \"name\": \"Role 2567\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"support\"\n },\n \"id\": \"2c918086749d78830174a1a40e121518\",\n \"created\": \"2021-03-01T22:32:58.104Z\",\n \"modified\": \"2021-03-02T20:22:28.104Z\",\n \"description\": \"Urna amet cursus pellentesque nisl orci maximus lorem nisl euismod fusce morbi placerat adipiscing maecenas nisi tristique et metus et lacus sed morbi nunc nisl maximus magna arcu varius sollicitudin elementum enim maecenas nisi id ipsum tempus fusce diam ipsum tortor.\",\n \"accessProfiles\": [\n {\n \"id\": \"ff808081751e6e129f1518161919ecca\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"Access Profile 2567\"\n },\n {\n \"id\": \"ff808081751e6e129f1518161919ecca\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"Access Profile 2567\"\n }\n ],\n \"entitlements\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n }\n ],\n \"membership\": {\n \"type\": \"IDENTITY_LIST\",\n \"criteria\": {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n }\n ]\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n }\n ]\n }\n ]\n },\n \"identities\": [\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\",\n \"aliasName\": \"t.edison\"\n },\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\",\n \"aliasName\": \"t.edison\"\n }\n ]\n },\n \"legacyMembershipInfo\": {\n \"type\": \"IDENTITY_LIST\"\n },\n \"enabled\": true,\n \"requestable\": true,\n \"accessRequestConfig\": {\n \"commentsRequired\": true,\n \"denialCommentsRequired\": true,\n \"approvalSchemes\": [\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n },\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n }\n ]\n },\n \"revocationRequestConfig\": null,\n \"segments\": [\n \"f7b1b8a3-5fed-4fd4-ad29-82014e137e19\",\n \"29cb6c06-1da8-43ea-8be4-b3125f248f2a\"\n ],\n \"dimensional\": false,\n \"dimensionRefs\": \"commodo aute Duis dolore quis\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "44444c05-a244-4b0b-b142-2c892a2ab544", + "id": "18b7b735-a49b-42a8-877a-b829caad1996", "name": "Assign a Role to a Segment", "originalRequest": { "url": { @@ -106552,12 +106552,12 @@ "value": "application/json" } ], - "body": "{\n \"name\": \"Role 2567\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"support\"\n },\n \"id\": \"2c918086749d78830174a1a40e121518\",\n \"created\": \"2021-03-01T22:32:58.104Z\",\n \"modified\": \"2021-03-02T20:22:28.104Z\",\n \"description\": \"Urna amet cursus pellentesque nisl orci maximus lorem nisl euismod fusce morbi placerat adipiscing maecenas nisi tristique et metus et lacus sed morbi nunc nisl maximus magna arcu varius sollicitudin elementum enim maecenas nisi id ipsum tempus fusce diam ipsum tortor.\",\n \"accessProfiles\": [\n {\n \"id\": \"ff808081751e6e129f1518161919ecca\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"Access Profile 2567\"\n },\n {\n \"id\": \"ff808081751e6e129f1518161919ecca\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"Access Profile 2567\"\n }\n ],\n \"entitlements\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n }\n ],\n \"membership\": {\n \"type\": \"IDENTITY_LIST\",\n \"criteria\": {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n }\n ]\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n }\n ]\n }\n ]\n },\n \"identities\": [\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\",\n \"aliasName\": \"t.edison\"\n },\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\",\n \"aliasName\": \"t.edison\"\n }\n ]\n },\n \"legacyMembershipInfo\": {\n \"type\": \"IDENTITY_LIST\"\n },\n \"enabled\": true,\n \"requestable\": true,\n \"accessRequestConfig\": {\n \"commentsRequired\": true,\n \"denialCommentsRequired\": true,\n \"approvalSchemes\": [\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n },\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n }\n ]\n },\n \"revocationRequestConfig\": null,\n \"segments\": [\n \"f7b1b8a3-5fed-4fd4-ad29-82014e137e19\",\n \"29cb6c06-1da8-43ea-8be4-b3125f248f2a\"\n ],\n \"dimensional\": true,\n \"dimensionRefs\": \"ex deserunt ullam\"\n}", + "body": "{\n \"name\": \"Role 2567\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"support\"\n },\n \"id\": \"2c918086749d78830174a1a40e121518\",\n \"created\": \"2021-03-01T22:32:58.104Z\",\n \"modified\": \"2021-03-02T20:22:28.104Z\",\n \"description\": \"Urna amet cursus pellentesque nisl orci maximus lorem nisl euismod fusce morbi placerat adipiscing maecenas nisi tristique et metus et lacus sed morbi nunc nisl maximus magna arcu varius sollicitudin elementum enim maecenas nisi id ipsum tempus fusce diam ipsum tortor.\",\n \"accessProfiles\": [\n {\n \"id\": \"ff808081751e6e129f1518161919ecca\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"Access Profile 2567\"\n },\n {\n \"id\": \"ff808081751e6e129f1518161919ecca\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"Access Profile 2567\"\n }\n ],\n \"entitlements\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n }\n ],\n \"membership\": {\n \"type\": \"IDENTITY_LIST\",\n \"criteria\": {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n }\n ]\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n }\n ]\n }\n ]\n },\n \"identities\": [\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\",\n \"aliasName\": \"t.edison\"\n },\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\",\n \"aliasName\": \"t.edison\"\n }\n ]\n },\n \"legacyMembershipInfo\": {\n \"type\": \"IDENTITY_LIST\"\n },\n \"enabled\": true,\n \"requestable\": true,\n \"accessRequestConfig\": {\n \"commentsRequired\": true,\n \"denialCommentsRequired\": true,\n \"approvalSchemes\": [\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n },\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n }\n ]\n },\n \"revocationRequestConfig\": null,\n \"segments\": [\n \"f7b1b8a3-5fed-4fd4-ad29-82014e137e19\",\n \"29cb6c06-1da8-43ea-8be4-b3125f248f2a\"\n ],\n \"dimensional\": false,\n \"dimensionRefs\": \"commodo aute Duis dolore quis\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c2e32cb9-560b-40dd-be46-5bb240828db5", + "id": "6f659e19-0ee5-4e12-b7a9-452f28e1ecfc", "name": "Set the Membership Selection Criteria to a List of Identities", "originalRequest": { "url": { @@ -106609,12 +106609,12 @@ "value": "application/json" } ], - "body": "{\n \"name\": \"Role 2567\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"support\"\n },\n \"id\": \"2c918086749d78830174a1a40e121518\",\n \"created\": \"2021-03-01T22:32:58.104Z\",\n \"modified\": \"2021-03-02T20:22:28.104Z\",\n \"description\": \"Urna amet cursus pellentesque nisl orci maximus lorem nisl euismod fusce morbi placerat adipiscing maecenas nisi tristique et metus et lacus sed morbi nunc nisl maximus magna arcu varius sollicitudin elementum enim maecenas nisi id ipsum tempus fusce diam ipsum tortor.\",\n \"accessProfiles\": [\n {\n \"id\": \"ff808081751e6e129f1518161919ecca\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"Access Profile 2567\"\n },\n {\n \"id\": \"ff808081751e6e129f1518161919ecca\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"Access Profile 2567\"\n }\n ],\n \"entitlements\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n }\n ],\n \"membership\": {\n \"type\": \"IDENTITY_LIST\",\n \"criteria\": {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n }\n ]\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n }\n ]\n }\n ]\n },\n \"identities\": [\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\",\n \"aliasName\": \"t.edison\"\n },\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\",\n \"aliasName\": \"t.edison\"\n }\n ]\n },\n \"legacyMembershipInfo\": {\n \"type\": \"IDENTITY_LIST\"\n },\n \"enabled\": true,\n \"requestable\": true,\n \"accessRequestConfig\": {\n \"commentsRequired\": true,\n \"denialCommentsRequired\": true,\n \"approvalSchemes\": [\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n },\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n }\n ]\n },\n \"revocationRequestConfig\": null,\n \"segments\": [\n \"f7b1b8a3-5fed-4fd4-ad29-82014e137e19\",\n \"29cb6c06-1da8-43ea-8be4-b3125f248f2a\"\n ],\n \"dimensional\": true,\n \"dimensionRefs\": \"ex deserunt ullam\"\n}", + "body": "{\n \"name\": \"Role 2567\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"support\"\n },\n \"id\": \"2c918086749d78830174a1a40e121518\",\n \"created\": \"2021-03-01T22:32:58.104Z\",\n \"modified\": \"2021-03-02T20:22:28.104Z\",\n \"description\": \"Urna amet cursus pellentesque nisl orci maximus lorem nisl euismod fusce morbi placerat adipiscing maecenas nisi tristique et metus et lacus sed morbi nunc nisl maximus magna arcu varius sollicitudin elementum enim maecenas nisi id ipsum tempus fusce diam ipsum tortor.\",\n \"accessProfiles\": [\n {\n \"id\": \"ff808081751e6e129f1518161919ecca\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"Access Profile 2567\"\n },\n {\n \"id\": \"ff808081751e6e129f1518161919ecca\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"Access Profile 2567\"\n }\n ],\n \"entitlements\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n }\n ],\n \"membership\": {\n \"type\": \"IDENTITY_LIST\",\n \"criteria\": {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n }\n ]\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n }\n ]\n }\n ]\n },\n \"identities\": [\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\",\n \"aliasName\": \"t.edison\"\n },\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\",\n \"aliasName\": \"t.edison\"\n }\n ]\n },\n \"legacyMembershipInfo\": {\n \"type\": \"IDENTITY_LIST\"\n },\n \"enabled\": true,\n \"requestable\": true,\n \"accessRequestConfig\": {\n \"commentsRequired\": true,\n \"denialCommentsRequired\": true,\n \"approvalSchemes\": [\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n },\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n }\n ]\n },\n \"revocationRequestConfig\": null,\n \"segments\": [\n \"f7b1b8a3-5fed-4fd4-ad29-82014e137e19\",\n \"29cb6c06-1da8-43ea-8be4-b3125f248f2a\"\n ],\n \"dimensional\": false,\n \"dimensionRefs\": \"commodo aute Duis dolore quis\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "caf43c7b-9ecc-45c8-8083-58f9c9f561d7", + "id": "60b4026c-7e5d-480a-ae44-aadfae630065", "name": "Set the Membership Selection Criteria to a Standard Expression", "originalRequest": { "url": { @@ -106666,12 +106666,12 @@ "value": "application/json" } ], - "body": "{\n \"name\": \"Role 2567\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"support\"\n },\n \"id\": \"2c918086749d78830174a1a40e121518\",\n \"created\": \"2021-03-01T22:32:58.104Z\",\n \"modified\": \"2021-03-02T20:22:28.104Z\",\n \"description\": \"Urna amet cursus pellentesque nisl orci maximus lorem nisl euismod fusce morbi placerat adipiscing maecenas nisi tristique et metus et lacus sed morbi nunc nisl maximus magna arcu varius sollicitudin elementum enim maecenas nisi id ipsum tempus fusce diam ipsum tortor.\",\n \"accessProfiles\": [\n {\n \"id\": \"ff808081751e6e129f1518161919ecca\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"Access Profile 2567\"\n },\n {\n \"id\": \"ff808081751e6e129f1518161919ecca\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"Access Profile 2567\"\n }\n ],\n \"entitlements\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n }\n ],\n \"membership\": {\n \"type\": \"IDENTITY_LIST\",\n \"criteria\": {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n }\n ]\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n }\n ]\n }\n ]\n },\n \"identities\": [\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\",\n \"aliasName\": \"t.edison\"\n },\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\",\n \"aliasName\": \"t.edison\"\n }\n ]\n },\n \"legacyMembershipInfo\": {\n \"type\": \"IDENTITY_LIST\"\n },\n \"enabled\": true,\n \"requestable\": true,\n \"accessRequestConfig\": {\n \"commentsRequired\": true,\n \"denialCommentsRequired\": true,\n \"approvalSchemes\": [\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n },\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n }\n ]\n },\n \"revocationRequestConfig\": null,\n \"segments\": [\n \"f7b1b8a3-5fed-4fd4-ad29-82014e137e19\",\n \"29cb6c06-1da8-43ea-8be4-b3125f248f2a\"\n ],\n \"dimensional\": true,\n \"dimensionRefs\": \"ex deserunt ullam\"\n}", + "body": "{\n \"name\": \"Role 2567\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"support\"\n },\n \"id\": \"2c918086749d78830174a1a40e121518\",\n \"created\": \"2021-03-01T22:32:58.104Z\",\n \"modified\": \"2021-03-02T20:22:28.104Z\",\n \"description\": \"Urna amet cursus pellentesque nisl orci maximus lorem nisl euismod fusce morbi placerat adipiscing maecenas nisi tristique et metus et lacus sed morbi nunc nisl maximus magna arcu varius sollicitudin elementum enim maecenas nisi id ipsum tempus fusce diam ipsum tortor.\",\n \"accessProfiles\": [\n {\n \"id\": \"ff808081751e6e129f1518161919ecca\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"Access Profile 2567\"\n },\n {\n \"id\": \"ff808081751e6e129f1518161919ecca\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"Access Profile 2567\"\n }\n ],\n \"entitlements\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n }\n ],\n \"membership\": {\n \"type\": \"IDENTITY_LIST\",\n \"criteria\": {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n }\n ]\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n }\n ]\n }\n ]\n },\n \"identities\": [\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\",\n \"aliasName\": \"t.edison\"\n },\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\",\n \"aliasName\": \"t.edison\"\n }\n ]\n },\n \"legacyMembershipInfo\": {\n \"type\": \"IDENTITY_LIST\"\n },\n \"enabled\": true,\n \"requestable\": true,\n \"accessRequestConfig\": {\n \"commentsRequired\": true,\n \"denialCommentsRequired\": true,\n \"approvalSchemes\": [\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n },\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n }\n ]\n },\n \"revocationRequestConfig\": null,\n \"segments\": [\n \"f7b1b8a3-5fed-4fd4-ad29-82014e137e19\",\n \"29cb6c06-1da8-43ea-8be4-b3125f248f2a\"\n ],\n \"dimensional\": false,\n \"dimensionRefs\": \"commodo aute Duis dolore quis\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "6d6bdcec-f2c3-4143-af00-f5c5dc633384", + "id": "c8f32149-45f6-44fc-96e6-023c8c989fbf", "name": "Add a New Clause as the Child of an Existing Standard Expression", "originalRequest": { "url": { @@ -106723,12 +106723,12 @@ "value": "application/json" } ], - "body": "{\n \"name\": \"Role 2567\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"support\"\n },\n \"id\": \"2c918086749d78830174a1a40e121518\",\n \"created\": \"2021-03-01T22:32:58.104Z\",\n \"modified\": \"2021-03-02T20:22:28.104Z\",\n \"description\": \"Urna amet cursus pellentesque nisl orci maximus lorem nisl euismod fusce morbi placerat adipiscing maecenas nisi tristique et metus et lacus sed morbi nunc nisl maximus magna arcu varius sollicitudin elementum enim maecenas nisi id ipsum tempus fusce diam ipsum tortor.\",\n \"accessProfiles\": [\n {\n \"id\": \"ff808081751e6e129f1518161919ecca\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"Access Profile 2567\"\n },\n {\n \"id\": \"ff808081751e6e129f1518161919ecca\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"Access Profile 2567\"\n }\n ],\n \"entitlements\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n }\n ],\n \"membership\": {\n \"type\": \"IDENTITY_LIST\",\n \"criteria\": {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n }\n ]\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n }\n ]\n }\n ]\n },\n \"identities\": [\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\",\n \"aliasName\": \"t.edison\"\n },\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\",\n \"aliasName\": \"t.edison\"\n }\n ]\n },\n \"legacyMembershipInfo\": {\n \"type\": \"IDENTITY_LIST\"\n },\n \"enabled\": true,\n \"requestable\": true,\n \"accessRequestConfig\": {\n \"commentsRequired\": true,\n \"denialCommentsRequired\": true,\n \"approvalSchemes\": [\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n },\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n }\n ]\n },\n \"revocationRequestConfig\": null,\n \"segments\": [\n \"f7b1b8a3-5fed-4fd4-ad29-82014e137e19\",\n \"29cb6c06-1da8-43ea-8be4-b3125f248f2a\"\n ],\n \"dimensional\": true,\n \"dimensionRefs\": \"ex deserunt ullam\"\n}", + "body": "{\n \"name\": \"Role 2567\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"support\"\n },\n \"id\": \"2c918086749d78830174a1a40e121518\",\n \"created\": \"2021-03-01T22:32:58.104Z\",\n \"modified\": \"2021-03-02T20:22:28.104Z\",\n \"description\": \"Urna amet cursus pellentesque nisl orci maximus lorem nisl euismod fusce morbi placerat adipiscing maecenas nisi tristique et metus et lacus sed morbi nunc nisl maximus magna arcu varius sollicitudin elementum enim maecenas nisi id ipsum tempus fusce diam ipsum tortor.\",\n \"accessProfiles\": [\n {\n \"id\": \"ff808081751e6e129f1518161919ecca\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"Access Profile 2567\"\n },\n {\n \"id\": \"ff808081751e6e129f1518161919ecca\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"Access Profile 2567\"\n }\n ],\n \"entitlements\": [\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n },\n {\n \"type\": \"ENTITLEMENT\",\n \"id\": \"2c91809773dee32014e13e122092014e\",\n \"name\": \"CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local\"\n }\n ],\n \"membership\": {\n \"type\": \"IDENTITY_LIST\",\n \"criteria\": {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n }\n ]\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\",\n \"children\": [\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n },\n {\n \"operation\": \"EQUALS\",\n \"key\": {\n \"type\": \"ACCOUNT\",\n \"property\": \"attribute.email\",\n \"sourceId\": \"2c9180867427f3a301745aec18211519\"\n },\n \"stringValue\": \"carlee.cert1c9f9b6fd@mailinator.com\"\n }\n ]\n }\n ]\n },\n \"identities\": [\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\",\n \"aliasName\": \"t.edison\"\n },\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\",\n \"aliasName\": \"t.edison\"\n }\n ]\n },\n \"legacyMembershipInfo\": {\n \"type\": \"IDENTITY_LIST\"\n },\n \"enabled\": true,\n \"requestable\": true,\n \"accessRequestConfig\": {\n \"commentsRequired\": true,\n \"denialCommentsRequired\": true,\n \"approvalSchemes\": [\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n },\n {\n \"approverType\": \"GOVERNANCE_GROUP\",\n \"approverId\": \"46c79819-a69f-49a2-becb-12c971ae66c6\"\n }\n ]\n },\n \"revocationRequestConfig\": null,\n \"segments\": [\n \"f7b1b8a3-5fed-4fd4-ad29-82014e137e19\",\n \"29cb6c06-1da8-43ea-8be4-b3125f248f2a\"\n ],\n \"dimensional\": false,\n \"dimensionRefs\": \"commodo aute Duis dolore quis\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "1f7ab18d-1b28-405a-b2ad-4e108e33573e", + "id": "83baa0bb-beaa-4fb6-b1f0-a141101161eb", "name": "Make a Role Requestable and Enable it in One Call", "originalRequest": { "url": { @@ -106785,7 +106785,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9794c972-419a-43eb-b041-6ba215e2fe06", + "id": "685d7cbe-c27d-4cd7-8634-96e5f85d1d15", "name": "Assign a Role to a Segment", "originalRequest": { "url": { @@ -106842,7 +106842,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8d4b0e2c-c069-4cde-a313-53a2047aa09a", + "id": "9a81a0ea-efb4-4451-b8e9-89df4d80bcbd", "name": "Set the Membership Selection Criteria to a List of Identities", "originalRequest": { "url": { @@ -106899,7 +106899,7 @@ "_postman_previewlanguage": "json" }, { - "id": "77666ff8-0c20-440b-aa0f-3857a50e76b5", + "id": "5a0f9e33-0ad4-4e59-84d4-cd185c2056f1", "name": "Set the Membership Selection Criteria to a Standard Expression", "originalRequest": { "url": { @@ -106956,7 +106956,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b7b35ad7-40e8-4edf-9c2a-dda298650883", + "id": "5857613d-ae4c-4110-b970-f36d31d3027b", "name": "Add a New Clause as the Child of an Existing Standard Expression", "originalRequest": { "url": { @@ -107013,7 +107013,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6785f9f4-71aa-4144-b162-336f7612ae10", + "id": "b61ca9c4-eef4-4ef0-a4b3-6ccd1abb267b", "name": "Make a Role Requestable and Enable it in One Call", "originalRequest": { "url": { @@ -107070,7 +107070,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5f28133d-99ac-4888-bacd-f71ce399f223", + "id": "f24b583a-d3f8-4814-a45a-8e2b9e72ba41", "name": "Assign a Role to a Segment", "originalRequest": { "url": { @@ -107127,7 +107127,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7ae7aa70-c278-4847-80cd-0984c85766f9", + "id": "cdba6044-c8c3-4f3c-8497-305c558853da", "name": "Set the Membership Selection Criteria to a List of Identities", "originalRequest": { "url": { @@ -107184,7 +107184,7 @@ "_postman_previewlanguage": "json" }, { - "id": "67ac40f0-5021-4793-af6b-e60c207481c6", + "id": "87f36710-264f-4ebf-b67e-d67e6bb3b8df", "name": "Set the Membership Selection Criteria to a Standard Expression", "originalRequest": { "url": { @@ -107241,7 +107241,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f2093bea-589e-4ce8-a8bf-5fb62c3a25d2", + "id": "8917aa85-ccec-49af-88c4-517a21f75bbb", "name": "Add a New Clause as the Child of an Existing Standard Expression", "originalRequest": { "url": { @@ -107298,7 +107298,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c3e5e769-fedb-4103-a29d-2bf72ee16d8a", + "id": "f5ac71d7-099e-49a0-9461-1e1063dce69b", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -107355,7 +107355,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6c3b86c9-65be-4807-9546-d73dd823d2f4", + "id": "60eb015f-3419-4e87-8cc2-08eb740fb168", "name": "Assign a Role to a Segment", "originalRequest": { "url": { @@ -107412,7 +107412,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fb2c6eb6-61ca-4984-adaa-90d40970427f", + "id": "01be21bb-9d60-41bb-a16f-e9b0413d9ac0", "name": "Set the Membership Selection Criteria to a List of Identities", "originalRequest": { "url": { @@ -107469,7 +107469,7 @@ "_postman_previewlanguage": "json" }, { - "id": "062627b9-7d9c-467a-8979-a7231e020815", + "id": "8377ec3b-bb46-4de8-aaad-ebfa5f60d8fe", "name": "Set the Membership Selection Criteria to a Standard Expression", "originalRequest": { "url": { @@ -107526,7 +107526,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ca49e1d5-d5b2-4f14-9969-334192b284ba", + "id": "95a394fd-64a5-4404-8213-14dd20a23d8c", "name": "Add a New Clause as the Child of an Existing Standard Expression", "originalRequest": { "url": { @@ -107583,7 +107583,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1c80b187-9348-4c45-bc6a-e61853425e86", + "id": "40d3dc34-e790-4666-823e-2c2c336d67dd", "name": "Make a Role Requestable and Enable it in One Call", "originalRequest": { "url": { @@ -107640,7 +107640,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c229724c-724a-4e88-93aa-0d5bf494a000", + "id": "1c89084b-12f5-4415-aedd-a23376c43198", "name": "Assign a Role to a Segment", "originalRequest": { "url": { @@ -107697,7 +107697,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8d6c4eec-5485-4cf0-968b-993941033dc4", + "id": "890fb54c-a9c8-4a70-a851-b34e2e05cb7b", "name": "Set the Membership Selection Criteria to a List of Identities", "originalRequest": { "url": { @@ -107754,7 +107754,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f6b2c402-7c45-4e8c-99cf-cf5f7e06fe75", + "id": "45b2b4e8-322b-4a3e-8896-7fe902c37a6f", "name": "Set the Membership Selection Criteria to a Standard Expression", "originalRequest": { "url": { @@ -107811,7 +107811,7 @@ "_postman_previewlanguage": "json" }, { - "id": "21114f16-5a3a-45fe-9a55-21710504d6d4", + "id": "336e3538-02dc-4861-adb4-3df411e9069a", "name": "Add a New Clause as the Child of an Existing Standard Expression", "originalRequest": { "url": { @@ -107868,7 +107868,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0afa7270-750a-434b-ba47-32fc4f8dc8cd", + "id": "4e768e41-30ae-4f58-83ec-5f7f053a280e", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -107925,7 +107925,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4393e13f-6dec-4d95-8593-a9551dfbf868", + "id": "7d871df1-f2fb-4164-a3db-54c07a2fb74b", "name": "Assign a Role to a Segment", "originalRequest": { "url": { @@ -107982,7 +107982,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ef5d21fd-0130-416a-8b1f-883864e1c360", + "id": "691919c0-8adf-493b-b78c-6b00d791578d", "name": "Set the Membership Selection Criteria to a List of Identities", "originalRequest": { "url": { @@ -108039,7 +108039,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3a2f373a-ad88-4b76-8535-c322c7142aea", + "id": "f5afaa45-3f4c-4346-a5c8-f978d3c3c69e", "name": "Set the Membership Selection Criteria to a Standard Expression", "originalRequest": { "url": { @@ -108096,7 +108096,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8ee1dab2-d024-4185-ba5b-7957409e8793", + "id": "a21ff786-da10-4862-9953-b475e01760e5", "name": "Add a New Clause as the Child of an Existing Standard Expression", "originalRequest": { "url": { @@ -108159,7 +108159,7 @@ } }, { - "id": "442cbfd7-17d9-4567-893a-413c0a6bf571", + "id": "eb740899-6f62-476e-82f6-80b9ee90cbcf", "name": "Delete a Role", "request": { "name": "Delete a Role", @@ -108200,7 +108200,7 @@ }, "response": [ { - "id": "90f32ffc-ad4f-4674-b5e7-ce892e00f679", + "id": "dc59ddda-f4d7-4788-a96b-c73dcc4dc90b", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -108234,7 +108234,7 @@ "_postman_previewlanguage": "text" }, { - "id": "18ec50cd-1cde-45a7-9b27-a2a7e0ba9ba8", + "id": "afceb486-564c-4cf2-8210-3d45bd9f1dba", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -108278,7 +108278,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9642b3af-9d3d-41dd-998d-2303a7bf9cc7", + "id": "5ba1bba3-5a2e-4a78-81c5-79126821fcb0", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -108322,7 +108322,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b9e1fd80-3ac9-4385-aa67-43ec454d031a", + "id": "4a9749e0-f576-463c-a23c-1891ec5e74c8", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -108366,7 +108366,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a292b403-e1d6-4f1b-bb30-6be1e97b7f54", + "id": "9088997a-f352-4b64-869a-d06fdb1f04b8", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -108410,7 +108410,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8055bcc5-e71f-4952-80be-ab5c18609fef", + "id": "09f3ed5d-4d72-4dfd-90c2-16867ff5388d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -108460,7 +108460,7 @@ } }, { - "id": "5c2e711d-ba28-4837-906a-eaa6980dfcd9", + "id": "df160333-e25f-4f82-8326-a5309c4a8d41", "name": "Delete Role(s)", "request": { "name": "Delete Role(s)", @@ -108503,7 +108503,7 @@ }, "response": [ { - "id": "cf68ae8c-89ca-4fd6-baee-f19621f22ead", + "id": "13b3c196-e673-4120-a96f-183cc8b813e9", "name": "Returns an object with the id of the task performing the delete operation.", "originalRequest": { "url": { @@ -108560,7 +108560,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6572e822-d5db-446a-8cfa-6fd7f993a53b", + "id": "bef6c43a-1c67-41ec-8662-9fc0b9ef17ac", "name": "400.1 Bad Request Content", "originalRequest": { "url": { @@ -108617,7 +108617,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dd797def-749e-4ee3-af61-60b9b421699c", + "id": "1b680519-f11f-45d9-b979-d9e5bf57517c", "name": "400.1 Role ids limit violation", "originalRequest": { "url": { @@ -108674,7 +108674,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cba20a30-d5de-43ef-95b2-b68c1e12c0cd", + "id": "85a7c780-2154-4380-af0e-f44921651b95", "name": "400.1.404 Referenced object not found", "originalRequest": { "url": { @@ -108731,7 +108731,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4075a2d2-b203-40a0-a9d1-a80ef83b8b25", + "id": "e79e5a1e-9c19-4b6d-9d73-afa9d6183895", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -108788,7 +108788,7 @@ "_postman_previewlanguage": "json" }, { - "id": "18c9ef36-b42d-46a9-9a2d-37f854f07c13", + "id": "5de4df3b-43dd-488d-9b52-55cda55ee50b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -108845,7 +108845,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c76bca98-bf7e-467c-81fe-2fb46260ef96", + "id": "41d67433-6755-4f36-b492-31abac47bda8", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -108902,7 +108902,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b406a84e-5c2d-4619-bc9b-fe0dad42e129", + "id": "6bc42c34-9cfe-46a4-b807-a788ee9eb915", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -108965,7 +108965,7 @@ } }, { - "id": "e8f741c1-fe25-44e4-b1ca-cbdb1c7fa6a9", + "id": "3aec8073-f7e3-4853-9e3d-62f9c0c82dfc", "name": "List Identities assigned a Role", "request": { "name": "List Identities assigned a Role", @@ -109050,7 +109050,7 @@ }, "response": [ { - "id": "6d273c90-c868-44bb-b9dc-4f54718aef0f", + "id": "ab398fe0-552c-4ee8-99b7-8721845a5b03", "name": "List of Identities assigned the Role", "originalRequest": { "url": { @@ -109141,7 +109141,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ad807800-170e-4336-85bb-e400cfeca92d", + "id": "9fcb2c12-cf38-4d87-8ba3-70e6c56c6f9c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -109232,7 +109232,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dc147f46-c481-4799-b840-2ca134b2b0e0", + "id": "3c3f8aa3-0d2f-4d46-a041-7c6fe09a35b0", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -109323,7 +109323,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9787fe93-489c-481b-99cb-61f4bf874d03", + "id": "6629c61a-373d-4d22-a1e2-b2ee9570a54c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -109414,7 +109414,7 @@ "_postman_previewlanguage": "json" }, { - "id": "92b8cf8c-fba6-4c65-898f-a83853872913", + "id": "1bd8acfb-fab3-4ba1-b455-20b50623181e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -109505,7 +109505,7 @@ "_postman_previewlanguage": "json" }, { - "id": "28b6aba8-3cc4-4fdf-8e1c-f2a164c72e17", + "id": "69ab8dea-c8df-4509-b76d-11c35afa8934", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -109608,7 +109608,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": "43706487-babe-4a35-b7d5-f881f2ee07e5", + "id": "b61b603e-09ad-4032-ba7a-0c84b974592f", "name": "Create a saved search", "request": { "name": "Create a saved search", @@ -109650,7 +109650,7 @@ }, "response": [ { - "id": "d0b943ed-b11d-4b22-ad1d-b81e38dee637", + "id": "7b4ba351-47e9-494b-84a9-e0501d3596fb", "name": "The persisted saved search.", "originalRequest": { "url": { @@ -109706,7 +109706,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e702fde5-8c0d-4bf4-bf11-8210319dce88", + "id": "87ad4f02-e820-44ee-a34a-41b6f0012468", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -109762,7 +109762,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5347f781-638f-44ac-a675-a28686d40fe0", + "id": "44d63f6b-46b9-41a8-ab5b-3ff84d5500b3", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -109818,7 +109818,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fe0ae88f-4821-4ce8-aa06-041ab79d1026", + "id": "e5c9f5ba-a371-41d2-885e-28bbf433717b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -109874,7 +109874,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fd0a93e1-38c5-4093-8e41-aff4ce493844", + "id": "a28f4d84-c046-467c-8aa3-1c65733f81e8", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -109930,7 +109930,7 @@ "_postman_previewlanguage": "json" }, { - "id": "da730043-1fb7-48b0-bd3a-62d9da5d4d46", + "id": "001e69c8-e078-4ecb-99d9-5d2e90893357", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -109992,7 +109992,7 @@ } }, { - "id": "6eb9d4ec-5d4e-43c6-b39e-588cd652869e", + "id": "97a8f17f-a48d-4101-bad5-1dd25c03aa6d", "name": "A list of Saved Searches", "request": { "name": "A list of Saved Searches", @@ -110058,7 +110058,7 @@ }, "response": [ { - "id": "00421d1c-bc55-4814-8add-5212020dcada", + "id": "0e2b91ab-a237-4001-a075-b9e9c395d143", "name": "The list of requested saved searches.", "originalRequest": { "url": { @@ -110147,7 +110147,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8c2253d2-d5bc-414f-8c7f-d6b141299026", + "id": "273eba87-8b3d-4b94-a70e-6f5d76e0ea2a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -110227,7 +110227,7 @@ "_postman_previewlanguage": "json" }, { - "id": "50b9d60e-8a90-4aa3-9ad1-54665e3a20d8", + "id": "b8e75754-9ac0-45ac-97ba-a0beeeb3c7b7", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -110307,7 +110307,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a2a54c19-88b0-4dc4-ad4b-8a8a8eafc67c", + "id": "255dc1ae-e363-4c10-91ac-5fff73480e17", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -110387,7 +110387,7 @@ "_postman_previewlanguage": "json" }, { - "id": "35ae3447-be94-4d96-9899-09336aabc8d7", + "id": "747b0630-f998-44f9-a146-9f04ffce23d9", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -110467,7 +110467,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e7f5412b-6991-4e91-ac43-7331b0dd3f56", + "id": "7bf2de74-a8e8-42c0-a384-42ed138a13d9", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -110553,7 +110553,7 @@ } }, { - "id": "276489be-ef1a-4a25-86b3-9f11c54c388b", + "id": "1623daff-01ea-458e-ba46-3a469fd4f13b", "name": "Updates an existing saved search\n", "request": { "name": "Updates an existing saved search\n", @@ -110607,7 +110607,7 @@ }, "response": [ { - "id": "9cafe472-1c40-4b06-b27a-8ed7f7c53719", + "id": "e416214b-44cd-4b77-8522-053ca9be896d", "name": "The persisted saved search.", "originalRequest": { "url": { @@ -110664,7 +110664,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e7faad27-ab2a-4ddd-a750-c7757457dde5", + "id": "05d9d662-fbf5-47a8-86f1-c5a19a1172c0", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -110721,7 +110721,7 @@ "_postman_previewlanguage": "json" }, { - "id": "641c2728-0f19-498a-acf1-eb21efe367d9", + "id": "5049efed-278d-40f2-be9c-cc08c9371def", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -110778,7 +110778,7 @@ "_postman_previewlanguage": "json" }, { - "id": "336e4b14-c5c3-4df6-a6ee-1396c8c9021d", + "id": "8962b790-f7ce-4d52-8327-d74d449bc554", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -110835,7 +110835,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ee1df40c-2610-4797-aa07-e8f9d35945f1", + "id": "51235140-5b27-4331-8d10-b34f38f55309", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -110892,7 +110892,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c555f9da-344d-4f9a-9f4a-44501aa6c3e3", + "id": "ebfbb311-0de5-4e52-b555-8f17430711e3", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -110955,7 +110955,7 @@ } }, { - "id": "943611fc-7c71-47ed-bed4-ceadb8c004ed", + "id": "06cd6e41-8e61-4962-9080-208c5e5fce17", "name": "Return saved search by ID", "request": { "name": "Return saved search by ID", @@ -110996,7 +110996,7 @@ }, "response": [ { - "id": "eb6e2c1a-f568-4fe7-9461-a629d26bcd16", + "id": "7d17ecb8-4a07-4ab1-9020-1cb12d41fd34", "name": "The requested saved search.", "originalRequest": { "url": { @@ -111040,7 +111040,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9e6461a3-6823-48af-86bb-5708daae09bf", + "id": "79a1c99c-f0c0-4dde-99ef-b7ea33aa5b12", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -111084,7 +111084,7 @@ "_postman_previewlanguage": "json" }, { - "id": "07010cfa-0edb-42ab-a0eb-f658f43f4298", + "id": "c574ef43-48d4-4be7-81f6-ba71e5700154", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -111128,7 +111128,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6624597c-7763-46b8-9938-8ea0915cd3ad", + "id": "589109ba-6902-48a6-b3c8-db34ea3bf9bc", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -111172,7 +111172,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a94770c7-526e-427f-999c-3a47dbbd48f6", + "id": "ac06537a-4402-4139-9c33-489d5a0bcc60", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -111216,7 +111216,7 @@ "_postman_previewlanguage": "json" }, { - "id": "768de74a-d2e5-4597-8d09-2b203b2b14c5", + "id": "81a898a0-869a-4525-bc0a-0289886d7e16", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -111260,7 +111260,7 @@ "_postman_previewlanguage": "json" }, { - "id": "76ae6526-e5bc-4fd2-98ce-5bd7698b94b6", + "id": "dc6aecc9-8f8b-46d7-98f7-d2bf53abbcc3", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -111310,7 +111310,7 @@ } }, { - "id": "ca824672-f57a-4424-8619-528a12dd0c2e", + "id": "3ff42f07-0cae-4d53-b180-f52b610e3597", "name": "Delete document by ID", "request": { "name": "Delete document by ID", @@ -111351,7 +111351,7 @@ }, "response": [ { - "id": "5d78df59-459e-49dc-a25c-2cdd025692c5", + "id": "e26ffbb2-a0a8-4e24-9f03-7fd481dfe638", "name": "No Content - Indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -111385,7 +111385,7 @@ "_postman_previewlanguage": "text" }, { - "id": "ab2402c6-2424-44b7-88e1-b7381c6c8de1", + "id": "ab1752d5-afe6-4e24-9a72-9fe9ec10213f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -111429,7 +111429,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3c39510c-8c54-4d33-af2e-565271fe0b09", + "id": "2149ac6b-9c4a-4dc7-982e-d4bae4d457a0", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -111473,7 +111473,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dbb3eed9-b3e9-4199-95eb-cca371d2dddd", + "id": "f0de55b4-2ed1-4833-88dd-cf6c6ea5ce3f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -111517,7 +111517,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3333efd4-b652-4660-8e65-b110ab49300d", + "id": "29a4dccc-4bc1-4b21-9b0c-9d4f8322921b", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -111561,7 +111561,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4edef0b7-a67b-4148-9ee1-1b83244a5ec0", + "id": "1e217659-6d2a-41e1-be98-0da95d0c304b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -111605,7 +111605,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a62d9204-6f9a-49d8-9f4c-cfba0bac8496", + "id": "eb335e38-1565-4fab-a7df-e3043c8a861e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -111655,7 +111655,7 @@ } }, { - "id": "a71cf815-c9a2-4a14-99d0-a4180eb45d43", + "id": "22de0c85-cbec-4421-b59a-2bf87e4addbd", "name": "Execute a saved search by ID", "request": { "name": "Execute a saved search by ID", @@ -111710,7 +111710,7 @@ }, "response": [ { - "id": "0a7d8e26-07e0-4702-bc38-6b62b73b3a5f", + "id": "a88e4451-7c7f-4e94-9677-7153ff2ae55a", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -111758,7 +111758,7 @@ "_postman_previewlanguage": "text" }, { - "id": "a8809598-39e5-463f-b0f1-21c1fa1db1fb", + "id": "f3880a43-301a-41e5-a1ce-b49f7c5a9810", "name": "Triggered by Scheduled Search", "originalRequest": { "url": { @@ -111816,7 +111816,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d2e5843a-8020-4443-ad43-32687849f047", + "id": "4737c7f1-3c40-4cc9-af83-254744769129", "name": "Triggered by UI Test", "originalRequest": { "url": { @@ -111874,7 +111874,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0005df14-d92e-4d06-bd2f-102ad26ed6ac", + "id": "eef13cf5-4ecb-41ef-865e-3935a02dbb11", "name": "Triggered by Scheduled Search", "originalRequest": { "url": { @@ -111932,7 +111932,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dd21bdbe-4705-4dff-8eb9-245a3c1fbde7", + "id": "e92be075-633d-4e56-a4ed-7b6a284090c1", "name": "Triggered by UI Test", "originalRequest": { "url": { @@ -111990,7 +111990,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bab07c2d-0b7b-4fb6-964f-843be826733d", + "id": "a16857c9-1fe6-411e-81df-b8eaae21f1b0", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -112048,7 +112048,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a67c874c-8f1b-47df-830e-c6697195916a", + "id": "a951fcdc-a959-4a95-8684-17684f3b0a63", "name": "Triggered by UI Test", "originalRequest": { "url": { @@ -112106,7 +112106,7 @@ "_postman_previewlanguage": "json" }, { - "id": "52087e78-3a3e-45a8-895a-f604d6664c3d", + "id": "d94c685d-1dce-4b23-97bb-408574c418ba", "name": "An example of a 404 response object", "originalRequest": { "url": { @@ -112164,7 +112164,7 @@ "_postman_previewlanguage": "json" }, { - "id": "52f572ba-6ef9-4589-97b1-80257906e3ff", + "id": "3c476342-964b-4b70-99e0-e5eff5890016", "name": "Triggered by UI Test", "originalRequest": { "url": { @@ -112222,7 +112222,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e1a0c23f-905a-423c-b164-3ec511d212e5", + "id": "74d6a427-e0ae-40d5-a380-f8800ad3dfe3", "name": "Triggered by Scheduled Search", "originalRequest": { "url": { @@ -112280,7 +112280,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f3abaef1-69cd-4685-9c32-ef7fb7c280ff", + "id": "e7581356-a96a-4691-b002-c499a48a6e3d", "name": "Triggered by UI Test", "originalRequest": { "url": { @@ -112338,7 +112338,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c1947c73-e9d3-44ac-9bac-33bb21eed363", + "id": "045f6687-f879-40b2-963a-93a756e563a8", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -112396,7 +112396,7 @@ "_postman_previewlanguage": "json" }, { - "id": "114ad11e-f0bb-4b20-8c78-c92a1d41bd0d", + "id": "ed3c28c1-bb1f-459d-84b5-b181052d7dfc", "name": "Triggered by UI Test", "originalRequest": { "url": { @@ -112466,7 +112466,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": "cc5c180f-182f-4fec-b596-b87dfddeceb9", + "id": "fcb01cde-7623-4f15-8399-3ad83ebacd5b", "name": "Create a new scheduled search", "request": { "name": "Create a new scheduled search", @@ -112508,7 +112508,7 @@ }, "response": [ { - "id": "93616fdf-e306-487c-8a82-6ff189b4a6dd", + "id": "5561d234-a956-452e-92dd-2bfdb8b67d1c", "name": "Daily Search", "originalRequest": { "url": { @@ -112564,7 +112564,7 @@ "_postman_previewlanguage": "json" }, { - "id": "37de6fe8-9843-4fe5-bbbc-21785998b671", + "id": "f84e6c2c-5651-46d0-a0c1-a199a23800d9", "name": "Weekly Search", "originalRequest": { "url": { @@ -112620,7 +112620,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1b4ba27a-5f55-4eb7-8699-5fef60d631bb", + "id": "b01946d2-c4f9-4f00-92ff-c22c531c9012", "name": "Monthly Search", "originalRequest": { "url": { @@ -112676,7 +112676,7 @@ "_postman_previewlanguage": "json" }, { - "id": "12038a9a-a0cc-49da-b441-f3fcb5f0154e", + "id": "7b63de2d-8388-42ec-86ba-6f7aaee18f46", "name": "Annual Search", "originalRequest": { "url": { @@ -112732,7 +112732,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f8aac48a-dd08-410f-8e16-8b7f4e964375", + "id": "7893aa39-ea5e-40d5-aadc-75f90b70bbe6", "name": "Calendar Search", "originalRequest": { "url": { @@ -112788,7 +112788,7 @@ "_postman_previewlanguage": "json" }, { - "id": "12b88785-4cea-4daf-9019-f55c1c823029", + "id": "c0e6a8f0-eaad-435c-980d-a4cbce6429ad", "name": "Daily Search", "originalRequest": { "url": { @@ -112844,7 +112844,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7ef498d7-07a2-4281-84d9-82bb27c7d3ce", + "id": "0cc0d7e3-356b-4d5a-b8d1-df144e5faec0", "name": "Weekly Search", "originalRequest": { "url": { @@ -112900,7 +112900,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6556c54a-9253-4e3e-bac4-2dadb9b89f58", + "id": "cbac2e93-e44e-4142-94ee-d0859c32c1a4", "name": "Monthly Search", "originalRequest": { "url": { @@ -112956,7 +112956,7 @@ "_postman_previewlanguage": "json" }, { - "id": "98088992-888b-4b39-8aa7-6258a8889cef", + "id": "eb4925a0-9238-4abb-ab3f-b668962f5bca", "name": "Annual Search", "originalRequest": { "url": { @@ -113012,7 +113012,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b54c141e-31b5-4aa8-bd3e-8644c692f95c", + "id": "24616837-6f96-4384-bf49-26f2952a2f16", "name": "Calendar Search", "originalRequest": { "url": { @@ -113068,7 +113068,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e2c4180e-25cd-4ce4-86fb-1d59584045ae", + "id": "2763fc9a-0a38-45c5-a3e3-27eb0749edc9", "name": "Daily Search", "originalRequest": { "url": { @@ -113124,7 +113124,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c3934e45-0b6f-4fa2-b353-6063e46daae9", + "id": "16b41fbb-f64a-46c8-be7a-6d9619e9cce3", "name": "Weekly Search", "originalRequest": { "url": { @@ -113180,7 +113180,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cf13ef7d-a571-4b07-8264-74761f4050bb", + "id": "f2741701-732d-4709-99bb-3244254076bd", "name": "Monthly Search", "originalRequest": { "url": { @@ -113236,7 +113236,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e4ab82d9-759b-40f0-8013-23e012cb0d11", + "id": "155fe3b2-b74c-4dd8-b066-4185beef7e02", "name": "Annual Search", "originalRequest": { "url": { @@ -113292,7 +113292,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fad97e86-7f54-4d4e-ac35-b50f4e54e8af", + "id": "c93416e7-1056-48d6-b9db-619ae45c7ecd", "name": "Calendar Search", "originalRequest": { "url": { @@ -113348,7 +113348,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9c9cfecb-8d86-458b-838b-3a240cde4615", + "id": "9f3f69c7-91d5-42f8-92d6-88f4cbc14b77", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -113404,7 +113404,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ca039523-6d83-4694-942a-90b3725fbe6b", + "id": "0f5817d1-42e8-4220-94de-bde04be34df1", "name": "Weekly Search", "originalRequest": { "url": { @@ -113460,7 +113460,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dc423166-b9b6-4f33-bd8a-6cc6b6d1bbea", + "id": "cdaa5508-c448-48b9-a38f-a24a54d6db94", "name": "Monthly Search", "originalRequest": { "url": { @@ -113516,7 +113516,7 @@ "_postman_previewlanguage": "json" }, { - "id": "58fe2b48-cff6-4abd-a787-442fbfc2c698", + "id": "643f81f8-52b5-4b5b-8686-b3bf971fb00f", "name": "Annual Search", "originalRequest": { "url": { @@ -113572,7 +113572,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3dc9801c-46ae-4cde-bfce-62729fd5027d", + "id": "b9b13adf-23eb-44bb-8282-e5328b0122e0", "name": "Calendar Search", "originalRequest": { "url": { @@ -113628,7 +113628,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fe39113f-7bf5-47c6-983c-14c4f4a5d15a", + "id": "1a19fec1-fdc0-4e75-b60c-6d93ecb93313", "name": "An example of a 404 response object", "originalRequest": { "url": { @@ -113684,7 +113684,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bcd50c15-d2a7-4bbe-a5ce-1e8bba4dbd69", + "id": "440f4a46-bcc8-49b4-a0ba-f986477b7f23", "name": "Weekly Search", "originalRequest": { "url": { @@ -113740,7 +113740,7 @@ "_postman_previewlanguage": "json" }, { - "id": "beff07c4-1d1d-47d7-952e-ea66990fc192", + "id": "147340ec-7d2e-463e-866b-cc97601edd77", "name": "Monthly Search", "originalRequest": { "url": { @@ -113796,7 +113796,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2756651b-2c7e-499b-9d9e-380cdf792e62", + "id": "72f958b0-9eb4-4d06-9b7c-32bcc5ca8d21", "name": "Annual Search", "originalRequest": { "url": { @@ -113852,7 +113852,7 @@ "_postman_previewlanguage": "json" }, { - "id": "28f0ec77-c7a3-4da6-be17-ec8680da543b", + "id": "bdaa77a2-8afc-48c7-9377-9965f49e424c", "name": "Calendar Search", "originalRequest": { "url": { @@ -113908,7 +113908,7 @@ "_postman_previewlanguage": "json" }, { - "id": "63a573c3-4023-4156-a1e8-e7e545dcf3d9", + "id": "83130364-8db3-4e37-b336-ab167aefa2ba", "name": "Daily Search", "originalRequest": { "url": { @@ -113964,7 +113964,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1df58206-c715-4202-840b-29e6a80d10da", + "id": "586ecbe3-64d2-46da-8aa5-5f2e7bc679f3", "name": "Weekly Search", "originalRequest": { "url": { @@ -114020,7 +114020,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1ad56dfe-c0e0-49bc-8e0f-fd3aa8c3e20c", + "id": "97036772-6e54-4de0-9f2d-c395429e95e7", "name": "Monthly Search", "originalRequest": { "url": { @@ -114076,7 +114076,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2b340629-8896-4e69-9a43-8773313035d7", + "id": "1f9668e8-2dae-4736-804d-dc452ed0562f", "name": "Annual Search", "originalRequest": { "url": { @@ -114132,7 +114132,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b2809ba6-41bc-4aae-a9fb-eccb858eed0a", + "id": "6c8c4504-9891-4ed4-9613-4271094e107c", "name": "Calendar Search", "originalRequest": { "url": { @@ -114188,7 +114188,7 @@ "_postman_previewlanguage": "json" }, { - "id": "76d5a3da-0699-4942-bf65-7131acc0ab16", + "id": "e2b2dc9f-83fa-480c-a470-265ca6d9dfa0", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -114244,7 +114244,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dc2d1a5c-bdac-4681-97f3-1f9f852d5a28", + "id": "625b73a7-0d81-443a-84f1-5219d2888640", "name": "Weekly Search", "originalRequest": { "url": { @@ -114300,7 +114300,7 @@ "_postman_previewlanguage": "json" }, { - "id": "16101c23-ee32-45a7-a435-5b1d66b9f768", + "id": "d3ee5c54-74be-4db7-a90d-df67513f591e", "name": "Monthly Search", "originalRequest": { "url": { @@ -114356,7 +114356,7 @@ "_postman_previewlanguage": "json" }, { - "id": "69c4de53-2c6a-4a0a-8b34-f8d0aa0876f7", + "id": "327beaad-78a2-4b5b-a81c-ea1e2b84f198", "name": "Annual Search", "originalRequest": { "url": { @@ -114412,7 +114412,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1d40dd68-399a-44df-9540-d611af2b1fc1", + "id": "05b69d78-159c-451b-a01d-0b72adde3b1e", "name": "Calendar Search", "originalRequest": { "url": { @@ -114474,7 +114474,7 @@ } }, { - "id": "54e76cb6-bf3f-41fb-a6fb-cef78393c801", + "id": "34a74e01-ea34-4057-8604-3967c9b9fec8", "name": "List scheduled searches", "request": { "name": "List scheduled searches", @@ -114540,7 +114540,7 @@ }, "response": [ { - "id": "e1dc9420-3ad9-4511-a434-25d15ac1983a", + "id": "f552f6f5-eff2-4586-8c29-4939c9d510e2", "name": "The list of requested scheduled searches.", "originalRequest": { "url": { @@ -114629,7 +114629,7 @@ "_postman_previewlanguage": "json" }, { - "id": "20b89bb3-7815-4490-af75-fec264c21e5e", + "id": "f65c214f-e299-428d-8a6c-a472167e771c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -114709,7 +114709,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1f6edff4-2933-49f2-9e25-1f6dbe7b8b57", + "id": "e5d8f9b9-826b-47c2-9ea1-45ebddec00ea", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -114789,7 +114789,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4858dece-25f4-41d5-a933-bb51679bd8b8", + "id": "53abe690-aedc-4388-9c22-c4dce9bea9af", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -114869,7 +114869,7 @@ "_postman_previewlanguage": "json" }, { - "id": "739312ac-20c0-4c23-aeca-602f37547a03", + "id": "5ed138c6-cee2-4ba3-b449-aacf01ecab70", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -114949,7 +114949,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8e54b1c9-4dbd-40ea-badd-2fac89412978", + "id": "a042df84-846c-4b80-87bb-deb501abc363", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -115029,7 +115029,7 @@ "_postman_previewlanguage": "json" }, { - "id": "30d24035-f7fd-4840-9999-88f375e907b4", + "id": "b0a1d085-d203-45c2-a0d9-fe78b63031ca", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -115115,7 +115115,7 @@ } }, { - "id": "5a532960-8fcf-48a7-a748-e6c6f0113607", + "id": "1b3cda81-008b-47e2-a6ca-8ab44c56b4b9", "name": "Update an existing Scheduled Search", "request": { "name": "Update an existing Scheduled Search", @@ -115169,7 +115169,7 @@ }, "response": [ { - "id": "bda5a193-148c-4b08-b861-c77af0f8a2eb", + "id": "6ba3cf6c-feab-4bb2-89ea-7162223ac63f", "name": "The persisted scheduled search.", "originalRequest": { "url": { @@ -115226,7 +115226,7 @@ "_postman_previewlanguage": "json" }, { - "id": "581b8fbe-8839-4254-ba3b-760105b27db0", + "id": "9f2ffaf2-5b03-4d89-a7c2-51934ddba3f8", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -115283,7 +115283,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e5801235-e488-4749-b1f3-215697f381d2", + "id": "7f8cedef-938c-4456-adc8-0f9b865e0174", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -115340,7 +115340,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3fba8c74-b7fa-43f6-88f5-609d64f9e584", + "id": "0e862ab3-fca0-48e9-9b42-a20871ec8c8f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -115397,7 +115397,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8207235f-7d0f-4fb9-aaae-770a05811a76", + "id": "e38b8272-2b18-4fe0-9df1-4205362d6143", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -115454,7 +115454,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fac8778d-ce63-48a8-bdb5-644f20dc11f2", + "id": "f26eb5bc-a83b-4d62-8c71-a175f2800054", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -115511,7 +115511,7 @@ "_postman_previewlanguage": "json" }, { - "id": "079fbd5a-bc85-4d9a-b665-e396422a0168", + "id": "e218c0ac-4144-4960-b72e-f1feb3ebda4c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -115574,7 +115574,7 @@ } }, { - "id": "15582bec-a4a9-4f59-a891-a0bee4d1d2d3", + "id": "b4ae247a-1ef3-4a3f-8650-d6019cd655fe", "name": "Get a Scheduled Search", "request": { "name": "Get a Scheduled Search", @@ -115615,7 +115615,7 @@ }, "response": [ { - "id": "97b641ed-134e-40d0-a9e8-aeaa343f226d", + "id": "c1468134-fc80-411b-880c-b77edab6a04f", "name": "The requested scheduled search.", "originalRequest": { "url": { @@ -115659,7 +115659,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5ca57a76-f821-46cf-8698-1f21f9d96ee5", + "id": "da455a9c-128e-40f7-ae3d-3b530e5ef0a6", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -115703,7 +115703,7 @@ "_postman_previewlanguage": "json" }, { - "id": "be30d574-3cbc-43b5-89fe-84a07e543705", + "id": "b9bc2f87-8288-44b0-9219-918f2e8e39a8", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -115747,7 +115747,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6b01ac34-db80-435f-a173-349534073087", + "id": "767cda91-3b94-4b10-9a56-a9dc54e726f3", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -115791,7 +115791,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1a98aaf9-aaef-4d29-8135-a8af00b0a05e", + "id": "500f65bb-e5c8-4c4a-aa8c-803cf3686a0a", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -115835,7 +115835,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ee4d8b06-9d2f-4fea-a267-a5273f9ba408", + "id": "0651f5f4-a871-4ed4-99c8-bb8157390165", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -115879,7 +115879,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1ffb4728-bbbf-4746-a15e-525f7dcd19d5", + "id": "7967b8f6-3f79-41c8-af7b-1988f2ad5fa7", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -115929,7 +115929,7 @@ } }, { - "id": "5222fb68-ecee-455d-9f6f-b81babe61f40", + "id": "8e737d15-0425-4416-9b10-9976333656b3", "name": "Delete a Scheduled Search", "request": { "name": "Delete a Scheduled Search", @@ -115970,7 +115970,7 @@ }, "response": [ { - "id": "4cf6ad06-c86b-4e98-aaae-e86eee1b8959", + "id": "ed251c65-b7a6-4517-939b-c068709d83ed", "name": "No Content - Indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -116004,7 +116004,7 @@ "_postman_previewlanguage": "text" }, { - "id": "d19f7afa-16ef-4c4f-a26b-e08e43c2365e", + "id": "c38f7ff0-f6fe-432a-96b4-1c69083d877e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -116048,7 +116048,7 @@ "_postman_previewlanguage": "json" }, { - "id": "59718e96-8480-4bde-9d7e-ff97c3bbdb4b", + "id": "1372602b-fb95-4d6a-b983-3d935728d699", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -116092,7 +116092,7 @@ "_postman_previewlanguage": "json" }, { - "id": "10ef012f-7aed-49ca-8338-bfac2afab91a", + "id": "aea8291c-6a28-40ff-b325-27db72c93eef", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -116136,7 +116136,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8bf7ac96-4696-4d24-8411-533357683972", + "id": "45f5dab7-a76b-4993-b773-fc58fc2fb73a", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -116180,7 +116180,7 @@ "_postman_previewlanguage": "json" }, { - "id": "304d11c0-4f80-4a2d-9d43-12eb90dc7578", + "id": "65550698-f9fb-4dd3-ae0c-2f73de8236a6", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -116224,7 +116224,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dfeee623-5749-497d-a3be-8e1c6eeb89aa", + "id": "8e967f9d-d0de-47a2-9eda-87932023ba4d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -116274,7 +116274,7 @@ } }, { - "id": "d1256fe4-211a-4377-91c4-3504c51d11d3", + "id": "f200d72e-7257-48ea-8300-d638d74c4548", "name": "Unsubscribe a recipient from Scheduled Search", "request": { "name": "Unsubscribe a recipient from Scheduled Search", @@ -116329,7 +116329,7 @@ }, "response": [ { - "id": "35947d26-90b5-4e68-8e82-725ab24b474f", + "id": "e76262c6-7f30-4d1a-946a-d679a078cb7c", "name": "No Content - Indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -116377,7 +116377,7 @@ "_postman_previewlanguage": "text" }, { - "id": "8028e2ce-8b9d-4feb-ae52-fd8b9e951ca6", + "id": "a1bf2c0b-4932-4a51-bef1-bd8a31c832cd", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -116435,7 +116435,7 @@ "_postman_previewlanguage": "json" }, { - "id": "472e3bc8-6313-4d89-a74e-f237b7f12582", + "id": "bd1a750a-8119-4b67-b439-b62a3e58daf9", "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": "1e263db5-06b4-4cc5-99a7-87ebc0b8b55b", + "id": "7a327a6a-1a21-49a7-9a24-43880675f274", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -116563,7 +116563,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": "e385a5ce-0e95-438b-a092-6085a210956f", + "id": "fa057c81-5e44-4d0f-875a-ad361824ca83", "name": "Perform Search", "request": { "name": "Perform Search", @@ -116633,7 +116633,7 @@ }, "response": [ { - "id": "eeffbd08-d7e0-445d-abf5-e6b0e50b1da6", + "id": "8e396562-b35f-4a45-ac5f-238fc78fea93", "name": "A collection of AccessProfiles", "originalRequest": { "url": { @@ -116726,7 +116726,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8bf96702-cb1d-4f1e-bde5-54e682d3011a", + "id": "aa8a9ed6-a232-4203-9f03-075d8c9725fe", "name": "A collection of Entitlements", "originalRequest": { "url": { @@ -116819,7 +116819,7 @@ "_postman_previewlanguage": "json" }, { - "id": "51aa0e03-1528-4126-879b-637e0f676552", + "id": "3d155858-d9f8-45d5-b481-5e6577dfbcc1", "name": "A collection of Events", "originalRequest": { "url": { @@ -116912,7 +116912,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7db86fc3-d086-4b5a-a51a-93f83fbda245", + "id": "82f7c8e4-53c9-4129-a4ab-7a19df30583e", "name": "A collection of Identities", "originalRequest": { "url": { @@ -117005,7 +117005,7 @@ "_postman_previewlanguage": "json" }, { - "id": "da21efad-1c60-4f3b-9c94-b8b2cf352d9c", + "id": "a6ad0342-29a3-4ed3-96f3-2ac5fd25ff26", "name": "A collection of Roles", "originalRequest": { "url": { @@ -117098,7 +117098,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e3c7e7c4-6882-4ef3-a009-130f2618bcce", + "id": "bd9ddc0e-7be9-422a-a757-1c72726d002e", "name": "Filter with Exists", "originalRequest": { "url": { @@ -117191,7 +117191,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f070d4c3-1521-4d5a-90f7-24bfd2682b70", + "id": "f7478ed7-0a8f-4a77-8415-3e7aac78118b", "name": "Filter with Range", "originalRequest": { "url": { @@ -117284,7 +117284,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4ea73b63-84a8-4c15-8d8f-24492244aff9", + "id": "12f4a558-4aa8-41fe-a5fa-e6df9753de1f", "name": "Filter with Terms", "originalRequest": { "url": { @@ -117377,7 +117377,7 @@ "_postman_previewlanguage": "json" }, { - "id": "705c6a7d-5777-4783-8bd9-1b952c9a2665", + "id": "4e175d07-c0f0-4d2a-9b5f-a7eeadec7032", "name": "Query with Fields", "originalRequest": { "url": { @@ -117461,7 +117461,7 @@ "_postman_previewlanguage": "json" }, { - "id": "deb4bb64-d50b-4c8b-89e8-58d94ad8b2da", + "id": "db271ee7-8510-4495-8872-69c5f6590f09", "name": "Query with TimeZone", "originalRequest": { "url": { @@ -117545,7 +117545,7 @@ "_postman_previewlanguage": "json" }, { - "id": "16ade25b-5ce0-4c7b-b75f-7d8d5e46990e", + "id": "75512fa6-7e23-4095-9d08-140112de972c", "name": "Query with InnerHit", "originalRequest": { "url": { @@ -117629,7 +117629,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f5cf9bb2-9150-45d3-8cfe-a180ddf9ed64", + "id": "81ed5785-c0b5-4b7c-9957-406937b8a222", "name": "TypeAheadQuery", "originalRequest": { "url": { @@ -117713,7 +117713,7 @@ "_postman_previewlanguage": "json" }, { - "id": "45439fd5-853d-4d0c-bbfb-add82cd98707", + "id": "8ba7cb6e-f1e0-4be2-9a10-291348b15396", "name": "TypeAheadQuery with NestedType", "originalRequest": { "url": { @@ -117797,7 +117797,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3e4459b0-e9f6-4740-a208-19d053bcb90a", + "id": "202c0200-ecd3-474f-9c77-4afb7a5e5546", "name": "Filter with Exists", "originalRequest": { "url": { @@ -117881,7 +117881,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7def38f3-b411-462b-a6de-c8b58eabbd73", + "id": "737cc752-dca2-479d-b646-a6ee4a87e11f", "name": "Filter with Range", "originalRequest": { "url": { @@ -117965,7 +117965,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b52f834f-3b1f-457d-a8be-9e760307acd0", + "id": "731e1d76-aa0d-4a38-a13e-d3d889d321dd", "name": "Filter with Terms", "originalRequest": { "url": { @@ -118049,7 +118049,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3c77eebe-f619-4cb9-9f0f-e6e70e88d210", + "id": "5fab74da-cdc2-4bb3-a1c0-7348bc8c910c", "name": "Query with Fields", "originalRequest": { "url": { @@ -118133,7 +118133,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1aacb776-a6a1-4c8a-bf11-2c354f639414", + "id": "422bf007-e19f-4890-8e52-cc18275c844a", "name": "Query with TimeZone", "originalRequest": { "url": { @@ -118217,7 +118217,7 @@ "_postman_previewlanguage": "json" }, { - "id": "105b7c79-1a29-4fcc-963e-bfef5a4cd07e", + "id": "7f807719-355b-42ec-903d-3ebf8f356360", "name": "Query with InnerHit", "originalRequest": { "url": { @@ -118301,7 +118301,7 @@ "_postman_previewlanguage": "json" }, { - "id": "27460aac-39e2-4383-ba3d-3393081c0e81", + "id": "2c67bfd6-9d00-4278-967b-bfc0ca659213", "name": "TypeAheadQuery", "originalRequest": { "url": { @@ -118385,7 +118385,7 @@ "_postman_previewlanguage": "json" }, { - "id": "12a23481-8107-477b-af51-f5fe7ec11663", + "id": "38b6469b-0af1-42a3-99ce-8e523f639c38", "name": "TypeAheadQuery with NestedType", "originalRequest": { "url": { @@ -118469,7 +118469,7 @@ "_postman_previewlanguage": "json" }, { - "id": "68c80109-3f80-484f-b08c-f6ef053cb09d", + "id": "0560c3b8-666c-467f-b467-d69c01cd8308", "name": "Filter with Exists", "originalRequest": { "url": { @@ -118553,7 +118553,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c31e8098-21f6-4435-b368-7baebe50c515", + "id": "a7032182-d035-420a-8039-edbd917174c5", "name": "Filter with Range", "originalRequest": { "url": { @@ -118637,7 +118637,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0f3711e9-8505-4de4-8954-4c57a123aff2", + "id": "2e3211cf-d7de-490f-9bc1-10257577c5b4", "name": "Filter with Terms", "originalRequest": { "url": { @@ -118721,7 +118721,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e2d7b900-387b-4318-9c66-85dc83c43ec2", + "id": "eb27ff43-afd0-4f02-ab71-a053ed8f1e0a", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -118805,7 +118805,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d3d561a5-e9d2-4aac-ab8d-71d84fea53d3", + "id": "48551076-ebfb-4326-aa96-bdede08d2491", "name": "Query with TimeZone", "originalRequest": { "url": { @@ -118889,7 +118889,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3c1fef8e-f8b3-435c-90c4-f54a1cdb8a74", + "id": "9bd54d77-f49a-40bb-886e-471d015c53b8", "name": "Query with InnerHit", "originalRequest": { "url": { @@ -118973,7 +118973,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a552e79f-48b8-4b79-b79e-00e1c5327d18", + "id": "4a04c0ec-0a80-4c6f-8f03-1dc8ad852b72", "name": "TypeAheadQuery", "originalRequest": { "url": { @@ -119057,7 +119057,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8f4eddf3-806c-4694-91ea-a5c253b9dbcd", + "id": "cd29f8f4-ecc3-4894-97b8-73e151497e17", "name": "TypeAheadQuery with NestedType", "originalRequest": { "url": { @@ -119141,7 +119141,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d4ae3c33-02a6-4842-9e62-2cec571d239b", + "id": "d81dbfcb-a184-41dd-86e7-0583cb51d9de", "name": "Filter with Exists", "originalRequest": { "url": { @@ -119225,7 +119225,7 @@ "_postman_previewlanguage": "json" }, { - "id": "144fae3d-a141-4d6a-b72d-cacafd3be988", + "id": "d01b356e-0793-4c9d-b011-266ec9d94b59", "name": "Filter with Range", "originalRequest": { "url": { @@ -119309,7 +119309,7 @@ "_postman_previewlanguage": "json" }, { - "id": "445fe18d-19b5-4c19-a8a4-5ed143d1b28f", + "id": "dfe76ef0-81a3-4de9-b750-59b08cf8261a", "name": "Filter with Terms", "originalRequest": { "url": { @@ -119393,7 +119393,7 @@ "_postman_previewlanguage": "json" }, { - "id": "132a07b3-5229-4603-a1bd-70ed4a9f34cf", + "id": "2c935e5f-6d50-4858-9c04-a90fef1b03b1", "name": "Query with Fields", "originalRequest": { "url": { @@ -119477,7 +119477,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fda7be31-7194-4474-b3cc-a0183645f8ba", + "id": "d1d2e586-b1da-48d9-8e83-a01ccec2b7e7", "name": "Query with TimeZone", "originalRequest": { "url": { @@ -119561,7 +119561,7 @@ "_postman_previewlanguage": "json" }, { - "id": "09a6002b-9516-44f8-a5f4-a4383ecb0e03", + "id": "d8f4d781-e73e-479d-8a2b-4ab116a127eb", "name": "Query with InnerHit", "originalRequest": { "url": { @@ -119645,7 +119645,7 @@ "_postman_previewlanguage": "json" }, { - "id": "466627a0-013c-4a1a-8f20-061231a856fe", + "id": "1cbdd426-1e47-4b51-b790-ae863cabf57c", "name": "TypeAheadQuery", "originalRequest": { "url": { @@ -119729,7 +119729,7 @@ "_postman_previewlanguage": "json" }, { - "id": "15e9151a-ea5a-434e-adaf-01705c827893", + "id": "082bfb21-89d8-4cda-9533-4ee382fea1f7", "name": "TypeAheadQuery with NestedType", "originalRequest": { "url": { @@ -119813,7 +119813,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fe2c6958-47f6-4329-b46b-7c47036fd09a", + "id": "95ab2ace-517b-483b-ac2a-b102bff9496c", "name": "Filter with Exists", "originalRequest": { "url": { @@ -119897,7 +119897,7 @@ "_postman_previewlanguage": "json" }, { - "id": "db777a30-66db-4dbd-9fb0-f2b8983875e1", + "id": "3a57e926-6f11-4103-8f73-21a79d737ba1", "name": "Filter with Range", "originalRequest": { "url": { @@ -119981,7 +119981,7 @@ "_postman_previewlanguage": "json" }, { - "id": "77c7acf3-0365-4629-a0e9-2cc534cac438", + "id": "cbba354c-fedb-4a62-be6a-a915b32e8016", "name": "Filter with Terms", "originalRequest": { "url": { @@ -120065,7 +120065,7 @@ "_postman_previewlanguage": "json" }, { - "id": "51e3cf5e-82e6-4c69-bccb-7530eb0bfed1", + "id": "e15c01a0-dbeb-4e8b-92ea-b3c26c23ce1e", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -120149,7 +120149,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c8209f16-e9ce-4093-9185-994eba69b4d8", + "id": "148de82e-d608-4287-a54e-45dfb85f0308", "name": "Query with TimeZone", "originalRequest": { "url": { @@ -120233,7 +120233,7 @@ "_postman_previewlanguage": "json" }, { - "id": "137a4647-999b-4599-9b3a-71eb6a0e1512", + "id": "a5691f8c-183c-4d10-8297-ec59fb415a77", "name": "Query with InnerHit", "originalRequest": { "url": { @@ -120317,7 +120317,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9a4bb217-b07f-4d66-ba38-2765280a5abb", + "id": "ea469c81-c183-40f7-91bf-dd6f091505d4", "name": "TypeAheadQuery", "originalRequest": { "url": { @@ -120401,7 +120401,7 @@ "_postman_previewlanguage": "json" }, { - "id": "60a4d394-3aed-4d68-8a0d-e4624f2f68fe", + "id": "f833ed4d-7926-484f-bd8e-cf73a72f5413", "name": "TypeAheadQuery with NestedType", "originalRequest": { "url": { @@ -120485,7 +120485,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2ae2abaf-a729-42d1-b989-321a0448a8e0", + "id": "7b979a68-46cc-449d-8679-d8fb5248d543", "name": "Filter with Exists", "originalRequest": { "url": { @@ -120569,7 +120569,7 @@ "_postman_previewlanguage": "json" }, { - "id": "24c4b583-6ba9-4c28-8260-07fe43477a31", + "id": "9d43d517-6fe1-49a9-913a-d4a03a6497dd", "name": "Filter with Range", "originalRequest": { "url": { @@ -120653,7 +120653,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f2b56dfa-6fc6-402d-80aa-93da99afd3d9", + "id": "e2007e7b-c7a7-4d22-b122-bf58dfdd60cb", "name": "Filter with Terms", "originalRequest": { "url": { @@ -120743,7 +120743,7 @@ } }, { - "id": "11b0d44e-70c1-4736-89a0-9b0e0902920b", + "id": "c457dd0c-320d-4f5c-a792-9b0aed28f3a5", "name": "Count Documents Satisfying a Query", "request": { "name": "Count Documents Satisfying a Query", @@ -120786,7 +120786,7 @@ }, "response": [ { - "id": "d653b114-3c09-450c-bd32-4cd3759fb874", + "id": "a3c55b45-d4ae-4b8c-be8c-d0fc9fe99c65", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -120843,7 +120843,7 @@ "_postman_previewlanguage": "text" }, { - "id": "3cc1cc44-4854-4015-8aad-988bbf76be8e", + "id": "684c0346-57da-4c88-930e-57ebcfa72e55", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -120900,7 +120900,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cd1aa46b-7abc-403e-97c9-e817166f726f", + "id": "932b8dc1-25a5-435b-9d43-d12f98d3a4b0", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -120957,7 +120957,7 @@ "_postman_previewlanguage": "json" }, { - "id": "575edb23-40f5-4c19-9838-43cc1b01d9ec", + "id": "7f18a3ec-ef1b-413f-a089-d4b64a1984ef", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -121014,7 +121014,7 @@ "_postman_previewlanguage": "json" }, { - "id": "24f8a28b-ab06-4be3-b36f-7980b0ec0fdf", + "id": "5d3dbfd3-c112-4ea1-a44e-37b67e682632", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -121071,7 +121071,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1d6336dd-fde2-4bae-951d-f2020890bf8d", + "id": "0dba9a31-6da7-433b-b882-b931d83b230c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -121134,7 +121134,7 @@ } }, { - "id": "ea23a9fa-efbd-4608-a6d7-dd40081d977b", + "id": "48ad5489-d92d-4e9d-b529-09c7369c34b8", "name": "Perform a Search Query Aggregation", "request": { "name": "Perform a Search Query Aggregation", @@ -121205,7 +121205,7 @@ }, "response": [ { - "id": "d9b1dcdb-6eed-4e65-b14e-3d3f616c1c63", + "id": "f91f31f3-5212-42bb-b715-a75941edc39b", "name": "MetricAggregation", "originalRequest": { "url": { @@ -121299,7 +121299,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f930f548-03f3-4a77-8b6b-6fc39ad1a60d", + "id": "e8383df1-fc06-45eb-bc51-67faa5dc8fdf", "name": "MetricAggregation using DSL", "originalRequest": { "url": { @@ -121393,7 +121393,7 @@ "_postman_previewlanguage": "json" }, { - "id": "22f40829-be54-469a-aaa5-b7111ea1a922", + "id": "391bcdf3-ad22-4af0-9483-8a6c6d2fde26", "name": "BucketAggregation", "originalRequest": { "url": { @@ -121487,7 +121487,7 @@ "_postman_previewlanguage": "json" }, { - "id": "86a3e6ac-c249-46fd-b679-ce075670873d", + "id": "ecdb2fbc-97df-41e3-8f1e-f29aaef93247", "name": "BucketAggregation using DSL", "originalRequest": { "url": { @@ -121581,7 +121581,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4c103218-bd2c-466b-bc52-c2a9a81e3801", + "id": "1830f30f-7940-48fc-a819-4e29453eccb2", "name": "NestedAggregation with BucketAggregation", "originalRequest": { "url": { @@ -121675,7 +121675,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4b6448b1-94c9-499a-9fee-a5a6db4344ec", + "id": "fd661463-e5f5-4340-825e-433e92dfbe2a", "name": "NestedAggregation with BucketAggregation using DSL", "originalRequest": { "url": { @@ -121769,7 +121769,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bb4418b9-5e56-4aa5-a6fa-528d29339adf", + "id": "ef5b03d1-03b8-4183-8f93-6f6fdd845bc3", "name": "NestedAggregation with FilterAggregation and BucketAggregation", "originalRequest": { "url": { @@ -121863,7 +121863,7 @@ "_postman_previewlanguage": "json" }, { - "id": "986acaf5-467b-4d97-89f0-715f4467189a", + "id": "722001e8-3c4f-4137-9a65-32b5cdd43c76", "name": "NestedAggregation with FilterAggregation and BucketAggregation using DSL", "originalRequest": { "url": { @@ -121957,7 +121957,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c9483cd8-ea06-4dc7-82f1-31f3d8f39416", + "id": "6d0a3180-d3b7-42f5-9ea1-07fac842b9d8", "name": "BucketAggregation with SubAggregation", "originalRequest": { "url": { @@ -122051,7 +122051,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b32c1481-6ea3-4f08-aefd-e1a8e3cfcb39", + "id": "09ccf689-f765-469c-a202-8dba8ceafb50", "name": "BucketAggregation with SubAggregation using DSL", "originalRequest": { "url": { @@ -122145,7 +122145,7 @@ "_postman_previewlanguage": "json" }, { - "id": "438384c9-108c-45a4-a115-41fe5d73fc7a", + "id": "3e453e70-a249-4b7f-a9a1-df2294f6a712", "name": "MetricAggregation", "originalRequest": { "url": { @@ -122230,7 +122230,7 @@ "_postman_previewlanguage": "json" }, { - "id": "46fb1f9a-1613-4aff-acb9-e42b80ce8066", + "id": "454b0ca2-4d53-4bc6-a5d7-397f4d89385a", "name": "MetricAggregation using DSL", "originalRequest": { "url": { @@ -122315,7 +122315,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4f39aed8-6efe-4e3e-937d-a9badbefa706", + "id": "7ce1217c-52a0-4134-a2e3-9557a1020ef7", "name": "BucketAggregation", "originalRequest": { "url": { @@ -122400,7 +122400,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f2b7fab8-ae34-4a5e-977c-f91888db0c49", + "id": "9ac55e87-8ba3-413f-970d-e1cd09cefeac", "name": "BucketAggregation using DSL", "originalRequest": { "url": { @@ -122485,7 +122485,7 @@ "_postman_previewlanguage": "json" }, { - "id": "65576f1d-ed90-4f4a-a58e-2095dc00b781", + "id": "71e2a20b-b594-4f6e-98b8-7dcba830107a", "name": "NestedAggregation with BucketAggregation", "originalRequest": { "url": { @@ -122570,7 +122570,7 @@ "_postman_previewlanguage": "json" }, { - "id": "915e9a7c-9e99-44c1-bc62-463dda7f1022", + "id": "281c09b5-de88-4a46-8c4d-2f6b473ee42d", "name": "NestedAggregation with BucketAggregation using DSL", "originalRequest": { "url": { @@ -122655,7 +122655,7 @@ "_postman_previewlanguage": "json" }, { - "id": "172461ba-477e-4bab-880e-b29fd277b2b0", + "id": "f9ec3d09-a138-4ed5-b90a-fc979eff3fbf", "name": "NestedAggregation with FilterAggregation and BucketAggregation", "originalRequest": { "url": { @@ -122740,7 +122740,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0e2d5363-6a92-44bd-9dcd-56fa0320271e", + "id": "c5bf7f27-2938-432c-a22c-12a342369f9e", "name": "NestedAggregation with FilterAggregation and BucketAggregation using DSL", "originalRequest": { "url": { @@ -122825,7 +122825,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eddcaca9-91cc-4ecf-ac31-0332a03f5952", + "id": "45754fcd-d040-4056-bb2f-e88623b48c79", "name": "BucketAggregation with SubAggregation", "originalRequest": { "url": { @@ -122910,7 +122910,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b4256ae3-7fff-4a7b-adaa-9b28a1dd3f78", + "id": "7d5e8897-3a5a-4f71-ace7-bc0cd9bf5bfb", "name": "BucketAggregation with SubAggregation using DSL", "originalRequest": { "url": { @@ -122995,7 +122995,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5c7c7cc4-b5fb-4866-adae-3a6ec913b85c", + "id": "b7c54f7d-fd9d-47e1-9ad2-8b8b6c75f0e2", "name": "MetricAggregation", "originalRequest": { "url": { @@ -123080,7 +123080,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d5a0e10b-e16e-46df-8d81-75aefd276e8f", + "id": "e6e64653-b9ee-4c7b-9867-ffb645d82e35", "name": "MetricAggregation using DSL", "originalRequest": { "url": { @@ -123165,7 +123165,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d654385d-452c-48de-97af-a913f0069d77", + "id": "9fb6996b-9899-40d7-b73b-dba188964b95", "name": "BucketAggregation", "originalRequest": { "url": { @@ -123250,7 +123250,7 @@ "_postman_previewlanguage": "json" }, { - "id": "99400598-b593-448e-a023-02d3d81b1215", + "id": "244feae7-1470-499a-8296-1bf7dd9eb112", "name": "BucketAggregation using DSL", "originalRequest": { "url": { @@ -123335,7 +123335,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c0d533b9-b08f-46a3-924f-a9418ac7d478", + "id": "693f75d7-a765-46ef-842d-baeea6a6a185", "name": "NestedAggregation with BucketAggregation", "originalRequest": { "url": { @@ -123420,7 +123420,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9de5bf4c-a19d-4044-a5a8-2acfe69d20f7", + "id": "b06b1b2e-ef34-4cdc-9bc4-4490f95eb445", "name": "NestedAggregation with BucketAggregation using DSL", "originalRequest": { "url": { @@ -123505,7 +123505,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fb987d21-5063-4e56-8079-e20e3763119a", + "id": "c88d4ac7-d989-4093-abb3-a5f8e9c530bd", "name": "NestedAggregation with FilterAggregation and BucketAggregation", "originalRequest": { "url": { @@ -123590,7 +123590,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b09e292e-7a5c-4720-8d39-10f8443169e4", + "id": "e2b873d1-b041-48ee-b46f-f8f8dcc53dd1", "name": "NestedAggregation with FilterAggregation and BucketAggregation using DSL", "originalRequest": { "url": { @@ -123675,7 +123675,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5efe56cb-3e74-487f-84d2-677789d74b88", + "id": "d9526cd2-dfe3-4a45-8611-753018510d2e", "name": "BucketAggregation with SubAggregation", "originalRequest": { "url": { @@ -123760,7 +123760,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6f6ea275-2965-4175-ada3-79d24805edb0", + "id": "449030bb-b2ea-416f-a683-25608a2a6bc6", "name": "BucketAggregation with SubAggregation using DSL", "originalRequest": { "url": { @@ -123845,7 +123845,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cd0a8cfe-2045-4999-91f8-688148c2d634", + "id": "266153bd-8d49-4996-b2ba-c30de8805225", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -123930,7 +123930,7 @@ "_postman_previewlanguage": "json" }, { - "id": "423be874-e417-44f4-afb5-4296a7954ff5", + "id": "f26809fc-b2db-4ed2-9a4d-181082d332a2", "name": "MetricAggregation using DSL", "originalRequest": { "url": { @@ -124015,7 +124015,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fd010f99-9b52-4762-9523-e76a75c3075f", + "id": "a5edcf8e-77c4-4068-aa30-414e3b52851a", "name": "BucketAggregation", "originalRequest": { "url": { @@ -124100,7 +124100,7 @@ "_postman_previewlanguage": "json" }, { - "id": "565fd65b-f591-4ed5-8997-9dac70ac3504", + "id": "8f216489-e42d-4164-8c34-468b7c7cac86", "name": "BucketAggregation using DSL", "originalRequest": { "url": { @@ -124185,7 +124185,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b53ae39b-6f8b-4a49-81b8-6542d00a692e", + "id": "234ee26d-2e6f-4f45-a194-e06056f73170", "name": "NestedAggregation with BucketAggregation", "originalRequest": { "url": { @@ -124270,7 +124270,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0fc41bec-4454-44bb-bc04-8dc06482b8dd", + "id": "99e1f222-382e-403b-873a-fb6eb954332b", "name": "NestedAggregation with BucketAggregation using DSL", "originalRequest": { "url": { @@ -124355,7 +124355,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ab3bf21b-2410-4279-8f6c-3039c9e0558e", + "id": "fbbe4292-802a-44d6-ab7b-0eada26a52f5", "name": "NestedAggregation with FilterAggregation and BucketAggregation", "originalRequest": { "url": { @@ -124440,7 +124440,7 @@ "_postman_previewlanguage": "json" }, { - "id": "caf9c6e7-5096-4d7d-92c6-3b1558df26fc", + "id": "d0ddcbc8-1bb8-4747-9539-19617730d0d4", "name": "NestedAggregation with FilterAggregation and BucketAggregation using DSL", "originalRequest": { "url": { @@ -124525,7 +124525,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7e3799e8-595a-4289-b50f-b68067557da4", + "id": "a3be49ac-16ec-4a0d-bd0d-14c60a49f392", "name": "BucketAggregation with SubAggregation", "originalRequest": { "url": { @@ -124610,7 +124610,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eb3b81fa-96c6-4f47-90b4-c42e0314f71a", + "id": "65a82886-7331-4551-88d4-bb29e129af1a", "name": "BucketAggregation with SubAggregation using DSL", "originalRequest": { "url": { @@ -124695,7 +124695,7 @@ "_postman_previewlanguage": "json" }, { - "id": "19c1f3cd-f49e-4386-ba56-6d2a624e5452", + "id": "b7689855-1b4f-401a-b0bb-4259d18f9a23", "name": "MetricAggregation", "originalRequest": { "url": { @@ -124780,7 +124780,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e0d1b888-9e13-4abf-a178-308977129761", + "id": "c3a446e0-1edd-4cb0-a905-6b7c7a34fb3e", "name": "MetricAggregation using DSL", "originalRequest": { "url": { @@ -124865,7 +124865,7 @@ "_postman_previewlanguage": "json" }, { - "id": "13fed33f-b845-4dda-b51d-02b28ffdbd99", + "id": "5a7caedc-452b-4164-ab1f-99b50ceec02a", "name": "BucketAggregation", "originalRequest": { "url": { @@ -124950,7 +124950,7 @@ "_postman_previewlanguage": "json" }, { - "id": "522497c3-05a5-4ddf-a582-1a938fa25d02", + "id": "81055d44-7f53-42e9-a20a-f80069117e86", "name": "BucketAggregation using DSL", "originalRequest": { "url": { @@ -125035,7 +125035,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2098a860-3a19-416b-baf3-83ae4e90e13f", + "id": "2e389de5-7d34-46ab-adc6-49e1fb4a064c", "name": "NestedAggregation with BucketAggregation", "originalRequest": { "url": { @@ -125120,7 +125120,7 @@ "_postman_previewlanguage": "json" }, { - "id": "52ccf7e1-b334-4ea8-831f-3eba70c17de8", + "id": "3da5fc33-36d4-4d06-8821-a574bbfbfe77", "name": "NestedAggregation with BucketAggregation using DSL", "originalRequest": { "url": { @@ -125205,7 +125205,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f9f75d35-0690-41cd-8646-e0b3597d0655", + "id": "235b6c25-db87-405f-8b6b-d3104753edc1", "name": "NestedAggregation with FilterAggregation and BucketAggregation", "originalRequest": { "url": { @@ -125290,7 +125290,7 @@ "_postman_previewlanguage": "json" }, { - "id": "74ae16a0-d915-4c9f-bba1-b914b68f92f0", + "id": "2be0c361-a4e5-4de7-a274-1aad5330ba5c", "name": "NestedAggregation with FilterAggregation and BucketAggregation using DSL", "originalRequest": { "url": { @@ -125375,7 +125375,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0f269a2b-95e8-4f94-8e9f-3da1386bb1b1", + "id": "fe690e6f-4953-4d35-9d74-b705df64d20a", "name": "BucketAggregation with SubAggregation", "originalRequest": { "url": { @@ -125460,7 +125460,7 @@ "_postman_previewlanguage": "json" }, { - "id": "506ab0d8-c5fc-43fa-936b-18af6037a25a", + "id": "01d08efa-66c7-468d-8781-6da378e8e209", "name": "BucketAggregation with SubAggregation using DSL", "originalRequest": { "url": { @@ -125545,7 +125545,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bcf6cbe1-c066-494f-9066-cd4010837430", + "id": "d4d58800-1801-4f93-8f60-f3c2ddd4216d", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -125630,7 +125630,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4c36ee18-75b8-4151-a46f-beb15ca834de", + "id": "80924808-66a4-4581-a0f5-cd5ae7822d7a", "name": "MetricAggregation using DSL", "originalRequest": { "url": { @@ -125715,7 +125715,7 @@ "_postman_previewlanguage": "json" }, { - "id": "df536521-24a0-454c-a2bc-cb3b6a18faad", + "id": "4f4d0107-ebc6-46dd-93b4-cd3abdf51df9", "name": "BucketAggregation", "originalRequest": { "url": { @@ -125800,7 +125800,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3085f5f7-f96a-4e41-94a3-658917d65233", + "id": "991e3c84-0fc6-4188-9986-0efeee25a7e7", "name": "BucketAggregation using DSL", "originalRequest": { "url": { @@ -125885,7 +125885,7 @@ "_postman_previewlanguage": "json" }, { - "id": "258dfa8f-af19-456f-a909-13fb4e84640a", + "id": "a4edeb7a-4f16-4451-8362-eb110f43b36d", "name": "NestedAggregation with BucketAggregation", "originalRequest": { "url": { @@ -125970,7 +125970,7 @@ "_postman_previewlanguage": "json" }, { - "id": "52d17005-e542-43a1-98ab-c58438db6c77", + "id": "66c729fb-0ff3-4869-ab25-575c3ecea0f6", "name": "NestedAggregation with BucketAggregation using DSL", "originalRequest": { "url": { @@ -126055,7 +126055,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5b0381f7-9df4-4bbb-a072-227676307cf9", + "id": "1b93eace-2125-4b99-bb42-04be871b9250", "name": "NestedAggregation with FilterAggregation and BucketAggregation", "originalRequest": { "url": { @@ -126140,7 +126140,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6a9196d8-a720-4f65-9524-54300fffe2b1", + "id": "bd858798-7898-47ae-b504-f8a54902ed3f", "name": "NestedAggregation with FilterAggregation and BucketAggregation using DSL", "originalRequest": { "url": { @@ -126225,7 +126225,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ebc9916c-5c33-4904-8a95-39d0c03e2bb1", + "id": "97ef39a6-13ec-41d5-9adf-78b63d982d12", "name": "BucketAggregation with SubAggregation", "originalRequest": { "url": { @@ -126310,7 +126310,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a60364a0-c805-40a7-b60c-662120129385", + "id": "4a55c757-0c8b-4a41-8097-1dc5286eedc6", "name": "BucketAggregation with SubAggregation using DSL", "originalRequest": { "url": { @@ -126401,7 +126401,7 @@ } }, { - "id": "95833335-d0ee-40c2-99d3-2afa3aa444a1", + "id": "b7dfae3d-1d93-4bea-8b73-cc0ba72b2bd2", "name": "Get a Document by ID", "request": { "name": "Get a Document by ID", @@ -126453,7 +126453,7 @@ }, "response": [ { - "id": "aa7dd9a2-4e71-406a-b99d-ef82fce3ed05", + "id": "9613ad6b-4deb-4b22-8af9-aa109f381d0d", "name": "AccessProfile", "originalRequest": { "url": { @@ -126498,7 +126498,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eac69c47-2bdc-4ed2-8eef-bf2fa6e0928b", + "id": "ae1daba3-e9b9-49df-a2d3-e318937183b2", "name": "Entitlement", "originalRequest": { "url": { @@ -126543,7 +126543,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fb06e45a-d941-48f2-ac79-c64796f509f0", + "id": "bd7e74e9-531a-4e6c-9ede-9b848f84ad9a", "name": "Event", "originalRequest": { "url": { @@ -126588,7 +126588,7 @@ "_postman_previewlanguage": "json" }, { - "id": "68e4d902-a488-4ee0-91d2-04e7af0fd099", + "id": "6e536524-9580-4f82-a0f0-c5748985c4f4", "name": "Identity", "originalRequest": { "url": { @@ -126633,7 +126633,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c077e7a7-d353-4185-9345-9e2e65e24381", + "id": "5611d2e2-c365-40df-8a78-751017b9e089", "name": "Role", "originalRequest": { "url": { @@ -126678,7 +126678,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f9d7ce16-0884-4d43-8190-93ea77a0c861", + "id": "be4ec60a-e2ef-4256-a144-ac2c2bd9bcb5", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -126723,7 +126723,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8bedf3d5-d096-4b2c-babd-4bcb56a8e7d7", + "id": "e3b06e69-b904-4370-943a-c6130d6e8d54", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -126768,7 +126768,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0903191d-32b5-4ab6-a86b-4bf52aa21b87", + "id": "40d150d7-cc25-4b52-aa70-0508619c64c8", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -126813,7 +126813,7 @@ "_postman_previewlanguage": "json" }, { - "id": "89bcf23c-d02e-4bab-8c72-82ac428defdd", + "id": "66c1b2c3-8a28-4273-a073-779801d5d03c", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -126858,7 +126858,7 @@ "_postman_previewlanguage": "json" }, { - "id": "99d8379c-6137-4cc1-86df-60e76910643f", + "id": "58fddf40-a00c-4d26-8277-5adc03733841", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -126903,7 +126903,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7e3f7b65-fec2-4a28-bb17-71e9d86d9512", + "id": "e95c73ab-f355-4bed-a64d-81a1fb360dce", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -126960,7 +126960,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": "39ef4174-016b-4ee0-a11f-d93c7450ff48", + "id": "158850e5-3c0d-4af3-8007-33177cf4b077", "name": "Create Segment", "request": { "name": "Create Segment", @@ -127002,7 +127002,7 @@ }, "response": [ { - "id": "d5174297-4653-4746-8201-24e029c6b5dc", + "id": "924f6969-4e65-4a6f-a124-ac139d40de1c", "name": "Segment created", "originalRequest": { "url": { @@ -127058,7 +127058,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8732694d-05ce-4ba1-aca6-965c3f4d7380", + "id": "2f254ee8-f338-4df2-9cb4-4f4c717b8856", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -127114,7 +127114,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e9851e54-db6d-4b49-9f13-c3c297890750", + "id": "ccaf1bf6-f3a5-45f0-959d-9ecfcc702c5a", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -127170,7 +127170,7 @@ "_postman_previewlanguage": "json" }, { - "id": "13287874-253f-4a86-8ab9-3b16ce1cee01", + "id": "11c158dd-289f-4ec8-94f2-ea07bb1efb82", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -127226,7 +127226,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5fa01ddb-fd59-49b3-b731-5caa25d9a3db", + "id": "027847c7-4ef3-401d-9b4c-dd294843b7c5", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -127282,7 +127282,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6861dbc2-fb26-417a-b706-8053d5294202", + "id": "d713fbc7-dac8-4c7e-9027-77d431fd61dd", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -127344,7 +127344,7 @@ } }, { - "id": "48e1a8f2-0c8c-4296-aaef-654a93a0f56a", + "id": "b8ec77d8-0e99-4309-bb7b-591872ab6346", "name": "List Segments", "request": { "name": "List Segments", @@ -127401,7 +127401,7 @@ }, "response": [ { - "id": "6c55a583-0500-41af-85df-f46f1cb088f8", + "id": "508a0077-cc18-453c-abde-dafd41af9047", "name": "List of all segments", "originalRequest": { "url": { @@ -127472,7 +127472,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ed9dc91e-3a7e-4be7-af31-7342c774dc29", + "id": "da88ff50-a3d9-4489-a3bc-c895f17f0c62", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -127543,7 +127543,7 @@ "_postman_previewlanguage": "json" }, { - "id": "330b1a68-3a8d-4489-b0f7-de4899bf0ca8", + "id": "1ad6ac91-f78c-4be7-9928-ad99bd3e18b5", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -127614,7 +127614,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8957fcec-7eac-49ea-90dd-3531a9d727ce", + "id": "4c2989af-2c64-4d3e-9385-dff9a00ffc92", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -127685,7 +127685,7 @@ "_postman_previewlanguage": "json" }, { - "id": "644327e8-27b3-44e1-97e8-217087810d48", + "id": "9b614c24-4b31-463f-8603-72f2cef1bb13", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -127756,7 +127756,7 @@ "_postman_previewlanguage": "json" }, { - "id": "871e41a8-6b81-4b10-bd3a-cb6c6e5d7495", + "id": "04594ba6-faed-4a48-bb03-19377a7e557b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -127833,7 +127833,7 @@ } }, { - "id": "a03db35a-79f8-4a12-9d41-c0da8dc715dc", + "id": "e9206cfe-40c1-4a0c-81a4-2163973afdce", "name": "Get Segment by ID", "request": { "name": "Get Segment by ID", @@ -127874,7 +127874,7 @@ }, "response": [ { - "id": "d2f1d881-953d-4033-a660-5e3c6ea8f97c", + "id": "dc8d94f7-24d6-47cb-a189-ba680d9d83c6", "name": "Segment", "originalRequest": { "url": { @@ -127918,7 +127918,7 @@ "_postman_previewlanguage": "json" }, { - "id": "029ae27e-2210-46e3-a523-5fa7d3202ba3", + "id": "5ad87179-63f7-40c2-91ab-f6f153ceeee3", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -127962,7 +127962,7 @@ "_postman_previewlanguage": "json" }, { - "id": "30ef13c8-5f18-47bb-a0b0-fe91fdd68fb4", + "id": "2f50df9c-32a1-459f-8545-6a2eca341752", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -128006,7 +128006,7 @@ "_postman_previewlanguage": "json" }, { - "id": "12175b71-f1f3-43f4-a536-ce8020a50234", + "id": "cde0841f-f1bd-4533-a00f-992ea73ce2ef", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -128050,7 +128050,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dc4fd322-b018-462b-9747-5643ef20297a", + "id": "7bf6fe5f-4fe9-41c4-b1b2-8523f3fe7f2b", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -128094,7 +128094,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b310cecd-db98-4e84-aae0-8d6de1578c6c", + "id": "e46b530f-195e-48c4-b17e-4ff7ccc057b7", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -128138,7 +128138,7 @@ "_postman_previewlanguage": "json" }, { - "id": "279734f8-0821-4b04-b9b8-b90cfac5492e", + "id": "c46934a7-6785-4ac7-bd85-d36760adbbf7", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -128188,7 +128188,7 @@ } }, { - "id": "e60a35f6-9333-4748-90e4-0db4981c75a5", + "id": "6e74d743-054b-4446-b9d0-249725d01033", "name": "Delete Segment by ID", "request": { "name": "Delete Segment by ID", @@ -128229,7 +128229,7 @@ }, "response": [ { - "id": "a528a6c2-a830-404b-8ac9-3425c565cc90", + "id": "f1f51e4a-20b1-4c47-a51b-4d4002b82a1f", "name": "No content.", "originalRequest": { "url": { @@ -128263,7 +128263,7 @@ "_postman_previewlanguage": "text" }, { - "id": "cfbd903b-27b8-4bf2-b855-5e9e290c859c", + "id": "c09cab4b-1783-4fe5-87f8-c4fbd626e98b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -128307,7 +128307,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6d967533-c56a-4480-ae3f-539a207687e6", + "id": "ed41f507-2c78-47b4-be89-c9e758a368df", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -128351,7 +128351,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1aef1e12-334e-40c3-81dc-83631c44b5a3", + "id": "6a3b76aa-b87b-4ca4-8079-86f71b80e68c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -128395,7 +128395,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8572a0b4-172c-4afe-b899-a4591c3a06a4", + "id": "a28deb1f-8d2b-42ba-9af7-9a105bf398f2", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -128439,7 +128439,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cf5653b1-723a-4d52-a748-c56e38fcd440", + "id": "4bfa3722-f10e-4d0d-aede-78f2c37034dc", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -128483,7 +128483,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cb74c321-2176-44a3-b54c-14f3f3f8db0f", + "id": "fff6e1e5-3e0e-4f73-873d-3e452e58a206", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -128533,7 +128533,7 @@ } }, { - "id": "66cb874c-bb7d-45ae-ba24-dd334acd0bc4", + "id": "5480b866-550f-4860-8576-36200480c4c0", "name": "Update Segment", "request": { "name": "Update Segment", @@ -128587,7 +128587,7 @@ }, "response": [ { - "id": "2f99cf0e-d4b7-4965-8b49-a1c064ced16e", + "id": "b0a5b36b-d978-48b1-9ebd-18cdf42606db", "name": "Indicates the PATCH operation succeeded, and returns the segment's new representation.", "originalRequest": { "url": { @@ -128644,7 +128644,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ae9db449-91c9-4cf1-b0f6-957b489eab44", + "id": "317fddcd-999b-481c-9ef3-9607bcb4e03f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -128701,7 +128701,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f173d0ba-1a0a-44f3-951d-20f30a01333c", + "id": "ebaaa28c-0eb8-450e-9f5a-3b3952b8be3e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -128758,7 +128758,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3ca050af-f411-464b-a98e-7a4bbd8c1cd7", + "id": "918e5a2b-62fd-48e1-9028-646f637a3f05", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -128815,7 +128815,7 @@ "_postman_previewlanguage": "json" }, { - "id": "23bde6b9-638b-4586-b8cf-f7704ea664f9", + "id": "c625a747-8457-47cc-b854-a5f2f7274fd2", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -128872,7 +128872,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5b2784cc-d2c4-4690-a905-2c528800c7a1", + "id": "f717a70b-344f-4f3d-a327-db615aa3c167", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -128929,7 +128929,7 @@ "_postman_previewlanguage": "json" }, { - "id": "809357b7-2cb8-4d45-a7de-07ff61df52bc", + "id": "52614fac-333a-4027-aa60-9469a8b07c93", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -128998,7 +128998,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": "b60194fb-66bd-4b99-9ea7-fba73b18be8e", + "id": "8868db2d-36ea-4e53-9e9d-7e1a9f1b68d2", "name": "List existing Service Desk Integrations", "request": { "name": "List existing Service Desk Integrations", @@ -129073,7 +129073,7 @@ }, "response": [ { - "id": "0a5679fc-35ab-4bfa-abbe-eae2a60d18d6", + "id": "331f74db-ba12-42e1-8bf5-3b288d273c1d", "name": "List of ServiceDeskIntegrationDto", "originalRequest": { "url": { @@ -129162,7 +129162,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f5a6812a-8a57-4d32-bd15-620369f1de48", + "id": "d91d725b-2222-4e73-9521-ccba0c99d5f9", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -129251,7 +129251,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3235f3a4-15fb-4373-971b-a6dbf4724643", + "id": "22dc0fdc-21b7-49c0-85ab-c13e06dc62ed", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -129340,7 +129340,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8077872a-6790-465d-a64f-64db67ac0a0a", + "id": "05b1a8ad-0983-4c44-a448-d604ad1cd97e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -129429,7 +129429,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8593b6e3-efb5-466c-a526-be2ee1a01ae9", + "id": "3c1fa671-fb87-4925-b99b-f5783f00dabe", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -129518,7 +129518,7 @@ "_postman_previewlanguage": "json" }, { - "id": "014faf0c-230a-4eae-888f-76d2edc38620", + "id": "f7e4c5f9-b04b-473b-9e2f-987a80828d69", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -129607,7 +129607,7 @@ "_postman_previewlanguage": "json" }, { - "id": "20c9e8ca-70c5-44d8-8509-6dab5228439d", + "id": "7cb5f39f-6f57-4538-bee2-b82dd3b6cd97", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -129702,7 +129702,7 @@ } }, { - "id": "b468f669-2a61-434b-bea0-a8163529d710", + "id": "291a85c4-74e1-4047-88ca-e78e28f76593", "name": "Create new Service Desk integration", "request": { "name": "Create new Service Desk integration", @@ -129744,7 +129744,7 @@ }, "response": [ { - "id": "2b05dac5-e721-4d50-863b-02147b2bd1fd", + "id": "a14491b6-ab96-4d46-b235-ddd1ce493b45", "name": "details of the created integration", "originalRequest": { "url": { @@ -129800,7 +129800,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2faef46c-657b-4d51-b2c1-e272ad421a49", + "id": "ad54433f-78b3-4157-814c-e938e6a73a6e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -129856,7 +129856,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5e74de14-cfcd-42e1-94ce-9f8c083f6c58", + "id": "48ecf7a4-2acd-4451-b2c4-481339f8efad", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -129912,7 +129912,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d0630ab8-182f-41c0-9616-6a12f58d9bb7", + "id": "8cebce90-a82f-4fde-b73d-570446d9c4d3", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -129968,7 +129968,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b81f66fc-2dc6-40ee-b439-97d11ed4af4c", + "id": "8e6dffce-7c27-4f8a-a674-6d36e2c8267d", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -130024,7 +130024,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8f64a5bf-8747-46ff-8023-b3ad98ef7af3", + "id": "687725a7-5644-4b8a-8723-1f0406317793", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -130080,7 +130080,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3f704a7b-8cc4-49ec-b04b-b99003a9572b", + "id": "724a9635-00f8-4285-8162-0d16ca27105d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -130142,7 +130142,7 @@ } }, { - "id": "0191ac4b-2b1a-4a72-b8a2-8b049aed4ebd", + "id": "6a2d3598-5c33-4723-8c5d-4aa871fb960c", "name": "Get a Service Desk integration", "request": { "name": "Get a Service Desk integration", @@ -130183,7 +130183,7 @@ }, "response": [ { - "id": "fc3dfeda-94a7-416e-83c1-64f3897dcf08", + "id": "761d52cf-12c9-4c1a-96de-87e4886d6aa4", "name": "ServiceDeskIntegrationDto with the given ID", "originalRequest": { "url": { @@ -130227,7 +130227,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9d9e53be-7727-4f23-a264-46091cf82932", + "id": "28948055-a651-4120-abf3-f48bbb0bcb50", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -130271,7 +130271,7 @@ "_postman_previewlanguage": "json" }, { - "id": "613d47c3-b56d-4e79-be0b-2e14d8cfa2df", + "id": "d28caf55-baee-4627-a654-e487f2901aac", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -130315,7 +130315,7 @@ "_postman_previewlanguage": "json" }, { - "id": "86858559-d162-471c-9c4f-422929a5cef7", + "id": "9269e7af-dc40-41d0-8a51-a9acba93d4fd", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -130359,7 +130359,7 @@ "_postman_previewlanguage": "json" }, { - "id": "361de238-fc38-409a-a6ba-e57519556343", + "id": "75a68502-f559-4204-90e8-ec3b5b68d7fd", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -130403,7 +130403,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fb6eaff9-e80f-4817-b63b-8f1ccbf1e5d4", + "id": "b04b74da-b087-460f-9417-283003e00407", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -130447,7 +130447,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3056009e-addc-4d58-b630-b7658205ff63", + "id": "d5bd93da-e5ce-4c05-bd8b-c50d9a57c790", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -130497,7 +130497,7 @@ } }, { - "id": "c2943ef2-fc6e-4e72-b3a7-1d5c2ace78a1", + "id": "ae02afe8-4180-4586-b93b-9f5a59d314ff", "name": "Update a Service Desk integration", "request": { "name": "Update a Service Desk integration", @@ -130551,7 +130551,7 @@ }, "response": [ { - "id": "a5d8f099-9669-45a2-82f7-7009aa94f05c", + "id": "af4d3e74-d785-42b7-913f-c0832e8f95bb", "name": "ServiceDeskIntegrationDto as updated", "originalRequest": { "url": { @@ -130608,7 +130608,7 @@ "_postman_previewlanguage": "json" }, { - "id": "79d0fa1f-e3a4-403b-b779-966d99f5e668", + "id": "979f2256-fb52-47e8-833d-42b8be684fa3", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -130665,7 +130665,7 @@ "_postman_previewlanguage": "json" }, { - "id": "af2b821b-a830-42a9-83c1-6927c4fce469", + "id": "6b6612ef-9db6-4f1c-82cc-8f251786929c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -130722,7 +130722,7 @@ "_postman_previewlanguage": "json" }, { - "id": "87ea0354-aa34-4123-b7ad-2b677e782cee", + "id": "c38751a5-65ac-4e48-a390-6b0794d9f039", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -130779,7 +130779,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e64f7dc4-d4b3-45a1-b8b6-36f18d8acf09", + "id": "87d6e3cd-9c19-4cde-9c67-8c977f66887a", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -130836,7 +130836,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dfd77f66-8c23-4efb-a29e-a463ddb7fac9", + "id": "31db82a7-cdd2-4390-8358-888a1b06c54f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -130893,7 +130893,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a103dfce-e310-4adb-a2b7-015e18d6c53e", + "id": "ef4e5349-fa85-4209-8f68-89a87d01655e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -130956,7 +130956,7 @@ } }, { - "id": "05cc6f66-f37a-4bbe-a548-5c7abe53f3d3", + "id": "5513e5d8-2cd1-4326-a682-c2b85dfffd69", "name": "Delete a Service Desk integration", "request": { "name": "Delete a Service Desk integration", @@ -130997,7 +130997,7 @@ }, "response": [ { - "id": "cd461927-3dea-490e-be79-9d18c3860972", + "id": "a4e248c5-6ef4-433f-856d-94be157fc1f8", "name": "Service Desk integration with the given ID successfully deleted", "originalRequest": { "url": { @@ -131031,7 +131031,7 @@ "_postman_previewlanguage": "text" }, { - "id": "a1ff5d0b-8b75-4071-8dc3-945c1eea990f", + "id": "fcefe7b7-508d-461f-9cfa-d04d0c5f41cb", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -131075,7 +131075,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e6ca6188-a6fd-45ba-a584-0cc3d1d3336f", + "id": "c7d6cb70-f8e1-4cfe-adb0-376c352ce64c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -131119,7 +131119,7 @@ "_postman_previewlanguage": "json" }, { - "id": "df3716a1-fbc5-4bc4-a5c8-8143bb28f422", + "id": "0b1643af-4fbb-4ae0-854d-ed3147813d8d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -131163,7 +131163,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7ab99191-bcdb-4dd0-838b-cee069417bf8", + "id": "bb98d161-6e86-4197-8760-27962a2fc4bc", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -131207,7 +131207,7 @@ "_postman_previewlanguage": "json" }, { - "id": "da07026f-2808-4a9b-87a7-807d6ed7d852", + "id": "b1cf10d7-e7ed-41e7-99ae-e6a3ec2e66c2", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -131251,7 +131251,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3ec284f1-c294-4db9-8411-2d33afc8e04e", + "id": "ab79fabc-2303-443e-bb7a-555a18d2db89", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -131301,7 +131301,7 @@ } }, { - "id": "c286e6cb-db9e-4597-b875-73311e08bba1", + "id": "d54b6863-b520-4f79-9a67-a482f5513941", "name": "Service Desk Integration Update PATCH", "request": { "name": "Service Desk Integration Update PATCH", @@ -131355,7 +131355,7 @@ }, "response": [ { - "id": "3d8c7cba-c22b-4638-a50d-9cd92872684e", + "id": "5e5bcecd-dc9b-474f-93f8-3d07fc604d60", "name": "ServiceDeskIntegrationDto as updated", "originalRequest": { "url": { @@ -131412,7 +131412,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e4316911-5b51-4244-b335-8d1e222bc49c", + "id": "a6367d6c-b8f4-4eca-b8cb-4140fdb078f7", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -131469,7 +131469,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7eceb718-cfd9-4481-a473-f3d60f2c44a1", + "id": "6c2f25b6-843c-4699-8995-a62d6b31d329", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -131526,7 +131526,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c305489b-11c1-4238-a6ef-3ec6b30fd6d3", + "id": "f819e65a-eaff-4832-a52e-b8ef818f41d2", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -131583,7 +131583,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1f0a10f0-d5c6-44ad-86aa-8fc93429bb90", + "id": "64d70d61-997e-433e-ad84-2f0c8c759605", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -131640,7 +131640,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d90020b3-0a87-47a9-8c42-43df56f0a38d", + "id": "86d45392-1b75-43b0-bef9-425978766085", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -131697,7 +131697,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bfcd1525-c208-4911-88dd-22b857f6218f", + "id": "099572a4-25b1-4868-9986-5d8a476106a9", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -131760,7 +131760,7 @@ } }, { - "id": "a9ecc7f3-c681-4afa-a0c1-5db3d4af7594", + "id": "e28b0d7e-f74d-45ec-876a-547a493685e7", "name": "Service Desk Integration Types List.", "request": { "name": "Service Desk Integration Types List.", @@ -131790,7 +131790,7 @@ }, "response": [ { - "id": "1f8a4b8d-9b13-44be-a67d-668abc22acfc", + "id": "bf3e2760-13c9-4ffe-a13b-649034411e83", "name": "Responds with an array of the currently supported Service Desk integration types.", "originalRequest": { "url": { @@ -131834,7 +131834,7 @@ "_postman_previewlanguage": "json" }, { - "id": "47d90b23-4120-4252-bfd2-4db1c9c474c5", + "id": "9f63cd67-7416-4a4f-91bf-e75a02df3c56", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -131878,7 +131878,7 @@ "_postman_previewlanguage": "json" }, { - "id": "26cdb897-92fc-43cd-b3a6-d36795318f43", + "id": "38fdb7ae-056b-429c-a74b-9d71fc0f0a97", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -131922,7 +131922,7 @@ "_postman_previewlanguage": "json" }, { - "id": "812b1dae-2d4a-4869-bd79-df8af20d8f78", + "id": "e5bda929-e954-41d3-8c73-448070c71b83", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -131966,7 +131966,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6edf0543-ecb5-476e-97a4-9ddacee8d87f", + "id": "28fd1c6b-2ae7-4482-bd3d-66b6e0152815", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -132010,7 +132010,7 @@ "_postman_previewlanguage": "json" }, { - "id": "48e15493-b752-4a93-9755-3a62ceb5a8e9", + "id": "383e6e4e-208c-4c4d-81fd-65767078673b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -132054,7 +132054,7 @@ "_postman_previewlanguage": "json" }, { - "id": "37b135e9-d3b4-45b5-a8d5-2f5988693ba5", + "id": "114cde8b-70d5-40bf-932a-0c3048882102", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -132104,7 +132104,7 @@ } }, { - "id": "fc31c4d3-0783-4299-a219-37043f182df8", + "id": "baa84018-8640-45da-9931-85c67249e6b5", "name": "Service Desk integration template by scriptName.", "request": { "name": "Service Desk integration template by scriptName.", @@ -132146,7 +132146,7 @@ }, "response": [ { - "id": "fee647a0-c65f-4018-9c64-a23038cb2f74", + "id": "5bd2bf14-0894-4ca9-99f2-f9767d9c7603", "name": "Responds with the ServiceDeskIntegrationTemplateDto with the specified scriptName.", "originalRequest": { "url": { @@ -132191,7 +132191,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2a8148bf-9b5e-4da5-bf4d-378a2b9b5b75", + "id": "0a65abb0-58e8-4ef4-a799-a36e80cb5316", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -132236,7 +132236,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e80a9708-e420-4755-a51e-6c7bc486dbf0", + "id": "08f18ea0-1c76-4560-9e77-556ad4ac013c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -132281,7 +132281,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b227d6a1-0f4d-4839-b2c2-435a2be895a8", + "id": "78cc44e6-233e-41f4-ba1d-f75367671450", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -132326,7 +132326,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2266ad1c-c110-42dc-acc9-efcd104a039b", + "id": "4677a003-4638-46cd-808b-5fdf3ce5d9b3", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -132371,7 +132371,7 @@ "_postman_previewlanguage": "json" }, { - "id": "efb80e19-ed0c-4ae1-a9df-e98b4c2d3063", + "id": "dcf082c7-8828-4114-9ef8-d496319653b2", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -132416,7 +132416,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cf28152d-0e53-4763-acf3-9561f9ce31e2", + "id": "0d1e7b60-0ab8-4667-9e09-d4454c6cb1b3", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -132467,7 +132467,7 @@ } }, { - "id": "f2e68d35-53e5-41d1-846a-38bbf4035d27", + "id": "5154b4b8-479f-46ff-8837-c4d1625735ed", "name": "Get the time check configuration", "request": { "name": "Get the time check configuration", @@ -132497,7 +132497,7 @@ }, "response": [ { - "id": "987834af-1081-49da-943c-12124abd6df3", + "id": "feeb3b5c-0089-4fc8-8f0e-9cf9e09d48b0", "name": "QueuedCheckConfigDetails containing the configured values", "originalRequest": { "url": { @@ -132541,7 +132541,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c430c4fc-9698-47f2-aa95-c7aef559dc57", + "id": "8f8d1d6f-6aa7-4b60-9d0f-f791355b0dc5", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -132585,7 +132585,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a960aba4-54ff-4d25-9074-735a9576ded2", + "id": "6c6ec0e8-a392-48c1-b9f2-5d22ee4a9d68", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -132629,7 +132629,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a54b8d31-f87b-42c6-ba4b-5695c09655b2", + "id": "cb3656c1-319f-4313-8456-b9011298e995", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -132673,7 +132673,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c4b55b9e-64f3-440d-9dfe-0f4ed20bf0e5", + "id": "ce24135f-7668-44b7-93fd-35f7f2cc5aa3", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -132717,7 +132717,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cd7a037b-6e02-45c4-8693-276aed119a6d", + "id": "cacf1bc5-f649-4a3c-902b-50da492726e6", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -132761,7 +132761,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f4616dee-b99e-4db7-ba77-67922586cb25", + "id": "a8f71973-d68e-4abe-9471-76d7d5f0e33b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -132811,7 +132811,7 @@ } }, { - "id": "e661e910-15f5-4ea5-abf8-5bce190cc9e9", + "id": "62a5f130-c262-4b9f-9de0-57ea1d894fb1", "name": "Update the time check configuration", "request": { "name": "Update the time check configuration", @@ -132854,7 +132854,7 @@ }, "response": [ { - "id": "1d8652c6-4341-4521-b11b-08293f61e7a8", + "id": "79c53e9e-f9f2-449d-8e0b-6179ddc85804", "name": "QueuedCheckConfigDetails as updated", "originalRequest": { "url": { @@ -132911,7 +132911,7 @@ "_postman_previewlanguage": "json" }, { - "id": "099f242f-e17f-43d3-94d2-73c131ffde7e", + "id": "78bd6e82-30e7-43fe-81c3-9b51f9fc68f4", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -132968,7 +132968,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1999b572-27db-403d-be9b-05ac335985b8", + "id": "cb66639b-c901-457a-8422-c56b2b2ddce3", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -133025,7 +133025,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9f1f866f-fb9f-456a-b3d0-004b35341773", + "id": "397924a8-d3c1-4dbe-a041-8bb2fe1d73b0", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -133082,7 +133082,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a2202e89-1ac6-4c4c-9f5c-517929922d43", + "id": "e2c296c7-e14b-4529-8e86-93607c548dd0", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -133139,7 +133139,7 @@ "_postman_previewlanguage": "json" }, { - "id": "325cdf24-91bf-40b6-9eeb-96e3ea1a3b45", + "id": "962eae45-4555-4ca1-a0f8-370c3c9aacbc", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -133196,7 +133196,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3e09099e-b321-4e53-bb4a-b1467fcbca66", + "id": "318e7969-73c7-4b08-807d-57621e745eb0", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -133265,7 +133265,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": "327086db-9063-416d-9efe-a00a0b5ea2cb", + "id": "e3dbc32d-264e-4d05-9ac8-00e5a4c84a6e", "name": "Create SOD policy", "request": { "name": "Create SOD policy", @@ -133307,7 +133307,7 @@ }, "response": [ { - "id": "d848d3bb-0bc4-4302-b87e-f488c3d42936", + "id": "91064c04-a930-4f4e-a2ab-fc91a76dcbb8", "name": "Conflicting Access Based Policy", "originalRequest": { "url": { @@ -133363,7 +133363,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4de51962-f9fa-48a1-91ec-ced4322ecebd", + "id": "24357b75-0951-4b7a-abb3-66112a19611b", "name": "General Policy", "originalRequest": { "url": { @@ -133419,7 +133419,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a68f122d-91c6-4581-b158-5aaa4d8ed020", + "id": "e931b421-da23-43ed-96a2-5e39d90e83e5", "name": "Conflicting Access Based Policy", "originalRequest": { "url": { @@ -133475,7 +133475,7 @@ "_postman_previewlanguage": "json" }, { - "id": "984b4008-c0ca-44fe-a2ab-db2e9e21bc78", + "id": "64202cc4-75a0-4cd9-a53a-45cd1bc5970a", "name": "General Policy", "originalRequest": { "url": { @@ -133531,7 +133531,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0cdf9545-bb7d-4098-8253-e05eb6505235", + "id": "a338497b-0f92-4156-ad9a-afe86c1f1f5f", "name": "Conflicting Access Based Policy", "originalRequest": { "url": { @@ -133587,7 +133587,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d0f12c72-a725-4ec6-a53c-f54b69adcef4", + "id": "d5a94b25-1dd4-40b9-8aa0-fb1502ef4d8c", "name": "General Policy", "originalRequest": { "url": { @@ -133643,7 +133643,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f626a708-2716-411b-8746-af47fdaf56f9", + "id": "8ba9c02b-f1bb-4c92-8cae-6cc2fef67ffb", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -133699,7 +133699,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c9ca1d91-3e18-4276-9672-4819fa09f53d", + "id": "7d9655bc-a2b1-432b-a636-9f65a43aec74", "name": "General Policy", "originalRequest": { "url": { @@ -133755,7 +133755,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1047f38c-2260-4c5c-905e-04aa197a6228", + "id": "de7ce01a-968c-4cc6-a811-35a5f36f909a", "name": "Conflicting Access Based Policy", "originalRequest": { "url": { @@ -133811,7 +133811,7 @@ "_postman_previewlanguage": "json" }, { - "id": "edd50ba0-5ddc-45ab-8847-e0b2ae42131a", + "id": "205a22b6-c021-44a2-8327-0526c40d9589", "name": "General Policy", "originalRequest": { "url": { @@ -133867,7 +133867,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0ee22303-7c72-4be9-9959-76d7a194a0d2", + "id": "013c3d6b-2ea4-46c9-8398-2b7f41c55cfd", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -133923,7 +133923,7 @@ "_postman_previewlanguage": "json" }, { - "id": "affa6fbb-d671-4a83-971d-2d3f9944a151", + "id": "f5e525c9-a44c-4adb-ae1d-01fe08ddba31", "name": "General Policy", "originalRequest": { "url": { @@ -133985,7 +133985,7 @@ } }, { - "id": "143d5d4d-3f76-4009-9e11-831222759ebf", + "id": "5991dfb4-4294-485f-bc88-af150f7f8fda", "name": "List SOD policies", "request": { "name": "List SOD policies", @@ -134060,7 +134060,7 @@ }, "response": [ { - "id": "f6525ff3-d3c9-40c6-b42e-12d090e37548", + "id": "a626684d-02f9-4b4b-a669-abd64437a7c9", "name": "List of all SOD policies.", "originalRequest": { "url": { @@ -134149,7 +134149,7 @@ "_postman_previewlanguage": "json" }, { - "id": "85441753-99e4-49b7-87cb-2ecde2df1605", + "id": "7597b8d3-0a36-477c-bee9-2f8a030941f6", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -134238,7 +134238,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7d8a4d2c-d756-4fbf-817c-76f836402bc1", + "id": "f471848a-d70f-4410-bd25-bec781f04da1", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -134327,7 +134327,7 @@ "_postman_previewlanguage": "json" }, { - "id": "63f1064c-a565-4f02-9d95-088b26ca2298", + "id": "ae9f04cb-4840-4b49-a37a-c4cac5a66243", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -134416,7 +134416,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bbc01425-56ca-4ed1-8e63-171a60a102eb", + "id": "cde2ade4-a2c3-4476-94bf-ac1c7a037d48", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -134505,7 +134505,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3ac2708e-d3e9-468f-bdd0-e310cf81a2b1", + "id": "f86f00f9-e979-4531-b674-b7b080c1559a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -134600,7 +134600,7 @@ } }, { - "id": "4895c9b4-ab8f-46c3-9a71-9c8ee71dd3d4", + "id": "287e1b4a-39eb-4fff-80a8-1a3a94a59d18", "name": "Get SOD policy by ID", "request": { "name": "Get SOD policy by ID", @@ -134641,7 +134641,7 @@ }, "response": [ { - "id": "a83fbe5f-bc36-47eb-8807-6e4ee7a0cdd9", + "id": "5c3254a3-015d-424b-aa76-824c7a21c9fb", "name": "Conflicting Access Based Policy", "originalRequest": { "url": { @@ -134685,7 +134685,7 @@ "_postman_previewlanguage": "json" }, { - "id": "da6adfa5-41de-4f78-9e13-0c38da9764e1", + "id": "40bf6c20-a5f3-4713-95ed-39746268b4f2", "name": "General Policy", "originalRequest": { "url": { @@ -134729,7 +134729,7 @@ "_postman_previewlanguage": "json" }, { - "id": "46b2b4d6-357a-4d50-8b84-dd40ec472f2c", + "id": "fcde348f-f729-4cbf-8c56-11b1c8552c3c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -134773,7 +134773,7 @@ "_postman_previewlanguage": "json" }, { - "id": "477c2a70-31c3-4c85-9e2c-93a651beaa75", + "id": "fa585ab8-cece-48fe-bae1-f3818a50f7f5", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -134817,7 +134817,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7450099a-2282-4234-981e-1791ad40b8fa", + "id": "4cad3094-63e3-49ae-a4a5-fb766b64a314", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -134861,7 +134861,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b58f389f-b6a1-43d4-8570-bff4a2158edc", + "id": "3643f224-a509-4bcf-bc0e-f8641117a798", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -134905,7 +134905,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2c51ae60-8665-4036-b15d-185e512474a7", + "id": "2b3e23f3-8343-449d-a3cb-822bb1776049", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -134949,7 +134949,7 @@ "_postman_previewlanguage": "json" }, { - "id": "50861bdf-8f80-4269-ae9c-95e90bb253a0", + "id": "1a9cdf0a-a8bc-4771-a3b7-437c78f3eae9", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -134999,7 +134999,7 @@ } }, { - "id": "99dc7b56-59ca-4ae9-abf0-7fe837235c21", + "id": "0f6c58c3-7ad9-4444-8a3b-ae4bf307415f", "name": "Update SOD policy by ID", "request": { "name": "Update SOD policy by ID", @@ -135053,7 +135053,7 @@ }, "response": [ { - "id": "8dde8008-cb8d-4ca1-9462-46b94f9a9218", + "id": "a7eb962d-4366-406f-8101-f3df6b242b01", "name": "Conflicting Access Based Policy", "originalRequest": { "url": { @@ -135110,7 +135110,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fe0e2fd0-bdc4-46b4-8805-9d28c96c9400", + "id": "ad0543b4-5825-4161-b4f6-967a166431fa", "name": "General Policy", "originalRequest": { "url": { @@ -135167,7 +135167,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1d8273ed-eb06-44ac-a838-ab1a7c72fe35", + "id": "a577eb13-ecaa-46dd-bfa7-4346b26fbe03", "name": "Conflicting Access Based Policy", "originalRequest": { "url": { @@ -135224,7 +135224,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eb276c3a-99d0-45db-90dc-ee84a64f3430", + "id": "2de22214-9282-475d-8134-de1a4c5fe2e1", "name": "General Policy", "originalRequest": { "url": { @@ -135281,7 +135281,7 @@ "_postman_previewlanguage": "json" }, { - "id": "59b75d4a-a685-499e-a898-13dc043ba29c", + "id": "05879184-107f-49d9-851a-536d6c394f45", "name": "Conflicting Access Based Policy", "originalRequest": { "url": { @@ -135338,7 +135338,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4dd1ea4c-203f-4ba0-b659-0de7b5633a52", + "id": "4033cd52-d852-459a-bcb9-181d63dd36be", "name": "General Policy", "originalRequest": { "url": { @@ -135395,7 +135395,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e4824192-627b-480d-8bfa-f9313396dc27", + "id": "9ede0ee6-ca67-4ad8-9d60-027fb7bbc5a4", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -135452,7 +135452,7 @@ "_postman_previewlanguage": "json" }, { - "id": "05671274-5107-4f77-8748-45fee7f756d1", + "id": "2125c27f-ed66-4c29-a632-846c71008dea", "name": "General Policy", "originalRequest": { "url": { @@ -135509,7 +135509,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a95a8c6d-8c29-4cf9-a1c0-29d9ce50827d", + "id": "0de66426-1159-40a1-8f9e-88b26b1287f9", "name": "An example of a 404 response object", "originalRequest": { "url": { @@ -135566,7 +135566,7 @@ "_postman_previewlanguage": "json" }, { - "id": "108f4f02-52fd-43e7-adc9-507ad1f48c90", + "id": "63aecea5-bd93-477d-ab12-420df5db9d66", "name": "General Policy", "originalRequest": { "url": { @@ -135623,7 +135623,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eec5573c-21e2-4000-846e-bf29dd2fad28", + "id": "c86bb503-15f6-4a00-b545-c77cb2d480f4", "name": "Conflicting Access Based Policy", "originalRequest": { "url": { @@ -135680,7 +135680,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3bee825f-5ea5-48d4-829e-92224591d154", + "id": "871173e2-61b8-4331-a78e-940d54332dc3", "name": "General Policy", "originalRequest": { "url": { @@ -135737,7 +135737,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c161bfbd-c156-4414-b8b1-813732e2dde2", + "id": "f1f3c0be-daf9-4b8a-ad4a-a9f572596d27", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -135794,7 +135794,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cdbda3fe-7aea-465a-babe-a63bcfc1508d", + "id": "8b3c7c05-634c-4cd0-a671-f92da992369f", "name": "General Policy", "originalRequest": { "url": { @@ -135857,7 +135857,7 @@ } }, { - "id": "ce7fcc6d-0f71-45de-808e-c15d7bc6ef3b", + "id": "32dbfff2-9cf5-41e4-bdcf-6aab3ddf3f02", "name": "Delete SOD policy by ID", "request": { "name": "Delete SOD policy by ID", @@ -135908,7 +135908,7 @@ }, "response": [ { - "id": "092469af-9ae1-4e8e-9365-3e006bee918c", + "id": "694fbfcb-7da2-4c53-9f55-3a23a65d86a3", "name": "No content.", "originalRequest": { "url": { @@ -135952,7 +135952,7 @@ "_postman_previewlanguage": "text" }, { - "id": "d864738e-1ae8-4f42-a251-22d6039c03a5", + "id": "a7b91077-1794-48f9-85ac-1d8c93068d57", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -136006,7 +136006,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8a37a89e-8226-42c1-9469-3902f1ccbfbd", + "id": "b7ac9e70-e2b7-4dc2-a388-0612cff6e209", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -136060,7 +136060,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d9be348a-b42c-42e7-aed4-12083bd37f6c", + "id": "a307eb14-d05e-40d3-8c98-d4e76186c565", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -136114,7 +136114,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1516419d-bda7-4105-ae59-a8d5d5fbdee5", + "id": "56e437ca-117c-49e8-af6f-46ae9e0f2ce6", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -136168,7 +136168,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3991e298-8458-4b82-b974-a28386e81879", + "id": "e48cffed-701a-45c3-b14e-0b1594323b40", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -136222,7 +136222,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1e296fb7-9d28-4bbe-8d83-5a7def49e33b", + "id": "923ef7a7-151c-470f-aeba-57723c01ca7d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -136282,7 +136282,7 @@ } }, { - "id": "6591f3a3-07d8-4989-8e36-f0eeab7df951", + "id": "cbb6d1b4-dfee-41d8-bf9a-60ef2c6bdfc4", "name": "Patch SOD policy by ID", "request": { "name": "Patch SOD policy by ID", @@ -136336,7 +136336,7 @@ }, "response": [ { - "id": "9bba341b-23ac-45a9-a368-7bbe28f5701e", + "id": "9c0b3157-182a-45d0-bf57-ced1222b7614", "name": "Conflicting Access Based Policy", "originalRequest": { "url": { @@ -136393,7 +136393,7 @@ "_postman_previewlanguage": "json" }, { - "id": "89405692-edf2-4b81-9a3b-771a5c443731", + "id": "ccf6327e-6b9f-40bb-9635-24c2eb57a698", "name": "General Policy", "originalRequest": { "url": { @@ -136450,7 +136450,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1732d9f2-e767-4179-bc3a-eaef47b36719", + "id": "8327884a-22d3-44c7-9843-c19a4625d030", "name": "Conflicting Access Based Policy", "originalRequest": { "url": { @@ -136507,7 +136507,7 @@ "_postman_previewlanguage": "json" }, { - "id": "41e00225-2285-4cd9-9b9c-e72b41897740", + "id": "e93af9aa-0e83-4dd6-9241-682045effd45", "name": "General Policy", "originalRequest": { "url": { @@ -136564,7 +136564,7 @@ "_postman_previewlanguage": "json" }, { - "id": "35eeec3f-321a-473b-9eb9-b5a3bd3d512f", + "id": "7f848b64-0e4c-4209-80e6-916cb7329e8b", "name": "Conflicting Access Based Policy", "originalRequest": { "url": { @@ -136621,7 +136621,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c745c5eb-5575-4385-b040-ffc73a4e9f6c", + "id": "de09a186-8150-4b12-8690-5bcb7e79f82f", "name": "General Policy", "originalRequest": { "url": { @@ -136678,7 +136678,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3fb9e79d-3fcc-4708-a744-a81d1f82b9cd", + "id": "5dc2f2c7-4cbd-4acc-a6c6-e2452778b361", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -136735,7 +136735,7 @@ "_postman_previewlanguage": "json" }, { - "id": "29b9986c-340c-4425-bfdc-ee13f45ba929", + "id": "479a3eea-2a35-4165-9166-a1468a820309", "name": "General Policy", "originalRequest": { "url": { @@ -136792,7 +136792,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c9e24a7c-e578-47b0-80e6-b8db63ab5ec8", + "id": "9d12d8c8-5818-485c-ad39-323dce59a45e", "name": "An example of a 404 response object", "originalRequest": { "url": { @@ -136849,7 +136849,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5311a408-c251-4dd0-88dd-fd2b47b32a1e", + "id": "f5385d89-45e7-43e0-ad09-9827d97f4c10", "name": "General Policy", "originalRequest": { "url": { @@ -136906,7 +136906,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1317b66b-35f3-4a2c-bcad-5ff5cdb863dc", + "id": "1f1dd79d-ca05-4630-8ca7-fc062a259936", "name": "Conflicting Access Based Policy", "originalRequest": { "url": { @@ -136963,7 +136963,7 @@ "_postman_previewlanguage": "json" }, { - "id": "40d025fc-07ce-4926-8f04-0baa4150df4c", + "id": "20d9d56b-6eba-477d-a9f4-c3d65e6b9cdf", "name": "General Policy", "originalRequest": { "url": { @@ -137020,7 +137020,7 @@ "_postman_previewlanguage": "json" }, { - "id": "15c682c7-a8fd-4f2b-91b2-0a533b786916", + "id": "c04c7643-9e10-4efe-8575-8202b4392fa5", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -137077,7 +137077,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fee2c948-b789-4490-ae3c-fbc32f20922c", + "id": "2e6db92b-a447-4810-8fc1-06cb56080694", "name": "General Policy", "originalRequest": { "url": { @@ -137140,7 +137140,7 @@ } }, { - "id": "84ae69e6-3140-4141-a15e-aedbb9aed34d", + "id": "bcaea740-e51f-4b8b-ac13-2b11b368aa66", "name": "Evaluate one policy by ID", "request": { "name": "Evaluate one policy by ID", @@ -137182,7 +137182,7 @@ }, "response": [ { - "id": "b7688812-dd4d-44ad-a5e4-e274c54a20cc", + "id": "72103b6c-4527-427b-9833-922f9fec04f6", "name": "Reference to the violation report run task.", "originalRequest": { "url": { @@ -137227,7 +137227,7 @@ "_postman_previewlanguage": "json" }, { - "id": "66cb68ef-faf4-4279-bf5d-4b60ae13f803", + "id": "05f0fc30-d554-475c-bc8a-e61eee0408af", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -137272,7 +137272,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0b536c3b-4dd6-49c5-bae5-7da39f4584d1", + "id": "4bb3eb23-c6cf-4523-aee0-db1c21c17cce", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -137317,7 +137317,7 @@ "_postman_previewlanguage": "json" }, { - "id": "78fb7c74-fc16-4a42-812d-f418ab2b4b11", + "id": "ff76ab85-af57-47a4-b213-ca4b8658eac3", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -137362,7 +137362,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7425f45d-ce52-42fa-b0cc-dc93d26cb12c", + "id": "7a675c72-8289-4356-bed8-61fd703481a2", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -137407,7 +137407,7 @@ "_postman_previewlanguage": "json" }, { - "id": "893b4fd8-7013-4c3c-a308-3cc44f8300d5", + "id": "7ba49270-d69c-4aea-bb8d-65f32e903df4", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -137458,7 +137458,7 @@ } }, { - "id": "1013e7c8-e58c-489c-b370-ca4bb1391539", + "id": "e9edf4b1-dfc8-4b86-acca-764e70c935a5", "name": "Get SOD policy schedule", "request": { "name": "Get SOD policy schedule", @@ -137500,7 +137500,7 @@ }, "response": [ { - "id": "3a5dc79c-7ddf-4b5a-9001-22f783053d96", + "id": "d7cc130e-c1a8-401b-97af-5eeb18a5a05e", "name": "SOD policy schedule.", "originalRequest": { "url": { @@ -137545,7 +137545,7 @@ "_postman_previewlanguage": "json" }, { - "id": "de1460b0-a53d-4dd8-a31b-d641a3999741", + "id": "83efa5c4-4673-49a8-98bf-df62183e5d39", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -137590,7 +137590,7 @@ "_postman_previewlanguage": "json" }, { - "id": "10f59b25-4c03-4f86-8c60-7cb313e9fffd", + "id": "bc8f99d1-9bc7-4d86-a1c3-d708453c1c3f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -137635,7 +137635,7 @@ "_postman_previewlanguage": "json" }, { - "id": "67686977-421c-428f-ad58-52e441a95f61", + "id": "b820f3e4-fb72-4ea8-9736-6250a90831fc", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -137680,7 +137680,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f0b91f8e-e649-4041-a107-eeb113f4347d", + "id": "bdae65c2-bee5-4ec4-b1c0-9b1be028aed7", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -137725,7 +137725,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5ce4838b-8478-48e9-99c2-979fb52f92ba", + "id": "e466aa3b-b320-40a4-b0ff-613c703d9092", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -137776,7 +137776,7 @@ } }, { - "id": "93476ecb-c398-4a66-8425-f85256e614bb", + "id": "4162f0b9-5558-413c-9d5d-662f5aafaaca", "name": "Update SOD Policy schedule", "request": { "name": "Update SOD Policy schedule", @@ -137831,7 +137831,7 @@ }, "response": [ { - "id": "fd3eb6fa-05a8-482f-973e-68b9d9bd17cd", + "id": "4e92202f-a019-4a6b-9e01-24f769ffbd3e", "name": "Created or updated SOD policy schedule.", "originalRequest": { "url": { @@ -137889,7 +137889,7 @@ "_postman_previewlanguage": "json" }, { - "id": "624bb1fc-ee61-4989-9b26-853d3b02e586", + "id": "05eb5cab-1da9-49d0-a6b9-e6218ae804d9", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -137947,7 +137947,7 @@ "_postman_previewlanguage": "json" }, { - "id": "da2ed5cd-a0ed-4943-96cd-5f663c930f6c", + "id": "12685855-9145-423f-8ba4-27c3fe292ecd", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -138005,7 +138005,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b566bfaf-e775-48d9-a330-8a5d30f4a932", + "id": "dc71fdd5-8864-4f73-93de-c6aa3a6cdd72", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -138063,7 +138063,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6011ce05-d176-459a-8f61-fe21550a33f0", + "id": "6bafb96c-3882-4ec7-8ae3-2c27f4d4f0e8", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -138121,7 +138121,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7404e38f-a2b4-4412-ae78-0996d7c3520c", + "id": "906039ed-3634-4312-ba2c-81829e47127c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -138185,7 +138185,7 @@ } }, { - "id": "f0a13793-efee-4611-871b-a1436508c97a", + "id": "9f0c679e-7cf6-439f-8841-8c7483e90142", "name": "Delete SOD policy schedule", "request": { "name": "Delete SOD policy schedule", @@ -138227,7 +138227,7 @@ }, "response": [ { - "id": "38633d83-999b-4bd5-b500-9352ae048932", + "id": "958cebef-afa8-4c4a-8895-fdbca9cb555d", "name": "No content response.", "originalRequest": { "url": { @@ -138262,7 +138262,7 @@ "_postman_previewlanguage": "text" }, { - "id": "104735e2-99f1-4f47-956a-7a0ad01eedf2", + "id": "bf5a8cfb-ed8c-4183-8043-5257c0cb83ac", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -138307,7 +138307,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6d53b141-d361-4adf-ba09-399ebf00914a", + "id": "de2b9eed-16ac-45da-af5b-ab87d7f562c5", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -138352,7 +138352,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a6696826-089d-4566-af5a-2f6c67e2c9fd", + "id": "450afd76-4a97-4b79-beb0-104a0cb5aa24", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -138397,7 +138397,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e2a99daf-9401-4a95-a42e-3c99b7277854", + "id": "d47c3334-f8c9-41fb-a734-13428b7de57b", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -138442,7 +138442,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7cd25817-439b-4820-91ca-ebaeceb7cd49", + "id": "04859217-3d99-4d72-81fb-95078537edc4", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -138487,7 +138487,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2e510d00-01ef-40aa-b681-87e96bca99b5", + "id": "723679b1-16da-4951-a9b5-efc687b70414", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -138538,7 +138538,7 @@ } }, { - "id": "6d646f5b-bda9-45b8-a18d-1b8b44bfdaa8", + "id": "3280ad0f-a071-4870-825d-ca9f24490fdc", "name": "Runs SOD policy violation report", "request": { "name": "Runs SOD policy violation report", @@ -138581,7 +138581,7 @@ }, "response": [ { - "id": "b0eb4cf7-73b1-4865-91de-e4b4d2df7411", + "id": "cc4d5a80-6ab2-49bb-9255-47fc344531c3", "name": "Reference to the violation report run task.", "originalRequest": { "url": { @@ -138627,7 +138627,7 @@ "_postman_previewlanguage": "json" }, { - "id": "adf59cbd-38d6-4c94-9f55-1d5f007bfd50", + "id": "749c5d50-16db-4180-ae71-f30d0f9f1e4f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -138673,7 +138673,7 @@ "_postman_previewlanguage": "json" }, { - "id": "03d714e0-3027-4d59-bc60-cb83dd4d6ca3", + "id": "f1525dbd-5ebc-45dc-ac9f-4b160de30972", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -138719,7 +138719,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2dfca03c-c983-4cca-a5ff-04a0f90ca354", + "id": "663f0e23-977d-48c5-b972-9fc62f0f69c7", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -138765,7 +138765,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3e4e0215-a635-42bf-b028-77b36d289ba8", + "id": "4466808a-2ed8-44c4-b3c5-8961ce15eabb", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -138811,7 +138811,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b594c7ab-ca3d-4dca-b8dd-fb0a49289516", + "id": "07d494a8-abb8-4445-a512-0cdc38878565", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -138857,7 +138857,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1059497a-7d95-4094-abec-20763fff7861", + "id": "6e17ddd4-e460-4411-8317-f2755e7a6565", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -138909,7 +138909,7 @@ } }, { - "id": "f254e810-3a41-48b7-9960-76842123251e", + "id": "2166461a-5dd4-4a22-9ebf-e349972ada1f", "name": "Get SOD violation report status", "request": { "name": "Get SOD violation report status", @@ -138951,7 +138951,7 @@ }, "response": [ { - "id": "d193e57a-3256-4f9a-a499-e5eb437020b3", + "id": "0eb67d11-d5e9-4914-9018-5d45a4b02488", "name": "Status of the violation report run task.", "originalRequest": { "url": { @@ -138996,7 +138996,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f7e57769-a7e7-42b0-893c-fa1c7bbb5d2e", + "id": "41dd17de-8c49-4420-b469-2573d63c054c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -139041,7 +139041,7 @@ "_postman_previewlanguage": "json" }, { - "id": "426c9004-c37a-4b87-b3db-1252fc340b8d", + "id": "94a4d318-2668-4aeb-97f8-d7bde1bcdd99", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -139086,7 +139086,7 @@ "_postman_previewlanguage": "json" }, { - "id": "87ab514a-2167-410e-bdc9-76ef3dfffec0", + "id": "2a933c46-4b9a-421c-9461-0f82b0de102a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -139131,7 +139131,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6e6bf790-2cff-4f9e-83bc-34d79e519b0f", + "id": "4790c1c3-1915-4c94-b4c2-894a79b44a35", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -139176,7 +139176,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b301082e-5c50-44e9-b1a1-e1d233bae6cb", + "id": "562a06d6-3a7e-4143-9ffe-751414fc9241", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -139221,7 +139221,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a5241607-33b6-42f1-b191-39fb324dd112", + "id": "59afe3bd-6b77-4879-b532-fd150912a2f0", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -139272,7 +139272,7 @@ } }, { - "id": "5ac3f8d9-1171-4fd2-b259-6dfdca5d7eb7", + "id": "188a4526-5a36-4149-a98a-765772a356e9", "name": "Get violation report run status", "request": { "name": "Get violation report run status", @@ -139314,7 +139314,7 @@ }, "response": [ { - "id": "2bb8e489-a1c8-4542-8381-6e0700b63953", + "id": "799f512c-58e6-48c1-938e-d063e9d06bce", "name": "Status of the violation report run task.", "originalRequest": { "url": { @@ -139359,7 +139359,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f7d35488-5efc-48eb-8795-94761ab7b9a1", + "id": "4ef572a2-5d3d-4d81-9848-5ef9a9177fd8", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -139404,7 +139404,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1a783853-964e-4288-80c0-5575aaf303dc", + "id": "134ba7a3-8878-4994-966f-a721d9dbc7ff", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -139449,7 +139449,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e06757fc-f318-43dd-bc72-88587b1abb89", + "id": "abbc7300-13c7-4c51-90ad-4277678a06cb", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -139494,7 +139494,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9e2807c2-e176-4ca8-835b-3a88e84a5e5f", + "id": "ce7e4f51-6e0b-4ede-994c-89bce9b11b6c", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -139539,7 +139539,7 @@ "_postman_previewlanguage": "json" }, { - "id": "110b39ff-c54e-4e13-ad45-e187b0574139", + "id": "2a730b95-1882-45ba-941e-6f0772661a88", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -139584,7 +139584,7 @@ "_postman_previewlanguage": "json" }, { - "id": "717f04fb-e2f6-475b-886a-ea542c4a9be7", + "id": "90287c3a-8e12-43c9-9f3f-8ae3923ca96a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -139635,7 +139635,7 @@ } }, { - "id": "5a1ec689-793b-4991-a503-30b9997fa78a", + "id": "389a3b50-6f45-4fee-96d9-24d86b7d71e0", "name": "Runs all policies for org", "request": { "name": "Runs all policies for org", @@ -139678,7 +139678,7 @@ }, "response": [ { - "id": "a3b08d40-85f5-4cfe-9283-061b672b7fa3", + "id": "1cef4182-2a98-4fab-816a-fc4d59009659", "name": "Reference to the violation report run task.", "originalRequest": { "url": { @@ -139735,7 +139735,7 @@ "_postman_previewlanguage": "json" }, { - "id": "38b5a01d-5b1b-47ba-aec7-5e6679537772", + "id": "f203091f-bf76-41b1-b13f-c31012fd260f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -139792,7 +139792,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b707dd31-b1f5-46d4-98cb-620e9363a03d", + "id": "f112098e-1905-4220-9f84-59d464915477", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -139849,7 +139849,7 @@ "_postman_previewlanguage": "json" }, { - "id": "65f5925b-c953-4981-ac07-ee9845b7fa36", + "id": "37ab2aa0-081d-4be7-a450-abf1a32fcee4", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -139906,7 +139906,7 @@ "_postman_previewlanguage": "json" }, { - "id": "81359062-d5df-45fd-b789-0148dd5e80d9", + "id": "63a5715b-94a0-42d8-94ee-c583f420e743", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -139963,7 +139963,7 @@ "_postman_previewlanguage": "json" }, { - "id": "85468cf5-7501-443f-b46e-95a022875f2c", + "id": "c1e48ed2-e7bf-4346-9f82-a01f9175929d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -140026,7 +140026,7 @@ } }, { - "id": "b03331b0-b989-4efb-aea3-8b9064b8c353", + "id": "20370ff2-4cdf-4167-a0e9-780993c0e8fa", "name": "Get multi-report run task status", "request": { "name": "Get multi-report run task status", @@ -140055,7 +140055,7 @@ }, "response": [ { - "id": "95289e08-5777-46e0-b004-931f27560146", + "id": "954154f2-ac99-401f-8d19-ecee5badd1ee", "name": "Status of the violation report run task for all policy run.", "originalRequest": { "url": { @@ -140098,7 +140098,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3db48a09-a6d4-444e-9dd4-22c1af73139f", + "id": "49788250-5bdb-4ecb-9cf6-3ef362d3b125", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -140141,7 +140141,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bc063bfa-c542-4ed4-b7bf-1090776322bb", + "id": "b69c542c-e6d2-4d53-b7d5-5ba9bc08658b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -140184,7 +140184,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4f5f4322-a8e5-4331-aee2-3f9fbe36297f", + "id": "4194d9b3-87b2-4cd7-9b89-eed90228aa61", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -140227,7 +140227,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2d5153d9-5a03-4401-9c83-62d2e6fadb97", + "id": "d4a72884-e858-4ec5-a2c0-93f0e3382111", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -140270,7 +140270,7 @@ "_postman_previewlanguage": "json" }, { - "id": "56e1986b-3bba-4c85-a231-fbdcddd9a8af", + "id": "67406241-33a8-471e-a8ec-d34e1fae129d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -140319,7 +140319,7 @@ } }, { - "id": "ca22073b-4e86-45ca-bf03-ff4ad16a3119", + "id": "9e1d1d37-b7a9-4717-a093-2f622ba657bb", "name": "Download violation report", "request": { "name": "Download violation report", @@ -140361,7 +140361,7 @@ }, "response": [ { - "id": "2367ca73-9f71-453f-9658-f9714a2b43ff", + "id": "54a13f50-6a45-4354-82bf-4b80b94625e4", "name": "Returns the PolicyReport.zip that contains the violation report file.", "originalRequest": { "url": { @@ -140401,12 +140401,12 @@ "value": "application/zip" } ], - "body": "voluptate Excepteur Ut labore", + "body": "dolor do cillum", "cookie": [], "_postman_previewlanguage": "text" }, { - "id": "51e914b8-5c26-4d54-9134-2cde0052eae1", + "id": "5ecb6f55-9484-450d-8297-70bb34fd4885", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -140451,7 +140451,7 @@ "_postman_previewlanguage": "json" }, { - "id": "706c1735-b27e-4a2e-b65c-d531e4558bc3", + "id": "ee973648-3f8c-466f-9a2e-d819b3c9dce4", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -140496,7 +140496,7 @@ "_postman_previewlanguage": "json" }, { - "id": "87797a5b-9f0e-4997-ac87-06f40cfed9bd", + "id": "7d3be60b-c438-4382-850b-ecd54f910dfd", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -140541,7 +140541,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c25dfdda-856b-44bf-9c71-7db000bbd46f", + "id": "4234072c-51ec-4138-8ace-65970ca6bb29", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -140586,7 +140586,7 @@ "_postman_previewlanguage": "json" }, { - "id": "31fea789-cccc-48a8-a54f-a27a8f30a38b", + "id": "e93841bc-5c59-4c8f-97ec-9550e16d9b60", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -140631,7 +140631,7 @@ "_postman_previewlanguage": "json" }, { - "id": "10b0e390-1360-4385-8996-6e581e304e26", + "id": "0460246d-bdf7-42d4-aaa5-d0feb13b81b4", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -140682,7 +140682,7 @@ } }, { - "id": "bb434f19-7f3f-46b5-ac9d-f916bce6faed", + "id": "96c51614-d729-4e21-acac-482ae90b7e69", "name": "Download custom violation report", "request": { "name": "Download custom violation report", @@ -140735,7 +140735,7 @@ }, "response": [ { - "id": "533916f4-8143-457b-8bbf-2e2e57bdaca7", + "id": "0b5ef810-3ce3-4616-bfc4-63063a9f7835", "name": "Returns the zip file with given custom name that contains the violation report file.", "originalRequest": { "url": { @@ -140776,12 +140776,12 @@ "value": "application/zip" } ], - "body": "voluptate Excepteur Ut labore", + "body": "dolor do cillum", "cookie": [], "_postman_previewlanguage": "text" }, { - "id": "3ddff6b2-cd8a-4e98-9905-e3ffda6ef7dc", + "id": "7bf102b6-10e3-4e0f-9462-706bbe971e81", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -140827,7 +140827,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fbc67a60-d47a-4cb9-9f72-78ef276e2c70", + "id": "49929ef2-bab3-4d3b-af8b-5f4b17278bbf", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -140873,7 +140873,7 @@ "_postman_previewlanguage": "json" }, { - "id": "81fb8136-34c6-408d-ac5d-effac2e79a88", + "id": "db87277e-c41b-4537-82b2-ca3b40ab0618", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -140919,7 +140919,7 @@ "_postman_previewlanguage": "json" }, { - "id": "81c2221e-5c06-45bd-a3a9-154c9278fc4d", + "id": "a0495267-f97e-4a6b-82d2-529f8d0a59af", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -140965,7 +140965,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e35b2881-062d-4efc-9237-03956cdf8160", + "id": "85c12a8f-14ef-4cc0-a561-71be33d1f573", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -141011,7 +141011,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2851d61f-e45b-4eca-b4ac-6d1f4e9de913", + "id": "9c4de726-31c8-4174-bdfe-fe79f069d269", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -141069,7 +141069,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": "5c08fdf8-5dc9-48a2-bf56-befc1f55ba80", + "id": "7bc5ccaf-545b-4c4f-a09e-b4e572c911b1", "name": "Predict SOD violations for identity.", "request": { "name": "Predict SOD violations for identity.", @@ -141112,7 +141112,7 @@ }, "response": [ { - "id": "ddcd2fc9-ff8f-43c5-a625-c4a7ae2eb53b", + "id": "6b7c401c-872a-4859-b7f3-9ebc26166d9f", "name": "Violation Contexts", "originalRequest": { "url": { @@ -141169,7 +141169,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0fcc19e4-661d-4336-81f4-91aba5aedd27", + "id": "ce681c5f-60cd-4017-a2b0-937ac2b91204", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -141226,7 +141226,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f68250ed-9689-422d-8b5a-8d72578c1367", + "id": "9a6ae981-09dd-4785-a83a-05128a9fa992", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -141283,7 +141283,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c0217674-b01e-4b3a-b24f-8a72faf1e565", + "id": "ceb0f110-aa35-4f04-9e92-af4c1243a8a6", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -141340,7 +141340,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fe4577a0-77eb-4bae-910e-e1a44d786d89", + "id": "493c7615-0ab2-40fc-af31-0632d66252dc", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -141397,7 +141397,7 @@ "_postman_previewlanguage": "json" }, { - "id": "742e7f98-5523-47c5-a6af-378466f58186", + "id": "3a6df6a4-515c-48e8-b4b6-c73bcf979f30", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -141454,7 +141454,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f3f7a454-82a5-4b5b-8887-bfd2830d05ac", + "id": "9b2e38a7-3110-48d9-8f57-1de605e3c18d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -141517,7 +141517,7 @@ } }, { - "id": "de1484d3-6b76-43bf-a496-872e6e19a8c2", + "id": "74e71b9a-a145-410c-b3c4-471671621586", "name": "Check SOD violations", "request": { "name": "Check SOD violations", @@ -141560,7 +141560,7 @@ }, "response": [ { - "id": "40e41c8f-92f6-47df-ac8e-b7ea2d3a7014", + "id": "2c3c346a-4f04-40eb-b451-c0a075d7ccd7", "name": "Request ID with a timestamp.", "originalRequest": { "url": { @@ -141617,7 +141617,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6a471772-2b5a-432f-9a3f-4bba50084597", + "id": "e85e2620-0af9-41a8-9a1c-f407512149fc", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -141674,7 +141674,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d4172174-37d3-4bd4-9d74-49a30ee02743", + "id": "3982e218-cba9-4fcb-be76-8bc72a869b70", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -141731,7 +141731,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2c172551-e0c8-4f9a-abd1-2ca189f84079", + "id": "8bc1b976-93b7-44a8-ac87-0e9a33b8c22e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -141788,7 +141788,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1194cd9a-e7c0-49f2-8d61-6dcbb2e82949", + "id": "c9d8b33f-379f-4150-aa04-ba64caedafa9", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -141845,7 +141845,7 @@ "_postman_previewlanguage": "json" }, { - "id": "070c39f1-cb8f-4e6e-914b-7e6f4e6af596", + "id": "00850d58-06af-40fd-b724-93d0ba806796", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -141902,7 +141902,7 @@ "_postman_previewlanguage": "json" }, { - "id": "51a2cc39-e414-4556-9086-84e5d2d634bf", + "id": "4d8dc244-67ce-423f-ae14-c310cac6ef2e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -141971,7 +141971,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": "671a5b8d-4602-4ff3-9fee-7b4fbafffcb5", + "id": "163ec55c-baf2-47e9-8dcb-22b1ef874278", "name": "Finds status of source usage", "request": { "name": "Finds status of source usage", @@ -142013,7 +142013,7 @@ }, "response": [ { - "id": "db664f3f-2a4b-43ae-b10e-b62c3a7a5df5", + "id": "cb19061b-a749-42cf-94d6-02df77e28b8c", "name": "Status of the source usage insights setup by IDN source ID.", "originalRequest": { "url": { @@ -142058,7 +142058,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e7ef6729-d715-4db0-a711-b2df7736e731", + "id": "368a2d49-797f-479d-953f-8d83fc8a44c7", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -142103,7 +142103,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a860baae-3692-4ed1-8fa6-a46831792dd1", + "id": "4e54177d-b23a-49b2-9a32-9e4f0807bbd3", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -142148,7 +142148,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dd1b8b8c-0228-4784-83bf-fce17dbb4da1", + "id": "d9d4dbc8-ae18-4da9-bd0e-7176d6ce2cf6", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -142193,7 +142193,7 @@ "_postman_previewlanguage": "json" }, { - "id": "27f0f9f3-17b6-431f-85c0-8b839e2a8f72", + "id": "4b0cc968-0353-4c2e-bffa-3e52e0a9fe65", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -142238,7 +142238,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7403af2c-0a13-46b3-a52f-612501a77cdd", + "id": "a93a853e-3c43-4a33-a037-4591c4a599ce", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -142289,7 +142289,7 @@ } }, { - "id": "369992ac-1171-4764-890c-8fa31d9bd645", + "id": "be99f9b8-8df1-48df-ae01-f89dd0b18030", "name": "Returns source usage insights", "request": { "name": "Returns source usage insights", @@ -142368,7 +142368,7 @@ }, "response": [ { - "id": "b01aebac-e101-4345-afd0-5d2345a1cf96", + "id": "a42a8b08-a11d-40ff-921b-0aaa3007f767", "name": "Summary of source usage insights for past 12 months.", "originalRequest": { "url": { @@ -142450,7 +142450,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f7647b19-8604-4cb6-b0b6-fec6bf7948b9", + "id": "04dac840-0c17-40bb-b69c-01ec2be703df", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -142532,7 +142532,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0bb7e1ea-ea5c-474e-b066-734df9d35fcf", + "id": "55cb7858-8cd7-4081-a671-812cc0582d41", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -142614,7 +142614,7 @@ "_postman_previewlanguage": "json" }, { - "id": "58e8150c-0d0f-4ad8-b14a-8f36edd833ad", + "id": "89113299-350a-4bb9-9894-400269896c56", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -142696,7 +142696,7 @@ "_postman_previewlanguage": "json" }, { - "id": "497e8fe3-d609-4ae9-815e-a8cfdbb2b842", + "id": "af3fdbb2-cb9c-4a4a-8a20-f17cd85c74a9", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -142778,7 +142778,7 @@ "_postman_previewlanguage": "json" }, { - "id": "53349216-d9a5-42d3-8665-832278b2abdb", + "id": "61b50eb1-f1c6-4d18-abc0-8d22183a2c0b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -142872,7 +142872,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": "8d7ca451-5574-4b09-8204-cd98862d1c3e", + "id": "a86ea263-1643-4f29-bd60-f939fa0a186e", "name": "Lists all sources in IdentityNow.", "request": { "name": "Lists all sources in IdentityNow.", @@ -142956,7 +142956,7 @@ }, "response": [ { - "id": "5dbe27b1-8ba8-44e4-884d-a69509c66b41", + "id": "57f8b22d-607d-48d6-b0fe-6d9beba9d76d", "name": "List of Source objects", "originalRequest": { "url": { @@ -143054,7 +143054,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d8d65ee2-1f6c-4c06-ba48-0cda1c741d15", + "id": "7418f7a9-6b33-45d0-96e3-345dea4e2411", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -143152,7 +143152,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5170518f-6c3e-4081-9c73-a1d269936ff8", + "id": "3b336e34-0ac1-47cd-a6f7-5f8b3399ea7b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -143250,7 +143250,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4c43b98e-9a8c-4a42-8ddb-cff1e205b401", + "id": "c6e29634-f90a-454f-8c48-f4ec8d040ce6", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -143348,7 +143348,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1308a04b-1bbf-4c88-9590-4054995a8849", + "id": "da798d7a-4c4e-4ad4-ba8b-358417ae8b49", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -143446,7 +143446,7 @@ "_postman_previewlanguage": "json" }, { - "id": "382fe75c-812b-4097-bea1-8adcaae1716e", + "id": "92c0704f-e7a4-49a5-b419-0f98c6a21ef6", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -143544,7 +143544,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a8914a82-2d91-4efe-b445-4008097435cc", + "id": "f0db6d5e-d000-4dc1-bd2a-dbf56975c14c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -143648,7 +143648,7 @@ } }, { - "id": "06afdbdb-2fcd-4f7b-b146-5264623c8749", + "id": "7d7b8b26-c92c-454f-a70a-6114dc79c102", "name": "Creates a source in IdentityNow.", "request": { "name": "Creates a source in IdentityNow.", @@ -143700,7 +143700,7 @@ }, "response": [ { - "id": "9ac951f7-62cf-409a-bd6e-fceca06f582e", + "id": "0d0bc196-387b-48f2-9b5a-f8844a712c41", "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": { @@ -143766,7 +143766,7 @@ "_postman_previewlanguage": "json" }, { - "id": "068c4f7a-ae7a-44d9-94a6-388a11d420c8", + "id": "e6530776-8fdd-468a-b1d3-f1141e39ec48", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -143832,7 +143832,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4625e679-555a-4f26-807b-6849ab06d0db", + "id": "770749ab-1652-480d-a3d6-78fae57f0f31", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -143898,7 +143898,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e8690b73-cd54-4a77-83ad-a88ca883296c", + "id": "f2ec03e9-f855-44b8-a13d-dc6dfac5006a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -143964,7 +143964,7 @@ "_postman_previewlanguage": "json" }, { - "id": "972663a1-b68c-484f-8b42-ef0c8e8f62ee", + "id": "7ad02b0d-fd81-4cca-912b-b7c70059b3cb", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -144030,7 +144030,7 @@ "_postman_previewlanguage": "json" }, { - "id": "99279341-f846-4407-894f-eadf2e56b023", + "id": "6a5887a1-e0dc-459b-8b47-24f27065bf4b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -144102,7 +144102,7 @@ } }, { - "id": "1e98d1b3-2a4d-4dd0-9dcc-2e81379314f2", + "id": "4935dbca-7be2-4d87-b154-16e584a636e9", "name": "Get Source by ID", "request": { "name": "Get Source by ID", @@ -144143,7 +144143,7 @@ }, "response": [ { - "id": "3b1d57bc-27d6-47e4-b1b9-ab06c4e69810", + "id": "f98eae45-0b79-4ba5-a9e8-9a097cbf3c0d", "name": "Source object.", "originalRequest": { "url": { @@ -144187,7 +144187,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9d6db263-ff84-4249-8100-6ab96d5667cd", + "id": "159a98f7-78b4-4ca0-b003-ad066c1673dd", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -144231,7 +144231,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5fdd2bf0-0da0-4e2e-9454-db1f6a0c1001", + "id": "78d17254-a013-41ab-aea9-63d15e667769", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -144275,7 +144275,7 @@ "_postman_previewlanguage": "json" }, { - "id": "35e839da-b379-4eee-be81-ef81c396e1b4", + "id": "7b9f553b-afb8-4a30-9585-eaa9badc10f4", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -144319,7 +144319,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6207e079-99d8-4286-a56e-f9aae45e4918", + "id": "0ac0014c-fd4b-4d46-89ce-13b3d25d9634", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -144363,7 +144363,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9cf20ea9-579c-400b-9ea2-0b1aececcae0", + "id": "995b967a-0a14-4f7e-8324-e698427db7f2", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -144407,7 +144407,7 @@ "_postman_previewlanguage": "json" }, { - "id": "94b74d95-d1e5-4e99-971d-a5aaa4e13a57", + "id": "52ee726a-6e2f-494e-afdd-c00f2235d095", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -144457,7 +144457,7 @@ } }, { - "id": "5e87ccd4-48be-460a-9d73-7a62dac6a299", + "id": "6d4e393b-9666-4357-a30d-2bd03cc64ec8", "name": "Update Source (Full)", "request": { "name": "Update Source (Full)", @@ -144511,7 +144511,7 @@ }, "response": [ { - "id": "235e5c03-2225-4d44-9292-12ee37d4137c", + "id": "51a8402f-01eb-4c1b-8f3e-f0861452d530", "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": { @@ -144568,7 +144568,7 @@ "_postman_previewlanguage": "json" }, { - "id": "197c0b4d-90e3-4302-a61e-fa8b03be2949", + "id": "8b884c78-4a6f-4f7e-aac1-7c1d62cc0646", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -144625,7 +144625,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c228efd6-db1e-4850-8d35-2df01ac70d76", + "id": "fe831c23-1ccb-472e-a36a-b256bf1093d4", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -144682,7 +144682,7 @@ "_postman_previewlanguage": "json" }, { - "id": "439638dd-0f17-4c23-bb93-010d8d45d1b6", + "id": "dde42de4-efbd-46b9-b4c8-424cae4769af", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -144739,7 +144739,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a4dccc58-6239-45b6-9a3f-9761722e3847", + "id": "d63f39c9-e030-4595-870d-93486969b7f7", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -144796,7 +144796,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0c8f1558-ca5d-4959-8d61-850c4ccefb29", + "id": "2aabbac8-1c28-4589-bd89-d27e42c3f0e8", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -144853,7 +144853,7 @@ "_postman_previewlanguage": "json" }, { - "id": "115d092e-1200-4035-b0e1-383fd10f1a23", + "id": "5b253a21-3fa9-4911-bd60-6e0a6451f635", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -144916,7 +144916,7 @@ } }, { - "id": "19df3c22-1485-4e22-9941-a2014f5bb5cb", + "id": "4df92dd8-cdeb-4ee5-8129-d740762becbf", "name": "Update Source (Partial)", "request": { "name": "Update Source (Partial)", @@ -144970,7 +144970,7 @@ }, "response": [ { - "id": "4a9c413a-c793-490c-9f09-eb99b8c6ebb3", + "id": "4a093b09-81c7-4e33-9518-311ac767baaa", "name": "Edit the source description", "originalRequest": { "url": { @@ -145027,7 +145027,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5db81176-e348-4e7c-9995-58423737f8c8", + "id": "6e157543-d484-44d1-af26-0e29878f184f", "name": "Edit the source cluster", "originalRequest": { "url": { @@ -145084,7 +145084,7 @@ "_postman_previewlanguage": "json" }, { - "id": "37dfb90a-abc8-4256-96c1-3d1e0603c655", + "id": "38ae7b1e-cfe3-4236-b295-f414b71a06a5", "name": "Edit source features", "originalRequest": { "url": { @@ -145141,7 +145141,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eb53c091-4a65-4058-8d21-b3ace71a1d36", + "id": "69c836e8-5484-4a66-9034-f11b1495ce08", "name": "Change a source description and cluster in one call", "originalRequest": { "url": { @@ -145198,7 +145198,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3a1c8bed-a304-49b8-86f0-dc34052199ea", + "id": "16cae235-34b5-4951-beed-bdd8aa5b6679", "name": "Add a filter string to the connector", "originalRequest": { "url": { @@ -145255,7 +145255,7 @@ "_postman_previewlanguage": "json" }, { - "id": "565ac0ca-af0a-4390-8bca-a6bd844aeecd", + "id": "c66a5174-fc16-4468-88cd-74ee3b4336bc", "name": "Update connector attribute for specific operation type", "originalRequest": { "url": { @@ -145312,7 +145312,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f7516543-d00f-4726-81b8-1b712a79cacb", + "id": "0b7b8ec7-f16c-4133-9d1a-e0e256e47336", "name": "Enable notifications for new account provisioning on a source", "originalRequest": { "url": { @@ -145369,7 +145369,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d0810263-50c3-4009-8135-1d295df1d56b", + "id": "38646b0b-31d0-4e13-a7ec-5031391b61d0", "name": "Edit the source description", "originalRequest": { "url": { @@ -145426,7 +145426,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e5133640-af3d-4f8f-a2de-477ba11fb9f6", + "id": "c69540b0-2768-4f1e-888d-324fff37b8e4", "name": "Edit the source cluster", "originalRequest": { "url": { @@ -145483,7 +145483,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8f4afadb-32be-4302-b950-b4fd2a73b4f0", + "id": "b6992d2c-0006-4c40-abb5-7fd8c7c80ca4", "name": "Edit source features", "originalRequest": { "url": { @@ -145540,7 +145540,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d01f1c23-9556-4cae-a900-846a9b1bd285", + "id": "70a41a79-7ef8-453a-a9f6-8e09170ca52c", "name": "Change a source description and cluster in one call", "originalRequest": { "url": { @@ -145597,7 +145597,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fb22ecf0-bfe7-4387-9305-44bbfe161ec3", + "id": "07d0b6b5-0507-4c4b-b023-2d9af1abfa7b", "name": "Add a filter string to the connector", "originalRequest": { "url": { @@ -145654,7 +145654,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a0d7cf05-0671-4873-8cb8-8cf8fa5a26fd", + "id": "944c6f36-525f-4eb3-bc6a-67c5a9181b3d", "name": "Update connector attribute for specific operation type", "originalRequest": { "url": { @@ -145711,7 +145711,7 @@ "_postman_previewlanguage": "json" }, { - "id": "11352f68-11c3-4ab5-9f08-9e3d1aed650f", + "id": "48bdf306-fc23-4788-ab81-fd10c9341868", "name": "Enable notifications for new account provisioning on a source", "originalRequest": { "url": { @@ -145768,7 +145768,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8f089b30-2862-455e-b79b-1a41c4c4e123", + "id": "d61ed5a9-ccb9-49f8-a53c-59f60b68e11d", "name": "Edit the source description", "originalRequest": { "url": { @@ -145825,7 +145825,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4578ebb9-4ced-45f9-90ef-34c88d626b8f", + "id": "dd033ff9-451a-4a6f-b61a-3df28475c371", "name": "Edit the source cluster", "originalRequest": { "url": { @@ -145882,7 +145882,7 @@ "_postman_previewlanguage": "json" }, { - "id": "56ddef7b-32f2-41a8-bab3-977639be7dc2", + "id": "7c3367b7-5521-4f06-8164-7855359700c6", "name": "Edit source features", "originalRequest": { "url": { @@ -145939,7 +145939,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b1f8e95d-19e2-41de-a7aa-8da0823cb59b", + "id": "efef3eef-4485-4f21-a7e2-fb663f450580", "name": "Change a source description and cluster in one call", "originalRequest": { "url": { @@ -145996,7 +145996,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ee740de8-a068-406f-99ac-2bea83a09961", + "id": "3e1c66f7-10e4-45d4-b72f-a7427ae5a482", "name": "Add a filter string to the connector", "originalRequest": { "url": { @@ -146053,7 +146053,7 @@ "_postman_previewlanguage": "json" }, { - "id": "992f0d76-9e60-484c-87ca-fc9cd9821dd3", + "id": "90d8c5b7-d959-43d7-b9e8-404a0ed47651", "name": "Update connector attribute for specific operation type", "originalRequest": { "url": { @@ -146110,7 +146110,7 @@ "_postman_previewlanguage": "json" }, { - "id": "57547abe-59c7-453b-a86d-c64b1a90eb4b", + "id": "5fc355e1-8707-4278-802b-5a0cacf2c9b5", "name": "Enable notifications for new account provisioning on a source", "originalRequest": { "url": { @@ -146167,7 +146167,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b32f9f41-c498-4523-bfe3-f77a4e37d076", + "id": "53a36d0f-56bf-4d69-b40e-97c75e5b1c35", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -146224,7 +146224,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ea8970c2-ed79-46e2-a6b5-f5b1ed0ed5a8", + "id": "31c3baca-feb2-4af2-ab79-40d610024e49", "name": "Edit the source cluster", "originalRequest": { "url": { @@ -146281,7 +146281,7 @@ "_postman_previewlanguage": "json" }, { - "id": "397b88b4-1ae6-4904-9844-566b3d1cc15f", + "id": "6cdb284f-8b59-417b-b5d2-9fe6bc889d33", "name": "Edit source features", "originalRequest": { "url": { @@ -146338,7 +146338,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8b366bb8-97d3-4643-8479-510fc5a0f506", + "id": "bd22e5f5-54a8-4bf1-95d2-38b912f8cb79", "name": "Change a source description and cluster in one call", "originalRequest": { "url": { @@ -146395,7 +146395,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eb7cf096-3ff6-411d-becb-9354ac3af0ff", + "id": "97fe99b5-fed9-4628-ab88-74472272f058", "name": "Add a filter string to the connector", "originalRequest": { "url": { @@ -146452,7 +146452,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7e8c65db-bbd3-41e2-aba0-593c3c18a70f", + "id": "4baa9dbf-01a1-4af5-94d8-ef9c59e79f7a", "name": "Update connector attribute for specific operation type", "originalRequest": { "url": { @@ -146509,7 +146509,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f9e6c3fa-18dd-44d2-942a-b39e39d8dc0a", + "id": "c8508aa8-8daf-4044-b516-08d9f4bd73a2", "name": "Enable notifications for new account provisioning on a source", "originalRequest": { "url": { @@ -146566,7 +146566,7 @@ "_postman_previewlanguage": "json" }, { - "id": "564430eb-e08c-4c6f-9755-7a79ea066911", + "id": "b66c11ae-269c-4877-b458-f3fd8b0f610d", "name": "An example of a 404 response object", "originalRequest": { "url": { @@ -146623,7 +146623,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2ea41b26-022e-4ee7-ad08-7160b161e688", + "id": "8994ba51-15dc-4d68-a2dd-c163bd420b83", "name": "Edit the source cluster", "originalRequest": { "url": { @@ -146680,7 +146680,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1cfd054f-f6cd-45c3-9235-b70c5622a05c", + "id": "4fd59562-8c4d-4e31-ae3d-7496d4d3786a", "name": "Edit source features", "originalRequest": { "url": { @@ -146737,7 +146737,7 @@ "_postman_previewlanguage": "json" }, { - "id": "86f056a1-12b0-4aaf-8036-08ef0e57a528", + "id": "af414cbc-9ad9-444d-a225-42f3755983e9", "name": "Change a source description and cluster in one call", "originalRequest": { "url": { @@ -146794,7 +146794,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1f659e05-47c8-4a4c-ad13-9143dfc0bdee", + "id": "96408fd1-0b28-4226-8f9f-efa268f662dd", "name": "Add a filter string to the connector", "originalRequest": { "url": { @@ -146851,7 +146851,7 @@ "_postman_previewlanguage": "json" }, { - "id": "55e5d669-b8af-4efd-b940-3f1e2b5feef3", + "id": "7053b4a4-18e0-43fc-a496-4c49640a8de3", "name": "Update connector attribute for specific operation type", "originalRequest": { "url": { @@ -146908,7 +146908,7 @@ "_postman_previewlanguage": "json" }, { - "id": "87726af7-d51d-4d0a-b7af-7703b154e235", + "id": "a573fc5e-b7ae-483e-bfdd-e052d5d34849", "name": "Enable notifications for new account provisioning on a source", "originalRequest": { "url": { @@ -146965,7 +146965,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c3f05e6b-02be-45ec-985b-0b1e712f53c1", + "id": "8551c4d3-a646-49a9-8485-e5e4c562d5e0", "name": "Edit the source description", "originalRequest": { "url": { @@ -147022,7 +147022,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1a988e06-2656-489b-9c4b-a837ccc45e29", + "id": "5a7b3bb6-2d0a-491b-9a1e-811bbc858b72", "name": "Edit the source cluster", "originalRequest": { "url": { @@ -147079,7 +147079,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f1f459fc-5d1c-4122-984f-ff941ee208db", + "id": "f5ebc4af-f868-4227-a030-7af16ed8d396", "name": "Edit source features", "originalRequest": { "url": { @@ -147136,7 +147136,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8832d11e-bfed-4c61-9205-2535518e912e", + "id": "6ca32a0f-ce0f-43d7-a35c-01de0148d80c", "name": "Change a source description and cluster in one call", "originalRequest": { "url": { @@ -147193,7 +147193,7 @@ "_postman_previewlanguage": "json" }, { - "id": "45f641a1-29fe-4cd2-8d33-cb14984d3602", + "id": "aa339c65-4ca4-4f75-9ad9-e7b4923147ab", "name": "Add a filter string to the connector", "originalRequest": { "url": { @@ -147250,7 +147250,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8302d4ee-e72f-4b9d-931a-6b20f7309c02", + "id": "97494462-dacd-4a02-bbcd-bb7d0220cfe1", "name": "Update connector attribute for specific operation type", "originalRequest": { "url": { @@ -147307,7 +147307,7 @@ "_postman_previewlanguage": "json" }, { - "id": "14faa233-98df-4ad6-8501-a2d9b3f495b2", + "id": "818c81cf-d9fa-4b51-90df-d0ef1dc3ae41", "name": "Enable notifications for new account provisioning on a source", "originalRequest": { "url": { @@ -147364,7 +147364,7 @@ "_postman_previewlanguage": "json" }, { - "id": "70514ba1-1f71-41a6-a86c-dd17e6cd6bbc", + "id": "a479e439-1ed6-4dc1-984c-cac883d5585b", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -147421,7 +147421,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e293c2fc-5fbc-4adc-8f5d-d5042678ff94", + "id": "3360c65d-e7a6-478f-9e99-7932b5d52840", "name": "Edit the source cluster", "originalRequest": { "url": { @@ -147478,7 +147478,7 @@ "_postman_previewlanguage": "json" }, { - "id": "aa25c82a-79f9-4392-9df9-ed3cfa50d8b7", + "id": "8ce510bf-83f3-42b8-8e6a-e055136299bd", "name": "Edit source features", "originalRequest": { "url": { @@ -147535,7 +147535,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ae14b367-ba81-41ca-8f0d-41bd995b8773", + "id": "70d09949-70d7-4618-9d61-c56bd2ce6d82", "name": "Change a source description and cluster in one call", "originalRequest": { "url": { @@ -147592,7 +147592,7 @@ "_postman_previewlanguage": "json" }, { - "id": "29a8c084-8826-4f21-b08a-2a05d0d2c58e", + "id": "7540011f-a468-4177-86ff-9ca2acb831cb", "name": "Add a filter string to the connector", "originalRequest": { "url": { @@ -147649,7 +147649,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2c7fe016-bea2-4042-9694-6736ab0ddfe3", + "id": "7309e721-5781-42b8-9bdd-26edd7148033", "name": "Update connector attribute for specific operation type", "originalRequest": { "url": { @@ -147706,7 +147706,7 @@ "_postman_previewlanguage": "json" }, { - "id": "452fe196-9399-420c-820d-87e36d2065e2", + "id": "6f8e4c70-cd1d-40ca-8a3e-13ac16bb7f10", "name": "Enable notifications for new account provisioning on a source", "originalRequest": { "url": { @@ -147769,7 +147769,7 @@ } }, { - "id": "a89471ed-560f-4f69-a576-3dff78f10098", + "id": "994c356b-c366-44a9-8e63-a4f555c40dca", "name": "Delete Source by ID", "request": { "name": "Delete Source by ID", @@ -147810,7 +147810,7 @@ }, "response": [ { - "id": "70e295a3-dee4-430a-82f1-d7be0f2e01a0", + "id": "12bef9b8-5cf5-4917-9939-3af5e0cbf970", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -147854,7 +147854,7 @@ "_postman_previewlanguage": "json" }, { - "id": "daccbbad-7d0c-40e2-8317-fb19c6fcf6fe", + "id": "81575c49-b9c7-451c-a8be-e9bab034f7fa", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -147898,7 +147898,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ae878b9e-e8be-43ac-8f05-18c422040137", + "id": "a47eda01-c4c3-4581-9dfb-1e497f823710", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -147942,7 +147942,7 @@ "_postman_previewlanguage": "json" }, { - "id": "127d2f68-234e-4367-914e-4bbc46ab8e83", + "id": "19a1d6fc-b0cd-4d85-9fcd-56fe3722a5e6", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -147986,7 +147986,7 @@ "_postman_previewlanguage": "json" }, { - "id": "568f6209-10fa-476a-a6b3-783fa133f61e", + "id": "15064a68-1bc6-417c-b82a-dc53e32af91f", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -148030,7 +148030,7 @@ "_postman_previewlanguage": "json" }, { - "id": "95b6f586-b17a-48d3-88d8-d4f0357028bb", + "id": "b72d92d8-c046-44af-8094-1d40f23dfe37", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -148074,7 +148074,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7f867133-1ff7-4997-97b2-ffc07687adbc", + "id": "056b502e-807f-4748-8ec3-97f2e7179809", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -148124,7 +148124,7 @@ } }, { - "id": "78685479-56fc-4b8c-b439-07c056d1901e", + "id": "1db6339d-7144-423d-8388-e83e8c898dbe", "name": "Lists ProvisioningPolicies", "request": { "name": "Lists ProvisioningPolicies", @@ -148166,7 +148166,7 @@ }, "response": [ { - "id": "a39e06f1-9e32-4373-a55f-f77e80e3e47f", + "id": "eda6d1b3-e28c-418d-83a4-d37d2db29fce", "name": "List of ProvisioningPolicyDto objects", "originalRequest": { "url": { @@ -148211,7 +148211,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f17df426-fb9b-4b84-adba-a06a76117800", + "id": "e1022ce8-d1af-4c90-a986-312d7da947a7", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -148256,7 +148256,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bd213c14-77fd-4622-bfa0-58d98723c7f6", + "id": "96a583fe-8de4-40b8-97d5-d952cf121af3", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -148301,7 +148301,7 @@ "_postman_previewlanguage": "json" }, { - "id": "158b052b-6129-47db-b91a-155eac35faca", + "id": "f89232ac-92b8-4675-8ca3-666452dbb2b7", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -148346,7 +148346,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0abd217d-f489-49d0-a943-32b1365b15b4", + "id": "2f262356-5568-463d-84e3-97ff8bebd405", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -148391,7 +148391,7 @@ "_postman_previewlanguage": "json" }, { - "id": "782400c5-71ea-4cbd-9a7f-778675c281a4", + "id": "f37469a0-3778-41c8-8ce9-bc6e17f6012e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -148436,7 +148436,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a3107026-e755-4f10-9147-fed59d28f92c", + "id": "be5a0263-3a61-4d26-9276-69701588243e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -148487,7 +148487,7 @@ } }, { - "id": "58500816-578c-4db5-b122-07f6892b644e", + "id": "dc55929f-01e9-4d0e-8ef4-11bbad80c15f", "name": "Create Provisioning Policy", "request": { "name": "Create Provisioning Policy", @@ -148542,7 +148542,7 @@ }, "response": [ { - "id": "0dc73ef4-5e78-485e-9c93-a4ff5c5d7392", + "id": "f2c1a232-04d0-4423-83a6-047ddf89d51e", "name": "Created ProvisioningPolicyDto object", "originalRequest": { "url": { @@ -148600,7 +148600,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e1a8d151-ef15-430f-810c-aec890fe3ae2", + "id": "5de6848b-6f55-4bca-bf68-c9d92ff2ecd1", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -148658,7 +148658,7 @@ "_postman_previewlanguage": "json" }, { - "id": "88a8b8f2-97b8-4bd0-873f-5f27818c16bb", + "id": "add8d5be-f424-4f23-9d74-cc53538c54b4", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -148716,7 +148716,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0dce613c-1f81-4ac3-9b58-04ff0dd495ca", + "id": "bfd948e2-79a4-4c1b-bbfe-5dcd9c8ac49f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -148774,7 +148774,7 @@ "_postman_previewlanguage": "json" }, { - "id": "06788644-7230-46b6-a6d9-15752f9ad725", + "id": "e9daf6f2-e909-44a7-946c-eb89a64ef51e", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -148832,7 +148832,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b1bed903-be14-400d-836f-88e7143790f1", + "id": "e101ace4-9b64-4050-9b94-9628c292f5fc", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -148890,7 +148890,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b6c28531-8207-4641-b205-c049e96e1182", + "id": "a706494e-d8bc-46ca-9ce5-da2b9cddb4cf", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -148954,7 +148954,7 @@ } }, { - "id": "516a3830-8b33-4771-99fe-6ee33f833ccb", + "id": "a759dec0-3b65-48ac-9636-87eb5fa71c33", "name": "Get Provisioning Policy by UsageType", "request": { "name": "Get Provisioning Policy by UsageType", @@ -149007,7 +149007,7 @@ }, "response": [ { - "id": "6721c4be-9259-4be3-bbbb-dc787a7e2d06", + "id": "6e9be1d9-6476-41ac-8ff3-b335797a804b", "name": "The requested ProvisioningPolicyDto was successfully retrieved.", "originalRequest": { "url": { @@ -149053,7 +149053,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d9286fb5-1b6f-4a5e-a820-df88cf3f249f", + "id": "39b189e4-b5c5-488e-bf76-2a96d22ef540", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -149099,7 +149099,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8cefa955-08ac-420f-afee-4312df6b57b3", + "id": "fc0cd26f-0a36-460f-b45f-c4ddb3965d21", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -149145,7 +149145,7 @@ "_postman_previewlanguage": "json" }, { - "id": "69068c5a-3925-4d7c-afec-7aad01256170", + "id": "c6ea4649-7666-4f58-9ab4-57227b4898c3", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -149191,7 +149191,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a789759b-e58a-4d87-8aef-ec1365b711cc", + "id": "649a476f-c374-42e6-beca-b824ae1f1939", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -149237,7 +149237,7 @@ "_postman_previewlanguage": "json" }, { - "id": "48feb635-3aa8-4da9-9be5-fc5f4b0b08bb", + "id": "eb890ebd-c8b6-49f9-93d0-3f259d989f5a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -149283,7 +149283,7 @@ "_postman_previewlanguage": "json" }, { - "id": "55b3ef69-fd5e-43b8-a1d5-87c2bb48ec7f", + "id": "244e94ad-636a-4093-87f1-c61754e4fc91", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -149335,7 +149335,7 @@ } }, { - "id": "cde4119a-b2ef-4209-b8d7-195a5d824d67", + "id": "aaf7be75-64ba-4e32-a8ff-d07e904fd9db", "name": "Update Provisioning Policy by UsageType", "request": { "name": "Update Provisioning Policy by UsageType", @@ -149401,7 +149401,7 @@ }, "response": [ { - "id": "31ffb082-3813-48dc-b82c-a8a11717e5d9", + "id": "5d38e503-81fc-489d-9b49-809b9f1e8449", "name": "The ProvisioningPolicyDto was successfully replaced.", "originalRequest": { "url": { @@ -149460,7 +149460,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cc25664a-cc33-43b2-8838-a1f1ad826c1a", + "id": "a2561063-d764-481b-8c78-dba1175a9f31", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -149519,7 +149519,7 @@ "_postman_previewlanguage": "json" }, { - "id": "981491ca-1ed0-4187-a6f1-2ab107217789", + "id": "c96ce2c2-e493-4411-af11-aa09aa1fd080", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -149578,7 +149578,7 @@ "_postman_previewlanguage": "json" }, { - "id": "883e485e-869c-40cf-82db-96b99d7fec2d", + "id": "f99e11b6-eb38-46eb-ad80-69bc3dcd8e17", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -149637,7 +149637,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5f47a834-acfa-444b-b86c-5d97d3409e60", + "id": "9601e797-1714-4e65-8460-0240af251b38", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -149696,7 +149696,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d636ca80-866d-42a8-9572-db53aa5f2a07", + "id": "cc3334b5-4abd-4d3c-8f16-0df37e6d129a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -149755,7 +149755,7 @@ "_postman_previewlanguage": "json" }, { - "id": "22465e27-07bd-40ff-92a7-35824bf22b8c", + "id": "4bdd6889-2af3-4296-b9e8-cfda4515e1f9", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -149820,7 +149820,7 @@ } }, { - "id": "befdd24b-ffcc-4131-a667-04d739017800", + "id": "57f4319f-f7ac-49a6-a91b-187d5ed60148", "name": "Partial update of Provisioning Policy", "request": { "name": "Partial update of Provisioning Policy", @@ -149886,7 +149886,7 @@ }, "response": [ { - "id": "ef6878a1-8743-4523-a747-6bda24207351", + "id": "3aaae6c5-fb21-40fd-aa74-fa0bdacefb8e", "name": "The ProvisioningPolicyDto was successfully updated.", "originalRequest": { "url": { @@ -149945,7 +149945,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d2c4aac8-7821-4b5d-a4ab-4a976649f5a2", + "id": "8c8769a1-3be9-4f07-9e97-628cde666286", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -150004,7 +150004,7 @@ "_postman_previewlanguage": "json" }, { - "id": "298d08b0-ddbe-42a2-a13d-13cf4bfc2cc6", + "id": "b9ea434b-e410-490c-a959-f34941203086", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -150063,7 +150063,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7f4207f9-ebfe-4ae8-a45f-9af80d2f065b", + "id": "8d1e059e-e53b-4547-b0e9-fd0eeb04af90", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -150122,7 +150122,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8f46daea-e073-48f3-a38f-2a9ab042a764", + "id": "3cb031aa-b698-4170-b475-5d52ce1a79f0", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -150181,7 +150181,7 @@ "_postman_previewlanguage": "json" }, { - "id": "337d2c30-7d62-4339-af03-e5da774ff4a2", + "id": "37054db5-1f20-499d-bfe2-5f235889a6ae", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -150240,7 +150240,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5f7cee7b-1399-4f1c-a5f6-ce6f971a8869", + "id": "3a64e4c2-7d31-413b-9042-d46e9b3ea743", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -150305,7 +150305,7 @@ } }, { - "id": "70e9b885-ccfd-4e1f-bf3a-96cb664d35b0", + "id": "f3b6aa7a-4c44-448f-9e28-c823b8799410", "name": "Delete Provisioning Policy by UsageType", "request": { "name": "Delete Provisioning Policy by UsageType", @@ -150358,7 +150358,7 @@ }, "response": [ { - "id": "7e194343-3fe7-43ae-b00a-fbbbd95dde47", + "id": "dbeaef59-6a33-4f98-a20f-9c29ce551c20", "name": "The ProvisioningPolicyDto was successfully deleted.", "originalRequest": { "url": { @@ -150394,7 +150394,7 @@ "_postman_previewlanguage": "text" }, { - "id": "5d522b4e-8159-4c86-ba50-473fe195104c", + "id": "3cd5f2ec-fa25-4c7a-b335-97510d2c7598", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -150440,7 +150440,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3193e0e6-eba9-4606-843e-321bf5d0f895", + "id": "02ff1969-cfe6-4c8b-beae-d6af54be122b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -150486,7 +150486,7 @@ "_postman_previewlanguage": "json" }, { - "id": "60200ac3-da91-4077-a216-490fdc967419", + "id": "9eceb3c9-6077-4aa9-8e77-b79850c99776", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -150532,7 +150532,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5e3a664e-0133-4870-8984-412dd731cfda", + "id": "ec0dab9b-d1b5-409c-a81d-43a526d653db", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -150578,7 +150578,7 @@ "_postman_previewlanguage": "json" }, { - "id": "49c43796-a8ac-4d37-8284-b9801e39e059", + "id": "ed69b96e-e59c-49ec-b8ee-43e855120874", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -150624,7 +150624,7 @@ "_postman_previewlanguage": "json" }, { - "id": "527068e5-af15-49a0-ac30-e2f076cffae0", + "id": "08109608-1001-4c7b-9cad-f7ba3c113150", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -150676,7 +150676,7 @@ } }, { - "id": "bdf81855-a336-490e-a576-6d0cb3b1fa00", + "id": "2be010e7-ce6f-44db-b555-3f38b02a93ec", "name": "Bulk Update Provisioning Policies", "request": { "name": "Bulk Update Provisioning Policies", @@ -150732,7 +150732,7 @@ }, "response": [ { - "id": "9538056c-bfc8-4de0-ab0b-5504ec03c434", + "id": "f309e46e-0fac-4aac-a80b-df38d7764e1a", "name": "A list of the ProvisioningPolicyDto was successfully replaced.", "originalRequest": { "url": { @@ -150791,7 +150791,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6197a871-700e-4401-9e31-7daf6379c04d", + "id": "f6929b48-7ba2-49a3-a3b8-0c94ad29bf03", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -150850,7 +150850,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bba8679a-facc-4645-aaba-c108f4724dbd", + "id": "f6609485-9092-4e92-b78c-431a9e3eb4fb", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -150909,7 +150909,7 @@ "_postman_previewlanguage": "json" }, { - "id": "24c7d97d-8bbd-4a30-a452-a45a51122c7e", + "id": "5a7489e4-e5bc-41d5-8a82-327beb78233f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -150968,7 +150968,7 @@ "_postman_previewlanguage": "json" }, { - "id": "58b2f524-72a5-4014-bb32-04baa3e90a61", + "id": "3da3fb7d-9a30-4274-a92c-55b9287c7d9b", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -151027,7 +151027,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5274f669-df87-44a6-9ffc-5cc6ac1a933c", + "id": "9519a5ff-915b-41d5-ae0d-cac7c33be970", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -151086,7 +151086,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a9e37de4-32f7-4226-986d-81a2b84094bf", + "id": "2de3aab2-2eec-44c9-991e-43ca47fa4a50", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -151151,7 +151151,7 @@ } }, { - "id": "44b0ceff-6552-46b1-a651-6d10d1bbbd25", + "id": "cc19dcb3-5130-418d-8431-6adf87af6507", "name": "List Schemas on Source", "request": { "name": "List Schemas on Source", @@ -151203,7 +151203,7 @@ }, "response": [ { - "id": "15f94ea7-508f-44ca-adb1-a3ce59be72eb", + "id": "f7c11bc6-e71d-45e4-9e79-ab85d56e4da9", "name": "The schemas were successfully retrieved.", "originalRequest": { "url": { @@ -151258,7 +151258,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c4c4e215-a70e-43c1-8cc3-8078266195bb", + "id": "017a2878-733c-46e0-ad3d-05b120274c58", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -151313,7 +151313,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c1e47fe1-4b67-4218-9e0f-9d820a574352", + "id": "827a0fdf-aae6-42c8-bf80-6a723df09374", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -151368,7 +151368,7 @@ "_postman_previewlanguage": "json" }, { - "id": "61741f83-1bd8-4e81-9116-09d92fee282c", + "id": "8234fee8-2198-4624-8bc7-c50e965c9fd9", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -151423,7 +151423,7 @@ "_postman_previewlanguage": "json" }, { - "id": "800c7525-d28d-405f-8d7e-e201bf562a54", + "id": "921351b5-0316-41dc-804d-2f62a3bc22fc", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -151478,7 +151478,7 @@ "_postman_previewlanguage": "json" }, { - "id": "362a7cd2-930d-4152-8939-645a0a69f597", + "id": "ade7b758-296d-4f10-8ab8-00cebd1bda13", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -151533,7 +151533,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6fd12304-4fee-4244-ad64-0f402ebfa64d", + "id": "1e7442b4-09a3-4c81-b5ef-e2444b02db4d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -151594,7 +151594,7 @@ } }, { - "id": "cec3a1a4-50e6-494c-8d9b-3dd4599baeb1", + "id": "dc8f6323-528d-4b20-9a15-377eb8789850", "name": "Create Schema on Source", "request": { "name": "Create Schema on Source", @@ -151649,7 +151649,7 @@ }, "response": [ { - "id": "4bac9f41-d5f8-44e3-adc4-cd0c40a38c78", + "id": "a3951d86-1258-44bc-a117-1323ac7f60f7", "name": "The schema was successfully created on the specified source.", "originalRequest": { "url": { @@ -151707,7 +151707,7 @@ "_postman_previewlanguage": "json" }, { - "id": "25a9f082-02cf-4be2-a339-fda36ec8b868", + "id": "22e05a53-4b07-4ffa-9ec5-6b6280937009", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -151765,7 +151765,7 @@ "_postman_previewlanguage": "json" }, { - "id": "75a2d625-6da0-47d0-bf94-7c17560ffef1", + "id": "4ce2ad0c-049e-4995-8935-a3d049701474", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -151823,7 +151823,7 @@ "_postman_previewlanguage": "json" }, { - "id": "69c2d46e-000e-46b2-bc08-ad5f658f7c30", + "id": "c3380fb8-ec0c-4f64-b53e-b49f7ede5b79", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -151881,7 +151881,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3215997e-2e26-4055-a10b-b6f213c7acbb", + "id": "abb5f271-41b7-4ce3-aafd-d01345d4d217", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -151939,7 +151939,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6e8fa0bf-c23c-44d3-819b-4b9d62342387", + "id": "3e81f9f8-0c98-45ba-992a-d31b34578350", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -152003,7 +152003,7 @@ } }, { - "id": "ad7c45bd-83cf-4c58-b3ea-41ea64ed58cd", + "id": "9f54ee1d-4a39-4bc0-9e55-26d9d36a129f", "name": "Get Source Schema by ID", "request": { "name": "Get Source Schema by ID", @@ -152056,7 +152056,7 @@ }, "response": [ { - "id": "2d0cc005-2465-4923-a11c-4674f2d7d6fc", + "id": "6b1434f7-3dfc-4449-93b8-7afc60e7ac79", "name": "The requested Schema was successfully retrieved.", "originalRequest": { "url": { @@ -152102,7 +152102,7 @@ "_postman_previewlanguage": "json" }, { - "id": "45bdd6ac-43c0-49a7-b87c-5e29accdd3f0", + "id": "0374f4c8-cd98-4443-9695-c04a815f9c5a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -152148,7 +152148,7 @@ "_postman_previewlanguage": "json" }, { - "id": "289e6b64-d39b-485d-a3d6-0b0bd938e88f", + "id": "02cdb31e-c845-400b-b766-2e90cf02d687", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -152194,7 +152194,7 @@ "_postman_previewlanguage": "json" }, { - "id": "23e5faa8-0604-4d1a-9270-b3829afa3010", + "id": "48291cca-2315-44a4-a27a-ce75c438ab78", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -152240,7 +152240,7 @@ "_postman_previewlanguage": "json" }, { - "id": "76221ad6-57c8-4775-999f-dbbc8616fff3", + "id": "e7244565-d145-48bb-9aff-def1a666b625", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -152286,7 +152286,7 @@ "_postman_previewlanguage": "json" }, { - "id": "53945fde-4486-430e-ba50-ee1a1542d0b7", + "id": "6e8340db-09b4-4335-ad69-081f71ff4fbd", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -152332,7 +152332,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a873c96c-2846-4c5b-996f-be9414a435cd", + "id": "9141e5ef-f670-414d-b7c7-ad55ba9dfda2", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -152384,7 +152384,7 @@ } }, { - "id": "f10b7de2-b964-4bc7-b7cf-ba46151fe11e", + "id": "6dc6a1ce-ba55-43b8-a529-f8689377fae8", "name": "Update Source Schema (Full)", "request": { "name": "Update Source Schema (Full)", @@ -152450,7 +152450,7 @@ }, "response": [ { - "id": "03ab3d9e-415e-46ca-bab3-230644f5c39d", + "id": "7af5fc6c-339d-42ab-a503-7e79e87b808d", "name": "The Schema was successfully replaced.", "originalRequest": { "url": { @@ -152509,7 +152509,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eb5a2fe4-bb68-47f1-82c1-88e18742a1f7", + "id": "80294642-a3b6-4c32-95a2-983edffd9897", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -152568,7 +152568,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0fb15526-ca66-400d-b7c1-7bb2cf78e4d8", + "id": "5046b179-aa60-4a71-808e-c8acc4239c9f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -152627,7 +152627,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b3f4677f-0c31-44a9-bdaa-5066f867cf91", + "id": "72736d64-b65c-406e-9e9b-90cfe8eff5fe", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -152686,7 +152686,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bcf445f6-60eb-4ba6-8147-6c9f754929b6", + "id": "9727315b-1f90-4395-928d-53fe9d738580", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -152745,7 +152745,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9467a681-bdeb-4910-8ca6-33033deac922", + "id": "655ace0e-023d-4719-985d-2e0eab12ff5f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -152804,7 +152804,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1c0bdbbe-ef56-4ddf-a3c5-bcffde476f9a", + "id": "5780601a-3621-4214-884f-ccff6f5a2962", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -152869,7 +152869,7 @@ } }, { - "id": "0d1342de-6e08-40de-9dce-4b3fa4300a89", + "id": "1bd2aac5-3708-4362-9069-c87ca3adff10", "name": "Update Source Schema (Partial)", "request": { "name": "Update Source Schema (Partial)", @@ -152935,7 +152935,7 @@ }, "response": [ { - "id": "0a13937c-62d7-4aaa-82c2-b45578082875", + "id": "74188733-dece-4ae8-9d21-de934c91a6c2", "name": "The Schema was successfully updated.", "originalRequest": { "url": { @@ -152994,7 +152994,7 @@ "_postman_previewlanguage": "json" }, { - "id": "64cae2a2-1205-42f6-8de2-837dddaddade", + "id": "1edfdb30-924c-4d02-947f-4285f81d210b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -153053,7 +153053,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c30f4ad0-d2cf-4a9c-a65a-bd8b5aec24b5", + "id": "3deb9419-a72e-47c8-9adc-c2228204f48f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -153112,7 +153112,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f2ba69e3-d517-453f-a26f-2b95fe4dc650", + "id": "702f0423-d332-498e-8053-375c159fbf2e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -153171,7 +153171,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a606f8fa-2421-4ae7-b51b-636fba1cf724", + "id": "fa6cd97c-f176-4497-bc1e-ffa1d48a7f57", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -153230,7 +153230,7 @@ "_postman_previewlanguage": "json" }, { - "id": "649785dc-b795-4159-a292-9062f6804be4", + "id": "1656a907-d0e8-4e8b-bf5c-df2ff2e8f869", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -153289,7 +153289,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f1bc82dc-2298-40d2-b0a9-5d2faa6cd779", + "id": "334d105a-9e99-4227-9d0e-363b0477cc32", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -153354,7 +153354,7 @@ } }, { - "id": "29841132-2fd7-4945-89d0-cb5901762f79", + "id": "77a745d4-3dca-4c4f-b39e-18fe8cb62396", "name": "Delete Source Schema by ID", "request": { "name": "Delete Source Schema by ID", @@ -153404,7 +153404,7 @@ }, "response": [ { - "id": "ae72e7ae-ea35-495d-9a5f-efb7726cd57a", + "id": "8a6113bb-ffbd-4af1-b050-3ef5c2b408e9", "name": "The Schema was successfully deleted.", "originalRequest": { "url": { @@ -153440,7 +153440,7 @@ "_postman_previewlanguage": "text" }, { - "id": "3ccdd38e-1523-4a76-ac74-d471a0a4f5a4", + "id": "12b76044-dc8d-4482-ba42-bae9f472988d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -153486,7 +153486,7 @@ "_postman_previewlanguage": "json" }, { - "id": "258d0e9e-e0c0-4993-8c5d-2f7d33c764ed", + "id": "de893554-4947-4325-8f8a-287c7160cbc3", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -153532,7 +153532,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7ac21aab-16b5-42cd-a816-9657d333e12b", + "id": "8194dbb9-3b20-4d1f-9859-8a06193e9d36", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -153578,7 +153578,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6a3beba7-ad61-4a01-b24a-32d79c38bd81", + "id": "bf084c7d-aae6-472e-be00-732c6ba1b0f4", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -153624,7 +153624,7 @@ "_postman_previewlanguage": "json" }, { - "id": "01473166-8412-4ecc-9468-38e34323a867", + "id": "55e6e9d0-1167-4981-bb53-86ad26548ad7", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -153670,7 +153670,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3b573045-ead8-4201-86dc-581a4dc41774", + "id": "d389069a-ab2d-4144-8ab1-ea3a8e2e79bf", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -153722,7 +153722,7 @@ } }, { - "id": "99c6b04e-1940-4d25-ab06-a5f5e1a382f4", + "id": "b23ab130-c649-4f6c-b24c-403fef7a4147", "name": "Fetches source health by id", "request": { "name": "Fetches source health by id", @@ -153764,7 +153764,7 @@ }, "response": [ { - "id": "997e5533-e3eb-49e3-ba69-a3ed855eca53", + "id": "e250ca6a-d691-4d35-a3b0-8a9de1181d02", "name": "Fetched source health successfully", "originalRequest": { "url": { @@ -153809,7 +153809,7 @@ "_postman_previewlanguage": "json" }, { - "id": "11a40087-a0e1-4174-a5e8-72bad01e85e1", + "id": "774dc78e-e88d-40db-8975-82febc0617cf", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -153854,7 +153854,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f27c8ed6-1687-42cf-b216-f464b5f51871", + "id": "768d7d57-7829-4da0-8185-0512d4a577b8", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -153899,7 +153899,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0e000672-453e-4cad-85fd-1599e2329f87", + "id": "47693d6b-2da6-4d4c-a8eb-6d090cb56b18", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -153944,7 +153944,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6df8cd68-eb45-409a-bb56-c1d958ba0416", + "id": "f5830936-8015-43f4-8259-28774e1f4ecc", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -153989,7 +153989,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4807976d-78f6-40b1-be3e-c5c00a3fee44", + "id": "b65bbdba-579b-4bbd-baee-2962b4570054", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -154034,7 +154034,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e58b9886-31c7-4238-83a1-73e24308b3e9", + "id": "d3047396-5bcd-4216-a832-9a0119c3a7eb", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -154085,7 +154085,7 @@ } }, { - "id": "80503c22-7b64-4c2a-8ca4-e3d7ffbf7d71", + "id": "c19534cf-45a2-454a-bf57-951a6f1eec30", "name": "Downloads source accounts schema template", "request": { "name": "Downloads source accounts schema template", @@ -154128,7 +154128,7 @@ }, "response": [ { - "id": "7e3883e8-d260-4058-aa88-5d20813d50f4", + "id": "26e93f68-445c-4ea6-9745-1fcd5119ff93", "name": "Successfully downloaded the file", "originalRequest": { "url": { @@ -154174,7 +154174,7 @@ "_postman_previewlanguage": "text" }, { - "id": "793a3409-b4da-48ac-aeb2-6fd5c41c6951", + "id": "496e62d9-602e-464e-93f8-851bf6de5b2e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -154220,7 +154220,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3640ddd5-4ec5-4ee4-800a-2239760d3e35", + "id": "3abd3995-066f-4abb-bae5-cf0c3496f221", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -154266,7 +154266,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ccff9e25-b685-4c7d-ab04-1c6d359f35c0", + "id": "c74ff95d-6cfe-488c-b792-0b5b69ac7415", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -154312,7 +154312,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f61673b2-d891-411e-b3d1-e9c618acb8e2", + "id": "378723d9-c338-49a0-92dd-4ac700c24b16", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -154358,7 +154358,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b06e02af-924c-4591-ae3b-687c8b25b30e", + "id": "3dcdbcc7-1999-4a0f-afc8-95eba0987c6e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -154404,7 +154404,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c29a0957-4ffb-485e-a6c2-5f7aa86c68b2", + "id": "afc24d6c-276c-45a6-9769-7b91bd54e1e3", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -154456,7 +154456,7 @@ } }, { - "id": "2aac2f8d-97e9-44b2-83c3-a0196dc7a4e2", + "id": "10c656f1-8a79-4ed9-b08a-4ed43f90a9d2", "name": "Uploads source accounts schema template", "request": { "name": "Uploads source accounts schema template", @@ -154508,7 +154508,7 @@ "type": "text/plain" }, "key": "file", - "value": "mollit est culpa", + "value": "in veniam elit", "type": "text" } ] @@ -154516,7 +154516,7 @@ }, "response": [ { - "id": "dbe68fbe-b9d6-4f6a-ba01-23dbc7ee14a6", + "id": "25ccebda-c8ab-4295-be4d-aed9a4c6f76e", "name": "Successfully uploaded the file", "originalRequest": { "url": { @@ -154560,7 +154560,7 @@ "type": "text/plain" }, "key": "file", - "value": "mollit est culpa", + "value": "in veniam elit", "type": "text" } ] @@ -154579,7 +154579,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e9767dcc-6c91-46c7-9452-5de7067a4c67", + "id": "be779a0e-8799-45da-9000-0f3a191508ff", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -154623,7 +154623,7 @@ "type": "text/plain" }, "key": "file", - "value": "mollit est culpa", + "value": "in veniam elit", "type": "text" } ] @@ -154642,7 +154642,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d05de36b-a217-4313-a433-f4a57696f4bc", + "id": "c1a75e3f-2c8d-42be-aabb-eb415f5fa50d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -154686,7 +154686,7 @@ "type": "text/plain" }, "key": "file", - "value": "mollit est culpa", + "value": "in veniam elit", "type": "text" } ] @@ -154705,7 +154705,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b8b5937e-7553-4662-b3f1-e95e1c4aeed9", + "id": "575aa6a2-6f3a-4c53-9081-0ca5e156191f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -154749,7 +154749,7 @@ "type": "text/plain" }, "key": "file", - "value": "mollit est culpa", + "value": "in veniam elit", "type": "text" } ] @@ -154768,7 +154768,7 @@ "_postman_previewlanguage": "json" }, { - "id": "37e5a847-1136-471d-8290-492dceb4a853", + "id": "85ccc996-aa06-4495-ac3c-64bb607752f5", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -154812,7 +154812,7 @@ "type": "text/plain" }, "key": "file", - "value": "mollit est culpa", + "value": "in veniam elit", "type": "text" } ] @@ -154831,7 +154831,7 @@ "_postman_previewlanguage": "json" }, { - "id": "15097ad6-d988-4611-8fc4-e9af49f1aa3b", + "id": "9487289c-b997-44c5-a5ed-cda2e56db556", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -154875,7 +154875,7 @@ "type": "text/plain" }, "key": "file", - "value": "mollit est culpa", + "value": "in veniam elit", "type": "text" } ] @@ -154900,7 +154900,7 @@ } }, { - "id": "677b28c7-4447-4f96-bdb7-45e7389c8048", + "id": "70bf91a6-c2b6-49ca-9e0e-d768c838f473", "name": "Downloads source entitlements schema template", "request": { "name": "Downloads source entitlements schema template", @@ -154953,7 +154953,7 @@ }, "response": [ { - "id": "18dafd39-5122-4894-9f2b-7af41ec6d3c8", + "id": "72c914e6-b63f-4ce1-9270-fea7004c2d9d", "name": "Successfully downloaded the file", "originalRequest": { "url": { @@ -155009,7 +155009,7 @@ "_postman_previewlanguage": "text" }, { - "id": "d7c3faaf-e516-4eeb-bcc4-d4085f14aa7a", + "id": "bd7dee3c-963f-41ff-9422-e00e8c7d7ab6", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -155065,7 +155065,7 @@ "_postman_previewlanguage": "json" }, { - "id": "11bb3165-0435-4a3c-9e39-8d9e0b316a6e", + "id": "cebda84c-dc70-4e02-a248-eb7ff2018eea", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -155121,7 +155121,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5844d6c7-8d30-4ede-8bed-c644e90101fb", + "id": "95ad0702-6cee-4371-9849-6f0fb690ae22", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -155177,7 +155177,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c1215626-ab6a-41a2-84f4-930ad18e1679", + "id": "79a58f1a-fd8e-46f7-86d0-86b4cd3b78f3", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -155233,7 +155233,7 @@ "_postman_previewlanguage": "json" }, { - "id": "682884fd-6545-44cf-aac9-ac96d9aa7646", + "id": "cc3738f6-6205-452c-a6d9-960153a45377", "name": "Too Many Requests - Returned in response to too many requests in 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": "1c1024dd-6b16-4417-b43f-22178b73db5d", + "id": "d6d5b6bf-5eaa-497f-82be-3077c372915e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -155351,7 +155351,7 @@ } }, { - "id": "9709a631-5e10-4d32-8ab2-fb299e676ddd", + "id": "efdb93bc-190c-4ba8-9d15-2d03225b4415", "name": "Uploads source entitlements schema template", "request": { "name": "Uploads source entitlements schema template", @@ -155413,7 +155413,7 @@ "type": "text/plain" }, "key": "file", - "value": "mollit est culpa", + "value": "in veniam elit", "type": "text" } ] @@ -155421,7 +155421,7 @@ }, "response": [ { - "id": "9f3d44e6-b638-405e-9366-487891150a90", + "id": "4a16cbf3-b447-473d-ae1b-2e76a0ccb888", "name": "Successfully uploaded the file", "originalRequest": { "url": { @@ -155475,7 +155475,7 @@ "type": "text/plain" }, "key": "file", - "value": "mollit est culpa", + "value": "in veniam elit", "type": "text" } ] @@ -155494,7 +155494,7 @@ "_postman_previewlanguage": "json" }, { - "id": "02159e5d-c6dc-414d-8728-7591c191372b", + "id": "293445ff-656e-44fa-827a-14a1ccab79b5", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -155548,7 +155548,7 @@ "type": "text/plain" }, "key": "file", - "value": "mollit est culpa", + "value": "in veniam elit", "type": "text" } ] @@ -155567,7 +155567,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5c9b7bd6-fb87-43f4-98b9-952ce4463439", + "id": "0ba136d3-b01f-4ccc-afff-8847543db5df", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -155621,7 +155621,7 @@ "type": "text/plain" }, "key": "file", - "value": "mollit est culpa", + "value": "in veniam elit", "type": "text" } ] @@ -155640,7 +155640,7 @@ "_postman_previewlanguage": "json" }, { - "id": "98f67141-a781-40df-96ac-3074112edce5", + "id": "eb19b7b7-c626-4c48-9795-14f107e73c3d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -155694,7 +155694,7 @@ "type": "text/plain" }, "key": "file", - "value": "mollit est culpa", + "value": "in veniam elit", "type": "text" } ] @@ -155713,7 +155713,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f862b288-50dc-463b-b864-698dd6984555", + "id": "8cec1c64-de76-45fe-8606-9dbf27595e44", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -155767,7 +155767,7 @@ "type": "text/plain" }, "key": "file", - "value": "mollit est culpa", + "value": "in veniam elit", "type": "text" } ] @@ -155786,7 +155786,7 @@ "_postman_previewlanguage": "json" }, { - "id": "64fa02cf-7c78-47f8-aa03-50b902cae32e", + "id": "97058a02-9a92-41d5-ba72-1244282247ca", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -155840,7 +155840,7 @@ "type": "text/plain" }, "key": "file", - "value": "mollit est culpa", + "value": "in veniam elit", "type": "text" } ] @@ -155865,7 +155865,7 @@ } }, { - "id": "1dc60f30-dedc-4552-8b10-b6e0747d06c3", + "id": "1c30ccc7-a72f-4806-93b0-02881bc116fc", "name": "Upload connector file to source", "request": { "name": "Upload connector file to source", @@ -155916,7 +155916,7 @@ "type": "text/plain" }, "key": "file", - "value": "mollit est culpa", + "value": "in veniam elit", "type": "text" } ] @@ -155924,7 +155924,7 @@ }, "response": [ { - "id": "13609c42-5304-4300-8f96-1ee675ff5349", + "id": "21dc2c2f-7506-40ec-a346-9596510a66da", "name": "Uploaded the file successfully and sent all post-upload events", "originalRequest": { "url": { @@ -155967,7 +155967,7 @@ "type": "text/plain" }, "key": "file", - "value": "mollit est culpa", + "value": "in veniam elit", "type": "text" } ] @@ -155986,7 +155986,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3fc8e02f-28e8-4cc9-85db-0b15a7af0adf", + "id": "7fc7cee6-fd4c-42b6-8d71-de4c0a0c574d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -156029,7 +156029,7 @@ "type": "text/plain" }, "key": "file", - "value": "mollit est culpa", + "value": "in veniam elit", "type": "text" } ] @@ -156048,7 +156048,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b227c3b5-06f8-4ff8-b312-dea8018bc7fe", + "id": "77a41aa5-c8b8-481d-8f71-1e21fc0cb194", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -156091,7 +156091,7 @@ "type": "text/plain" }, "key": "file", - "value": "mollit est culpa", + "value": "in veniam elit", "type": "text" } ] @@ -156110,7 +156110,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d51bac7f-e37a-4143-8613-9b8619d42919", + "id": "272e0dde-874c-45f1-ba73-b93efd9a4ab7", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -156153,7 +156153,7 @@ "type": "text/plain" }, "key": "file", - "value": "mollit est culpa", + "value": "in veniam elit", "type": "text" } ] @@ -156172,7 +156172,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a7cd4c33-fcb4-4824-9533-5e48238bd79c", + "id": "b4bd4614-eb11-4817-8b4d-15358bd0d1e8", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -156215,7 +156215,7 @@ "type": "text/plain" }, "key": "file", - "value": "mollit est culpa", + "value": "in veniam elit", "type": "text" } ] @@ -156234,7 +156234,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6298f660-b238-458e-980b-ec1fdf966461", + "id": "b1f93ca3-a597-4ec5-9be3-1720b54588ba", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -156277,7 +156277,7 @@ "type": "text/plain" }, "key": "file", - "value": "mollit est culpa", + "value": "in veniam elit", "type": "text" } ] @@ -156308,7 +156308,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": "58996fc4-ebed-44e1-80ac-b979fb9a922e", + "id": "b5c8c75b-2eeb-4f49-83c6-e0451a5e5764", "name": "List Tagged Objects", "request": { "name": "List Tagged Objects", @@ -156374,7 +156374,7 @@ }, "response": [ { - "id": "fe6b0da4-0995-4c00-967c-79eff64e8c39", + "id": "61286ce6-78c1-404a-b5b6-9ab4a97859c1", "name": "List of all tagged objects.", "originalRequest": { "url": { @@ -156454,7 +156454,7 @@ "_postman_previewlanguage": "json" }, { - "id": "849bd23c-2238-4d67-9c42-70fa82c0c0ef", + "id": "8774fdc7-3260-47fa-b5fd-36b35356b6f4", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -156534,7 +156534,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d9287b5a-0820-4a99-b39c-d1fc1ef9736f", + "id": "c4ca7e92-6033-4ec8-a39a-361fc240f1ce", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -156614,7 +156614,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a52672e2-4214-41c8-9057-1516f37eee6e", + "id": "32a5ecec-c4ac-49cb-8e34-7c86e4511ff6", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -156694,7 +156694,7 @@ "_postman_previewlanguage": "json" }, { - "id": "36e41f37-00de-440d-9219-85043b04c53f", + "id": "f6351cce-cea5-4f20-81b5-f0df71cb12df", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -156774,7 +156774,7 @@ "_postman_previewlanguage": "json" }, { - "id": "890a7fee-ac8e-4c18-944c-93a596035215", + "id": "93597448-a2d5-45a1-b3e8-ce4a198d53cf", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -156860,7 +156860,7 @@ } }, { - "id": "9a026c0e-f17b-414e-b578-2b90ff504c62", + "id": "965558ae-c218-4c69-9178-0c367a7c4a7a", "name": "Add Tag to Object", "request": { "name": "Add Tag to Object", @@ -156902,7 +156902,7 @@ }, "response": [ { - "id": "2eaff644-46e2-49bf-95b4-a920463a9c8a", + "id": "76a4320a-a113-40a4-af41-50f2fc103c74", "name": "Created.", "originalRequest": { "url": { @@ -156948,7 +156948,7 @@ "_postman_previewlanguage": "text" }, { - "id": "5ffe6da6-9658-4096-8e6c-5d74fb159442", + "id": "e83aa454-8d0f-47f4-8854-e141eb14f7b3", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -157004,7 +157004,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7886568c-2e54-4807-93a9-f97dff7955e1", + "id": "876ee5ad-e326-4ea4-bd11-22417bbd6784", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -157060,7 +157060,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6f1d9289-f4c4-45b6-be62-3a749b7f2e2d", + "id": "b1493dc5-0efc-4a2b-9e7f-3ea7c6d2ef9c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -157116,7 +157116,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1b1f3053-8c32-448b-9595-948c699bf42c", + "id": "23c0cf39-561e-4702-bd13-d241ecd5f63e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -157172,7 +157172,7 @@ "_postman_previewlanguage": "json" }, { - "id": "38616b10-12d8-4740-84de-694426974f08", + "id": "5d8e2cdf-4636-4140-87dc-0f0bb55ef4fc", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -157234,7 +157234,7 @@ } }, { - "id": "46d233e4-acd6-4271-8cbe-7827a7218ad2", + "id": "b4ba2b2a-8276-4128-8329-b729ee9488e8", "name": "List Tagged Objects by Type", "request": { "name": "List Tagged Objects by Type", @@ -157312,7 +157312,7 @@ }, "response": [ { - "id": "f81892a0-e152-46a6-b1d8-5a9f2788ea2d", + "id": "cb120215-be77-4e8f-b7ce-1439a9d692de", "name": "List of all tagged objects for specified type.", "originalRequest": { "url": { @@ -157393,7 +157393,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0fd98b02-dda9-4bb8-812a-33e241fe864e", + "id": "aca41252-135d-4df1-be86-2362fdf4d06f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -157474,7 +157474,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d0f3667d-09ee-4bfa-a6f5-eead209e2e98", + "id": "dff9e684-3f52-418a-bebd-dd9e86b72532", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -157555,7 +157555,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d27c98bb-e6e0-4f6b-bd85-427b9b05e46b", + "id": "7302a4ef-5b9f-4101-b957-37978ae11331", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -157636,7 +157636,7 @@ "_postman_previewlanguage": "json" }, { - "id": "141ddca1-2dbf-496c-8866-b36cb17be79e", + "id": "5b63d0d7-cd0e-44b6-b2d4-e7fd10c4b115", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -157717,7 +157717,7 @@ "_postman_previewlanguage": "json" }, { - "id": "549028a8-f989-484e-a9bb-08dc91391d1b", + "id": "14b66cbd-daad-46a7-a3a0-d187ea77fb9f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -157804,7 +157804,7 @@ } }, { - "id": "9e89db6b-bd6d-46f1-8eda-e8bbd2777c1c", + "id": "3c0a4c55-c62c-42e4-b2d9-c8f9fcfb0adc", "name": "Get Tagged Object", "request": { "name": "Get Tagged Object", @@ -157856,7 +157856,7 @@ }, "response": [ { - "id": "2432952c-864e-45ce-a422-1801710c303c", + "id": "13660595-29fb-48b7-a064-41839ea4d793", "name": "Tagged object by type and ID.", "originalRequest": { "url": { @@ -157901,7 +157901,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1f646dac-c929-420b-bffd-211b0de52655", + "id": "2495527e-44c9-49cc-8e51-389a426e3e5c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -157946,7 +157946,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a7560d69-3f43-442b-a35f-86bf37525f83", + "id": "5ec45037-9223-4c69-b417-4599f22df62f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -157991,7 +157991,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e26da638-f065-479f-95e9-485e5733b2d5", + "id": "ac54b3fc-7dc2-4faf-9249-ed793b8f742d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -158036,7 +158036,7 @@ "_postman_previewlanguage": "json" }, { - "id": "93e13834-9eb1-42b6-84bc-0845d798c3b6", + "id": "4c859cf1-9350-4d95-8d24-d4ee6ee66669", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -158081,7 +158081,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c81fe251-dbb6-4dcd-b526-db02bb4130f2", + "id": "f5d5368a-15a2-4206-b4ee-9cb89b0c8470", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -158132,7 +158132,7 @@ } }, { - "id": "d685ffe2-32af-4141-93f3-9d63e62bccad", + "id": "25b8efa6-432c-4882-abcb-5740a459d533", "name": "Update Tagged Object", "request": { "name": "Update Tagged Object", @@ -158197,7 +158197,7 @@ }, "response": [ { - "id": "ff637cc6-ce03-4dbe-8745-a19df97056ec", + "id": "678c8c37-2c29-4d74-ab94-4f393637946b", "name": "Tagged object by type and ID.", "originalRequest": { "url": { @@ -158255,7 +158255,7 @@ "_postman_previewlanguage": "json" }, { - "id": "912be17a-1d3e-4f83-898c-e8001d02894c", + "id": "932c9c5f-061c-4944-ba2b-1d16307c8102", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -158313,7 +158313,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2c1b0925-18b9-409c-9063-90e65de7d8bb", + "id": "6e09a15f-56f8-48f4-8b18-bf304ca666b2", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -158371,7 +158371,7 @@ "_postman_previewlanguage": "json" }, { - "id": "31296100-990b-4ac0-b4e2-f80b584a5fa3", + "id": "b6d9fe87-c2de-4265-bdf6-f93553fbc2f0", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -158429,7 +158429,7 @@ "_postman_previewlanguage": "json" }, { - "id": "62aaccfa-d225-4509-8ea9-d2f0c9c180ba", + "id": "3b3fc7bf-b9ee-457d-9303-90bfac463721", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -158487,7 +158487,7 @@ "_postman_previewlanguage": "json" }, { - "id": "11dd9579-f1fb-4acb-897e-302319ff2132", + "id": "d76671d3-fde4-4e82-9bbe-a9021a7d54f3", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -158551,7 +158551,7 @@ } }, { - "id": "d14df44a-4a1c-46db-84fe-41ac70ae8420", + "id": "48ecdd3b-40c1-4867-853f-3a580d934c68", "name": "Delete Tagged Object", "request": { "name": "Delete Tagged Object", @@ -158603,7 +158603,7 @@ }, "response": [ { - "id": "5767a52b-8dec-434f-8198-c09b44cd9cd5", + "id": "a6495529-53ae-4eed-8056-1e5f5a6c9fb6", "name": "No content.", "originalRequest": { "url": { @@ -158638,7 +158638,7 @@ "_postman_previewlanguage": "text" }, { - "id": "ade1000c-9507-43e8-a7ad-d58b85e82cb7", + "id": "be2aca56-01d9-4c95-8f63-1ec61f4418f3", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -158683,7 +158683,7 @@ "_postman_previewlanguage": "json" }, { - "id": "69308e14-9552-47f0-9ae5-6d2c74a909c9", + "id": "9f5ba3b3-17eb-4826-89c5-a681e81b51c2", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -158728,7 +158728,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0349c4de-1682-4f64-92d8-6471d20286e7", + "id": "6d2c4e4a-8a99-453c-878a-a59729b335de", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -158773,7 +158773,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ad31e4d1-1ba1-43d8-abce-4b114c083696", + "id": "f02e05cf-b193-4179-b5fa-30c44e20f25f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -158818,7 +158818,7 @@ "_postman_previewlanguage": "json" }, { - "id": "042d6c27-f9d8-44f9-917b-7d83f2892528", + "id": "b227fbab-19d1-42ef-b356-d71f0a20c85a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -158869,7 +158869,7 @@ } }, { - "id": "b93e8dfa-a0ec-42d5-a3a8-a74437e4e7a2", + "id": "5a85ce83-253c-454f-b3a4-2174c190c05f", "name": "Tag Multiple Objects", "request": { "name": "Tag Multiple Objects", @@ -158912,7 +158912,7 @@ }, "response": [ { - "id": "20bf02e3-0f89-4d2a-86c4-47185b4dc05c", + "id": "a384705c-b682-452c-a90b-9c2cebaba5e9", "name": "Request succeeded.", "originalRequest": { "url": { @@ -158969,7 +158969,7 @@ "_postman_previewlanguage": "json" }, { - "id": "784fcd86-ae69-4f23-b939-5e7040c9fe16", + "id": "f5b2672b-e2f8-49c1-ade0-59e806a12602", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -159026,7 +159026,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d0e99149-294a-4bf1-af7d-a6ab93ab524f", + "id": "a86be4ab-d127-48d5-a948-d08da87d1aa2", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -159083,7 +159083,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e20e9a99-0bfd-4b4a-9dac-2e9c2dba0c16", + "id": "3ca1155f-94d1-418e-906d-d165c1cc80bb", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -159140,7 +159140,7 @@ "_postman_previewlanguage": "json" }, { - "id": "100d491c-9ed4-4df2-a3e7-994791521dda", + "id": "7fcd3c2a-54c4-4b6f-91ab-7015e176d18b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -159197,7 +159197,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e14abe03-f62f-4b95-b875-2d65c0ef4bbb", + "id": "391812b0-996d-494a-9217-8203a68f4f27", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -159260,7 +159260,7 @@ } }, { - "id": "ff0cb937-856c-46e1-895a-3e9852084444", + "id": "b2d263ff-2531-4040-a188-646349c1e7f6", "name": "Remove Tags from Multiple Objects", "request": { "name": "Remove Tags from Multiple Objects", @@ -159303,7 +159303,7 @@ }, "response": [ { - "id": "b9a9750b-4781-4b6f-b8e8-503cb7a8d7b5", + "id": "ba00c66e-e87f-453b-b9b1-582ada812f48", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -159350,7 +159350,7 @@ "_postman_previewlanguage": "text" }, { - "id": "3028de12-cf84-436c-a7cb-0995d7bfb526", + "id": "b29f4625-dc11-45a2-90bd-14b710ee6271", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -159407,7 +159407,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c51fd864-21a5-4427-8b06-95a603673efe", + "id": "67da755d-dca4-413a-8e18-484f8f152133", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -159464,7 +159464,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ece9dff4-623e-4c68-a843-f73d1a08c057", + "id": "b177866c-1354-413b-af9c-b937057fe693", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -159521,7 +159521,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f78e5ef3-cf56-4c83-8f68-23e984080dfd", + "id": "95014d3d-f1df-4694-93f9-07638c95ab19", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -159578,7 +159578,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3a3694a8-dd72-4e36-a489-b4ab8bfa15f0", + "id": "f19ce8db-8b7a-4d1c-a77f-d4a0b49ba26e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -159647,7 +159647,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": "f57bc50c-d4bc-48ec-a401-4764075f520f", + "id": "f577c752-71a1-4b01-bff1-8fb0aaecabae", "name": "List transforms", "request": { "name": "List transforms", @@ -159722,7 +159722,7 @@ }, "response": [ { - "id": "42065664-2aa6-42b9-af3f-55e4eee9e30a", + "id": "64d773b4-5900-46a4-a9e6-e16525fbacb5", "name": "A list of transforms matching the given criteria.", "originalRequest": { "url": { @@ -159811,7 +159811,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b4ceccf4-63ae-4997-b6ce-ecbc30d6e1fe", + "id": "e9822d7a-dc70-4f55-ae72-b318c67733f2", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -159900,7 +159900,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9b5291ec-b4cc-4a78-bf57-c45aa063e8bf", + "id": "c52d4915-3c58-4c14-9f8c-bb012ecc9c25", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -159989,7 +159989,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e7506145-9e92-4a9d-a4c5-0ef69d08aced", + "id": "4678b09c-a811-4a21-b393-c17a7031c204", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -160078,7 +160078,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5ab16284-0e91-410d-8c94-5cd79914ef35", + "id": "92c0467c-10c4-4808-b842-bdaeafa440be", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -160167,7 +160167,7 @@ "_postman_previewlanguage": "json" }, { - "id": "21869a06-59c7-43e0-97d1-727076e95548", + "id": "17547f44-1810-465c-8036-ee20ec70c482", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -160256,7 +160256,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b8f70b82-4c94-408b-9e57-c7de36aa28a5", + "id": "8d20a7ba-795c-43b0-9850-f039ba152213", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -160351,7 +160351,7 @@ } }, { - "id": "43c9e666-8cd9-4a36-8ace-5bc598ab9db2", + "id": "cfcbcd00-edbe-4171-a62a-927bca120dc2", "name": "Create transform", "request": { "name": "Create transform", @@ -160393,7 +160393,7 @@ }, "response": [ { - "id": "227359d5-8390-4559-beca-e4b3fa1a4105", + "id": "44a89e4f-7ec1-4f70-b982-4bb54cea306b", "name": "Indicates the transform was successfully created and returns its representation.", "originalRequest": { "url": { @@ -160449,7 +160449,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ded66886-d880-44b6-8203-a9346aa98295", + "id": "cb652bf8-cc3b-4313-bce8-b68cd8b2fbe5", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -160505,7 +160505,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8c5f7ba6-0a21-46cd-9050-0ab477b18009", + "id": "2c59f213-b16c-478d-9af6-3423648be519", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -160561,7 +160561,7 @@ "_postman_previewlanguage": "json" }, { - "id": "901cc611-0e5e-4d7c-9e84-238662f36d47", + "id": "aa544de0-0375-4039-a3a3-640369a0f55d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -160617,7 +160617,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c9aff941-c537-47f8-9bd3-3f6c8c3b3aa8", + "id": "a089e183-ba42-4930-855d-6a60bc4a304a", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -160673,7 +160673,7 @@ "_postman_previewlanguage": "json" }, { - "id": "773aaf3a-779c-433f-8f03-9ca3ceb2728f", + "id": "02fe3013-cc1c-4ee5-9a13-9db5918bc70c", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -160729,7 +160729,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4d0475a5-29f4-4d1a-8a46-0cc59f10fe24", + "id": "a4d03fb9-5708-47b7-91b5-323eea58929c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -160791,7 +160791,7 @@ } }, { - "id": "8b4b613a-4770-4396-8ca8-e28630b392ba", + "id": "6ff7e519-5bc1-41bb-9b39-1386f98fee4f", "name": "Transform by ID", "request": { "name": "Transform by ID", @@ -160832,7 +160832,7 @@ }, "response": [ { - "id": "8ad4a700-c7ec-4e10-8dd2-43dd6c62973f", + "id": "86a3a2a5-df27-4f92-958c-4245a8f851bb", "name": "Transform with the given ID", "originalRequest": { "url": { @@ -160876,7 +160876,7 @@ "_postman_previewlanguage": "json" }, { - "id": "54df6bf9-f6a8-4c39-8fd5-fe957142e050", + "id": "be9ee286-037f-4d4b-985d-014407b53634", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -160920,7 +160920,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5c031320-f518-4383-bbe9-7c67c4b15adf", + "id": "1f2a91b0-6bbe-4099-b740-4949570883de", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -160964,7 +160964,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7cd7769e-c20f-4d2a-97dd-1da1adf5c8b5", + "id": "72a936f2-c09c-4c97-8e26-b062b2574666", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -161008,7 +161008,7 @@ "_postman_previewlanguage": "json" }, { - "id": "25247eed-ee90-4b25-b91a-080d28d940d6", + "id": "2ba24ecb-39e1-4ef4-a29b-fc0776325748", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -161052,7 +161052,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4f49fd61-b122-434d-9963-11a0d3edce95", + "id": "f1c5bc2d-d874-4d89-b27c-e4f4b8de621d", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -161096,7 +161096,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cf735be7-8fc7-4eca-9bdd-24169aaa5810", + "id": "36a2386b-d006-4cb6-859a-28098f729228", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -161146,7 +161146,7 @@ } }, { - "id": "2e4bb95e-4c47-4f8b-b011-082c5e507c7e", + "id": "55da946e-c372-4cc5-bb2b-8ed8fa221447", "name": "Update a transform", "request": { "name": "Update a transform", @@ -161200,7 +161200,7 @@ }, "response": [ { - "id": "aa57deae-ae87-4c10-b63e-2d5e9a131e47", + "id": "6186ee70-f805-4f20-8855-a98561a855ee", "name": "Indicates the transform was successfully updated and returns its new representation.", "originalRequest": { "url": { @@ -161257,7 +161257,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ebfe271d-dd33-4e3d-9fd5-9d249fec03e7", + "id": "04680505-9edd-4d2d-89a9-d8570202607e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -161314,7 +161314,7 @@ "_postman_previewlanguage": "json" }, { - "id": "28cfe8db-b76e-4307-b9a0-dd72b115d577", + "id": "e786bede-cb52-44ff-bc12-cc4974aece68", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -161371,7 +161371,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8f96e1ba-4245-4d55-84d9-02a015551ad4", + "id": "c19118a8-c8f4-4719-8a6a-9bbe3048c46a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -161428,7 +161428,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7e011ca5-3087-4f9d-9f25-02984e12d1af", + "id": "31df085c-b59c-450d-a0e4-6d729106d780", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -161485,7 +161485,7 @@ "_postman_previewlanguage": "json" }, { - "id": "260a5fb2-0749-4e99-b985-535caf604db4", + "id": "e9ce78e2-e9e7-4a2c-a11b-6a24240eb6bd", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -161542,7 +161542,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5e25bc1e-452d-4a22-97b8-914b2ca188f7", + "id": "c18cc2c5-b148-4910-889f-f9a46aefdb15", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -161605,7 +161605,7 @@ } }, { - "id": "d0badd01-f0ef-4746-9fbd-4e260fbff3ca", + "id": "e1c4b6d9-9422-4746-bbe6-145ad9fbc5ab", "name": "Delete a transform", "request": { "name": "Delete a transform", @@ -161646,7 +161646,7 @@ }, "response": [ { - "id": "9f55aa75-68e1-4927-8544-a5bd437f9c56", + "id": "29b91924-f988-438d-8ba7-8d821ebb93af", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -161680,7 +161680,7 @@ "_postman_previewlanguage": "text" }, { - "id": "2b3eddb3-0e03-44f5-8c1a-754a7c07cec0", + "id": "1d27b028-5180-47f4-abe3-edfb2919a244", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -161724,7 +161724,7 @@ "_postman_previewlanguage": "json" }, { - "id": "26343146-5e75-4f9a-8e96-b07b3664899b", + "id": "056f4887-6730-42e0-a98a-880eb8bdc23a", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -161768,7 +161768,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a5334b52-3ce7-4824-9a29-ca7a14904202", + "id": "6b2c383c-fba6-4996-ab95-11294d07bcd6", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -161812,7 +161812,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2ae67bec-c1da-4efa-b21e-d2a96f67bf24", + "id": "7d72b91e-52ac-4eb8-b494-44cfbd30d4fd", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -161856,7 +161856,7 @@ "_postman_previewlanguage": "json" }, { - "id": "35d4fee0-b20d-4b80-b752-b382f6ec47d1", + "id": "e319d2a2-8667-42fe-9b5b-731c44dda3c7", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -161900,7 +161900,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b8b0f9e4-b616-4088-8e6f-70e4a9fbe25d", + "id": "af62db5f-49f7-4b15-8a6f-b57ee56ca2fb", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -161956,7 +161956,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": "c278e476-f9c3-4156-9a4b-26fa49d023a3", + "id": "631b160d-95b4-480b-aa11-58a4064e6f41", "name": "List Work Items", "request": { "name": "List Work Items", @@ -162022,7 +162022,7 @@ }, "response": [ { - "id": "e9f6ebee-0537-43f2-a096-7c11bd693375", + "id": "096d2c6b-52be-4ecb-9478-062555c56fd0", "name": "List of work items", "originalRequest": { "url": { @@ -162102,7 +162102,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3f7353ac-8f98-4ed4-ab4b-c962e498983a", + "id": "1d600706-1eda-4f48-8421-f8a51c6e81c4", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -162182,7 +162182,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b5d5383e-30d1-42a1-9f60-dc1e57c3cbf0", + "id": "7e93ccce-18b3-473c-848c-f91b077d4d3f", "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": "d61f2c4e-71ba-456f-b1b0-c5382d1fbc7c", + "id": "73ea0c40-8bc1-40d8-a3d4-2c86d510c3a5", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -162342,7 +162342,7 @@ "_postman_previewlanguage": "json" }, { - "id": "425eb999-0460-4c6a-80d9-e199387b6c0f", + "id": "60973749-7807-4b43-9ff7-793e2171ce06", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -162422,7 +162422,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dff7c085-cc2f-4c5a-9a0e-e053f96ef44c", + "id": "fd3deb6c-eb29-48f5-bd9c-3f2b4d64b4a6", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -162508,7 +162508,7 @@ } }, { - "id": "e8bd89e7-c97b-4acb-b996-2dfb5591096e", + "id": "66522505-1da6-466c-852d-9718098d7b68", "name": "Completed Work Items", "request": { "name": "Completed Work Items", @@ -162575,7 +162575,7 @@ }, "response": [ { - "id": "5b1994b3-6d5e-4aca-b48f-a450644f758d", + "id": "1d0e530a-a0d9-49e6-b125-01b2ea278130", "name": "List of completed work items.", "originalRequest": { "url": { @@ -162656,7 +162656,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2e38f77d-9f8f-4c42-a65a-cd3cff7f9c69", + "id": "a8e9a2f0-7b35-4c2a-9051-da6674d4096d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -162737,7 +162737,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f90a99b4-8dd7-42c1-bea3-12e2f1226e73", + "id": "45073891-d997-419d-ab14-d4488f38dfd4", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -162818,7 +162818,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6c5ebb03-8833-4a5c-878e-e1dc4ed65379", + "id": "cccbe22a-c1a7-4592-82df-5523241c3ddf", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -162899,7 +162899,7 @@ "_postman_previewlanguage": "json" }, { - "id": "811d716c-4a9b-4f04-86cd-2b3690a29249", + "id": "14117847-f383-40d6-a4e7-c963a8dc60dd", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -162980,7 +162980,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eab842c0-3d33-442c-b82f-1a637ab39ff2", + "id": "05f71a1f-5ee8-496c-abe9-d0dc80ebc9d9", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -163067,7 +163067,7 @@ } }, { - "id": "731554aa-ca16-4eb8-a191-0a9cbeb21746", + "id": "2d7f9a99-cdc6-40f7-999f-13716988676a", "name": "Count Work Items", "request": { "name": "Count Work Items", @@ -163107,7 +163107,7 @@ }, "response": [ { - "id": "08ea4aad-ac10-4ad9-93b8-10122d2cb5de", + "id": "a1204f18-f98b-4928-ae08-c50948f28b30", "name": "List of work items", "originalRequest": { "url": { @@ -163161,7 +163161,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c025a4b9-2047-4e86-befb-bc4514b24b7e", + "id": "964332b1-d868-4358-843a-bc3dec363901", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -163215,7 +163215,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cee5239e-a42e-45fb-9484-bfbb7dd63a12", + "id": "2cbdb1b2-8604-4d52-98fb-6ec80c7926ee", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -163269,7 +163269,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a4ef601d-f428-48e6-af9d-9aacd2335ae0", + "id": "9b5dd563-fd9e-450a-a90a-465142bff782", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -163323,7 +163323,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a766cd31-f128-4373-90ea-d48f8306e42b", + "id": "3c3260b9-8281-4deb-8142-4dac1c4c8c55", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -163377,7 +163377,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8b9a8472-9fad-4c37-b8d0-610350306155", + "id": "ab44f386-aa2c-43b7-81c2-27f3efd78fe8", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -163437,7 +163437,7 @@ } }, { - "id": "08fa315b-bc91-477f-b794-9f88f6989ac5", + "id": "4da95eb7-e942-4e62-881b-f2f97d0ecc69", "name": "Count Completed Work Items", "request": { "name": "Count Completed Work Items", @@ -163478,7 +163478,7 @@ }, "response": [ { - "id": "6ac0f2a0-6d9b-4db9-9e70-fe58db96fc1e", + "id": "9d8aa174-2a3b-4db1-8964-00d956084fce", "name": "List of work items", "originalRequest": { "url": { @@ -163533,7 +163533,7 @@ "_postman_previewlanguage": "json" }, { - "id": "31a0946d-623e-4299-9896-ebe37b187af6", + "id": "42cf02d3-5236-492e-b730-ca760a7a4176", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -163588,7 +163588,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a5810f71-4c68-407a-b045-365468623bae", + "id": "67b0a508-8c6a-4a57-ba33-d17341724524", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -163643,7 +163643,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2c791744-86fc-4a0e-a5de-a2745e694a48", + "id": "fce68853-1d81-4365-931e-b1c0e2a97785", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -163698,7 +163698,7 @@ "_postman_previewlanguage": "json" }, { - "id": "62abb3c1-cd7a-4134-8463-56afcb7cc0f2", + "id": "212263df-91fa-4fe0-b3fe-a82b09d69f47", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -163753,7 +163753,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dcf4146f-7f70-4bf9-a32b-0d5cdcfdddfc", + "id": "6ec2307d-181a-415c-a8f8-044d0f332888", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -163814,7 +163814,7 @@ } }, { - "id": "0b5a34dc-367a-4211-94bd-ac70853781ef", + "id": "d8a4a1bc-8288-4c29-a3f4-6dadadfb8f41", "name": "Work Items Summary", "request": { "name": "Work Items Summary", @@ -163854,7 +163854,7 @@ }, "response": [ { - "id": "a391b7ab-726c-478f-96cf-d6e9670f2716", + "id": "7286d87c-890f-43d7-8043-39374c56421c", "name": "List of work items", "originalRequest": { "url": { @@ -163908,7 +163908,7 @@ "_postman_previewlanguage": "json" }, { - "id": "87d386cd-2247-46bd-8bd8-e7a804b0e7ff", + "id": "a9553baa-2fe0-44ad-9c08-4e8bf5429e59", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -163962,7 +163962,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4b605a4a-f81d-4b16-8e74-a209bfab1f61", + "id": "02749204-211f-45cd-8656-922c4b96d161", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -164016,7 +164016,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7b7693b9-fa96-49f3-86b3-c36adbf33849", + "id": "1b5ae58d-21f0-41ab-a14a-0804684a3893", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -164070,7 +164070,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9259727d-1a90-4043-85ae-315b940e8f65", + "id": "7b9c7187-bbe0-4f2d-b210-3e58e5c58c00", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -164124,7 +164124,7 @@ "_postman_previewlanguage": "json" }, { - "id": "73ea2dd1-c897-413e-8067-64bed78aff90", + "id": "6cf255e0-4b14-46b2-a9fe-22457542c616", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -164184,7 +164184,7 @@ } }, { - "id": "05b1b986-1880-4b05-a8b0-b451512b1056", + "id": "747f2a17-f710-482a-89c5-8b8e261cfcb7", "name": "Get a Work Item", "request": { "name": "Get a Work Item", @@ -164225,7 +164225,7 @@ }, "response": [ { - "id": "36735534-e24b-4a11-957d-ef407e987b8b", + "id": "4fb78106-d2bc-44ab-a608-405f636a23c8", "name": "The work item with the given ID.", "originalRequest": { "url": { @@ -164269,7 +164269,7 @@ "_postman_previewlanguage": "json" }, { - "id": "016782f2-b47b-4b5e-ac12-649ecdbeaad7", + "id": "61ca7398-f797-4639-894c-fab9bc8b6a1e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -164313,7 +164313,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e45fbd79-884a-4b57-b3bc-048c11e25094", + "id": "a5be4104-87f9-4fb5-9dfd-e60b59239c82", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -164357,7 +164357,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1116f52a-a606-46a6-ac9a-fad05734c9a9", + "id": "66043ea5-b3bb-4e42-b668-67126e7ed5fb", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -164401,7 +164401,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5932b85d-d7a0-45e0-ba26-ffa8831f237c", + "id": "06059e67-8ed4-45e0-9a0c-a5a266fae8cf", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -164445,7 +164445,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5bd2043b-0b99-443b-9cc4-98da7270db3d", + "id": "ea1d598b-52c6-4103-82d1-7bc42dcdf4cf", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -164495,7 +164495,7 @@ } }, { - "id": "d93d7c5c-4340-41e6-9da4-92696fb4910e", + "id": "341248a8-1c04-4e66-9c10-3aa55d45c305", "name": "Complete a Work Item", "request": { "name": "Complete a Work Item", @@ -164536,7 +164536,7 @@ }, "response": [ { - "id": "1b5db554-d630-4da7-be87-676bde6cca3e", + "id": "f727c6a2-0a5d-4961-b7cf-b245218bc9fe", "name": "A WorkItems object", "originalRequest": { "url": { @@ -164580,7 +164580,7 @@ "_postman_previewlanguage": "json" }, { - "id": "683e1a41-13d6-4a42-bc65-0db84b624711", + "id": "6623dab8-fa87-490d-ac9f-52b220089320", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -164624,7 +164624,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f87d880c-0652-4a91-9c5c-ea2f2b40c4d9", + "id": "61397608-725c-45f5-822d-1bd8d0139a1c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -164668,7 +164668,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fbaee7bd-ea4a-479a-bca0-a2ed01830e27", + "id": "6b34771a-820c-4546-a2ad-d673b92480b5", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -164712,7 +164712,7 @@ "_postman_previewlanguage": "json" }, { - "id": "58c12d2f-7f99-4c0a-8f9a-2902d274516d", + "id": "01db959c-9c15-452b-9785-7d8534f8236f", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -164756,7 +164756,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fe9ef89b-d209-4d7a-acc1-624be02392fa", + "id": "0591b2f8-ac57-43b1-a610-fb23a5d44583", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -164800,7 +164800,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a18cd8b6-ca44-4b94-8ffb-be28e43857aa", + "id": "8d5110f6-7346-4092-8f95-89248db891db", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -164850,7 +164850,7 @@ } }, { - "id": "a77f03bb-af21-4e7e-99a4-6770d3826996", + "id": "b7b6a5a5-6cf2-40db-8062-31f52882edf8", "name": "Approve an Approval Item", "request": { "name": "Approve an Approval Item", @@ -164903,7 +164903,7 @@ }, "response": [ { - "id": "0db68b37-b7c3-49f5-ae11-fa5197e0a732", + "id": "7eb56781-1215-4af1-bdde-3e205b66c02b", "name": "A work items details object.", "originalRequest": { "url": { @@ -164949,7 +164949,7 @@ "_postman_previewlanguage": "json" }, { - "id": "186e6153-5900-4eef-bcfb-46937916e351", + "id": "a6bce81f-f63a-4eeb-817f-9bdf9a5d51c0", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -164995,7 +164995,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e1e4f772-178e-486f-bbcc-8f9545e26b8e", + "id": "6c7d2967-f62e-4361-829f-c1c071c9404f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -165041,7 +165041,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1ff79584-86fa-408b-94ae-b8e9d2dfa16e", + "id": "d5beaeed-069f-46c3-9a0e-45a4696cb92a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -165087,7 +165087,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2377bd6e-87db-4667-ab89-7016de922403", + "id": "873f2d72-43e5-4630-a1bf-592181978650", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -165133,7 +165133,7 @@ "_postman_previewlanguage": "json" }, { - "id": "50bc683d-80ff-4a2d-a682-833730d93f9d", + "id": "c8aafbd8-bc54-4740-8a0c-b50fe7c6a364", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -165179,7 +165179,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a7d37c1a-cf1c-409e-abb2-b1b18bf83e31", + "id": "ffbaf067-085f-4bd5-bf25-068c6aaab7fc", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -165231,7 +165231,7 @@ } }, { - "id": "777607ef-a1ff-4b9a-8560-ba9a93cf4df0", + "id": "0b82b92d-0478-4a4d-ae50-4fb57835fa1a", "name": "Reject an Approval Item", "request": { "name": "Reject an Approval Item", @@ -165284,7 +165284,7 @@ }, "response": [ { - "id": "59294b58-ee21-435b-b8be-f7a70beffc35", + "id": "30294a64-45ea-48d8-9506-525d3acf9401", "name": "A work items details object.", "originalRequest": { "url": { @@ -165330,7 +165330,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bd9abe54-b865-49f5-ac5f-54d0c4ce5a76", + "id": "3a6bf354-a68b-49ad-9dab-df0d50765d92", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -165376,7 +165376,7 @@ "_postman_previewlanguage": "json" }, { - "id": "031027d8-b319-4efb-a4ce-91347412bfd1", + "id": "554ed242-664d-4316-ae16-f419239bf5e1", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -165422,7 +165422,7 @@ "_postman_previewlanguage": "json" }, { - "id": "68e8325a-ea89-40de-9e42-5925b8136ec0", + "id": "0fa22821-45fb-4011-bfa7-88f440eccaa4", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -165468,7 +165468,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cfd34c32-1ade-421c-800d-3e004e3714a0", + "id": "0f58387c-b1d4-4e55-8ebe-d90b805124d2", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -165514,7 +165514,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2bb2e37a-9687-4629-bf20-24079dc7e95a", + "id": "e22c47f8-357c-499e-afa8-c90806d9bfde", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -165560,7 +165560,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f5d0fc29-377e-4bc5-b9e4-9de1d499371f", + "id": "deddf131-4d80-4c71-adfc-af05ee186388", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -165612,7 +165612,7 @@ } }, { - "id": "14c39fa2-70c9-4b24-8deb-0465b0b40945", + "id": "8a8b858a-667f-414c-9cb7-2d8fbb92c4a1", "name": "Bulk approve Approval Items", "request": { "name": "Bulk approve Approval Items", @@ -165654,7 +165654,7 @@ }, "response": [ { - "id": "2d425870-a106-4a18-82e4-75579d2dd9df", + "id": "71ab7d6a-9cf7-4dc3-9506-758efa043bee", "name": "A work items details object.", "originalRequest": { "url": { @@ -165699,7 +165699,7 @@ "_postman_previewlanguage": "json" }, { - "id": "429c3ba2-cdeb-4b02-89d6-a34675735cff", + "id": "7afb09a8-5576-43ed-83e6-5b52c26d6986", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -165744,7 +165744,7 @@ "_postman_previewlanguage": "json" }, { - "id": "781f26b9-1d22-4435-bedc-17dda52954ef", + "id": "3d77a434-6589-498b-a1b8-c46126b795e6", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -165789,7 +165789,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2b16c1da-729a-42c7-9cb3-3095b08f87c3", + "id": "48ce8c4a-b3b6-4f2e-888c-ae950ad8ca37", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -165834,7 +165834,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dd028147-714a-48d7-9802-7e53547d105d", + "id": "20b55a62-eacf-4829-bbac-38c49dc04ff4", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -165879,7 +165879,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7835ef56-910a-4757-ad78-9ab3f39239b8", + "id": "4fe714ca-5dd1-4ba0-849c-07fdfc5caaa3", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -165924,7 +165924,7 @@ "_postman_previewlanguage": "json" }, { - "id": "666d4b14-59c6-4529-9859-29b50849a47e", + "id": "5b536a41-7865-4375-adc2-18a37d0bb9fc", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -165975,7 +165975,7 @@ } }, { - "id": "bcc9d079-2c93-41cd-96cf-274a4a0e083e", + "id": "7d7f5ac3-fc4f-4ed4-96c4-e3cc72b68cf4", "name": "Bulk reject Approval Items", "request": { "name": "Bulk reject Approval Items", @@ -166017,7 +166017,7 @@ }, "response": [ { - "id": "531278ff-9e3d-47ea-b09d-aae10a897d9e", + "id": "80dc8689-8bf6-4264-bf00-dffdb3591e43", "name": "A work items details object.", "originalRequest": { "url": { @@ -166062,7 +166062,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2e09bfd7-8cf3-4caf-af65-3eeac76dfda9", + "id": "913a3011-5581-42bf-a8ff-73e09f99419e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -166107,7 +166107,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5fe6febf-d349-4c3b-bd9c-62ad4a753d17", + "id": "a884ecbe-646f-487d-963d-7e698c2bcd14", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -166152,7 +166152,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e8c30397-df21-46e3-b6a8-8a46d71c3339", + "id": "be031f53-cb05-4958-87d0-1fa6637da2eb", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -166197,7 +166197,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7494ad4f-80a0-4b38-bb54-bc36e8ad75ea", + "id": "f6395641-f2b5-4be1-a382-8787bd71ff70", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -166242,7 +166242,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6bf35166-c2c3-472c-aef4-e43d8d75eccb", + "id": "c2fd758d-949c-4842-8d3b-c84eaaa20692", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -166287,7 +166287,7 @@ "_postman_previewlanguage": "json" }, { - "id": "79d2d08a-3343-4bf3-ab08-12589cbc62b0", + "id": "8017cab3-56f3-4ff1-bbcd-4488065e05da", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -166338,7 +166338,7 @@ } }, { - "id": "30467a8e-b602-4d40-b16b-a7468ea49939", + "id": "b4570d22-8723-40d1-a082-00ef333abdd2", "name": "Submit Account Selections", "request": { "name": "Submit Account Selections", @@ -166393,7 +166393,7 @@ }, "response": [ { - "id": "913392b8-be8c-4c53-932f-3f80b25c10d9", + "id": "f032e991-1b54-4aef-b9fe-ae5a2a661d3a", "name": "A work items details object.", "originalRequest": { "url": { @@ -166451,7 +166451,7 @@ "_postman_previewlanguage": "json" }, { - "id": "63e53be0-3ee0-41b0-9868-da4724f4ce2b", + "id": "defa1d26-acbd-4a64-85d1-83a872fde000", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -166509,7 +166509,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b7d2daa9-387b-4397-930b-2432d90394fd", + "id": "6c2eaf35-5ee0-4b6b-a65f-beff5a97a564", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -166567,7 +166567,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9e6557c4-6065-4241-9e1c-1c26f7ef86c6", + "id": "6eda9b7b-8a72-435c-81d7-33ebbe8313e0", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -166625,7 +166625,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b5e22472-886b-43bd-a42c-da0ea26820b5", + "id": "68c06eef-810c-480f-9503-f77ed3f41f28", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -166683,7 +166683,7 @@ "_postman_previewlanguage": "json" }, { - "id": "18d93ac4-1c72-480c-a965-f10fd0094e02", + "id": "67bb5b47-eefb-4f2d-bf7a-9aa6ca4a2741", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -166741,7 +166741,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a9a8ef74-8dfb-4a81-9678-3c747bbc8731", + "id": "314a95c9-2a73-4243-b215-a88df61555e7", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -166811,7 +166811,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": "665f2415-3b1c-4e09-a75c-aed6bdf30ea3", + "id": "08772e58-8451-47ae-9201-61db294d790d", "name": "List Workflows", "request": { "name": "List Workflows", @@ -166840,7 +166840,7 @@ }, "response": [ { - "id": "bc5b9b98-90dc-48b0-a633-210b1bf09167", + "id": "d489d41f-a007-4dac-861c-6af811c3fdca", "name": "List of workflows", "originalRequest": { "url": { @@ -166878,12 +166878,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 \"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 },\n \"displayName\": \"cons\"\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 \"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 },\n \"displayName\": \"dolore cillum aliqua\"\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 \"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 },\n \"displayName\": \"laboris proident et in eu\"\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 \"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 },\n \"displayName\": \"proident enim pariatur\"\n }\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "eda36394-8b18-45ac-8f73-e1bd48cfd264", + "id": "bd27a844-12cc-4dcf-81d1-e86cf22ba22f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -166926,7 +166926,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0248c11f-f332-4dd6-b447-fc966c08e1a0", + "id": "fa523887-3a0b-4c97-b0c1-7a065bd3adcd", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -166969,7 +166969,7 @@ "_postman_previewlanguage": "json" }, { - "id": "928a4b76-30d5-41df-afec-5a685b745326", + "id": "3b41296c-d1a9-4ece-bc99-2ea69c2e6022", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -167012,7 +167012,7 @@ "_postman_previewlanguage": "json" }, { - "id": "87c48fb3-6535-44d2-9880-87c9ac912895", + "id": "dc38ef2b-80ca-4262-a2c7-c3c002fe29ef", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -167055,7 +167055,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3ea99a08-0de1-470c-9024-8fb05f3af0bc", + "id": "680f6a5d-e598-4b83-b441-cfe44351a296", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -167104,7 +167104,7 @@ } }, { - "id": "32677ace-311e-4198-abba-b68216764ffc", + "id": "c421525b-b0cd-4f1d-af41-529c78fb9146", "name": "Get Workflow By Id", "request": { "name": "Get Workflow By Id", @@ -167145,7 +167145,7 @@ }, "response": [ { - "id": "8b782005-c010-4508-8c4b-40c2043c3783", + "id": "dbb4fa8b-f5e4-4a20-a04f-99a406a21fa5", "name": "The workflow object", "originalRequest": { "url": { @@ -167184,12 +167184,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 \"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 },\n \"displayName\": \"labore lab\"\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 \"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 },\n \"displayName\": \"ex voluptate Lorem non eiusmod\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "fd69f956-3d4f-4cd3-b98c-7d24e69729d6", + "id": "fdadac92-ef14-4392-85a7-79f27e523417", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -167233,7 +167233,7 @@ "_postman_previewlanguage": "json" }, { - "id": "158e87a4-a7b3-45b6-83e8-eb4dc5e6aa6c", + "id": "9ceb4a3b-0b27-4118-ba2b-ff6d10f71fce", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -167277,7 +167277,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1000750d-ddff-4a4f-8e35-35db221e3dba", + "id": "000080b7-2626-4094-bd75-8a02eed712cb", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -167321,7 +167321,7 @@ "_postman_previewlanguage": "json" }, { - "id": "73a4c631-7e58-4c76-9f93-a4df0e704a19", + "id": "cc5ed5c9-23c1-4381-b271-178afac9f11a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -167365,7 +167365,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d6ae2c5c-f229-4ae1-bde2-b8143e402927", + "id": "eb723c4e-c30b-4d22-8f55-fbb4fa3ac400", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -167415,7 +167415,7 @@ } }, { - "id": "cde8e9a4-40b4-44cd-b8eb-fc72c3fb550b", + "id": "6f061ec6-578b-4f38-90e2-6eb2ebb24b9f", "name": "Update Workflow", "request": { "name": "Update Workflow", @@ -167458,7 +167458,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 },\n \"displayName\": \"est sint off\"\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 },\n \"displayName\": \"est\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -167469,7 +167469,7 @@ }, "response": [ { - "id": "e862b7ab-36f7-48ba-a290-a72120517463", + "id": "27fd5276-1213-4c24-ae7f-291fd8c6600c", "name": "The Workflow object", "originalRequest": { "url": { @@ -167504,7 +167504,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 },\n \"displayName\": \"est sint off\"\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 },\n \"displayName\": \"est\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -167521,12 +167521,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 \"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 },\n \"displayName\": \"labore lab\"\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 \"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 },\n \"displayName\": \"ex voluptate Lorem non eiusmod\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "9cfe69a2-3928-44b5-a319-91ad05eabcb2", + "id": "38c3b968-b734-46a1-a847-932075a89ad3", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -167561,7 +167561,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 },\n \"displayName\": \"est sint off\"\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 },\n \"displayName\": \"est\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -167583,7 +167583,7 @@ "_postman_previewlanguage": "json" }, { - "id": "91d48fd2-bfb7-4450-9854-a34ed9567c87", + "id": "cc568a99-52b4-4259-a8bf-d00020caa3c8", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -167618,7 +167618,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 },\n \"displayName\": \"est sint off\"\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 },\n \"displayName\": \"est\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -167640,7 +167640,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b347d7b8-27f0-440e-92ca-41f351a8f677", + "id": "14a7979a-53d0-4432-93bd-4fefac35f5d2", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -167675,7 +167675,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 },\n \"displayName\": \"est sint off\"\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 },\n \"displayName\": \"est\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -167697,7 +167697,7 @@ "_postman_previewlanguage": "json" }, { - "id": "070ac2ce-4c40-4daf-936d-23bf2f98c18b", + "id": "ad3832c9-d654-48c4-bf51-bd7a7b9d136a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -167732,7 +167732,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 },\n \"displayName\": \"est sint off\"\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 },\n \"displayName\": \"est\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -167754,7 +167754,7 @@ "_postman_previewlanguage": "json" }, { - "id": "92b3148b-8b1c-43b8-8b65-afb25fe60ccb", + "id": "c4e9c133-be54-4ec5-9300-5c346bac4b18", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -167789,7 +167789,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 },\n \"displayName\": \"est sint off\"\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 },\n \"displayName\": \"est\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -167817,7 +167817,7 @@ } }, { - "id": "c62b659c-a9c6-4493-88d9-5ce1fe8d250b", + "id": "fce55e07-61eb-44cb-a7e9-f74c353fe54a", "name": "Patch Workflow", "request": { "name": "Patch Workflow", @@ -167871,7 +167871,7 @@ }, "response": [ { - "id": "80f0e6a5-592a-4146-8a9b-71eb704f63b4", + "id": "3a03d674-0ac3-4133-a816-5fa504350670", "name": "The Workflow object", "originalRequest": { "url": { @@ -167923,12 +167923,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 \"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 },\n \"displayName\": \"labore lab\"\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 \"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 },\n \"displayName\": \"ex voluptate Lorem non eiusmod\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "4d49b38b-b8bc-4080-aecb-04ec2b5d8bd8", + "id": "c49af36c-1552-4234-acea-7bfaf5902865", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -167985,7 +167985,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7915f041-7480-422a-aeaf-bcd6ca3dda58", + "id": "775530df-9b73-4347-8fff-e37bcd4c13b1", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -168042,7 +168042,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c6f20c08-a40d-49b2-969c-cb7162360cf7", + "id": "1bcb2f58-e147-4ff2-939d-43f289e98de8", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -168099,7 +168099,7 @@ "_postman_previewlanguage": "json" }, { - "id": "233c95dd-7cd5-41d4-b471-3ff3f3aea28b", + "id": "3bbeee5f-b903-431b-a71b-0b7e5eef86ee", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -168156,7 +168156,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2d6a76a3-bf8e-41e4-a1e6-47129b1d4e32", + "id": "24d52de2-8156-41c0-91d6-436c69b38e7c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -168219,7 +168219,7 @@ } }, { - "id": "e88da067-9014-4de4-b564-1fc0eb853f89", + "id": "f22e9ed8-a7ef-4926-bbe2-9ac4549260ac", "name": "Delete Workflow By Id", "request": { "name": "Delete Workflow By Id", @@ -168260,7 +168260,7 @@ }, "response": [ { - "id": "b5d3a3ea-8b98-45a1-bb48-efa41c0d565e", + "id": "9b24eae5-5bb9-49d5-a3bd-bb136d517c67", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -168294,7 +168294,7 @@ "_postman_previewlanguage": "text" }, { - "id": "7037d9c7-cf9b-4315-b064-77b1d88a6ba2", + "id": "dc16e12a-afd3-4590-8bee-ffc547b9bbe0", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -168338,7 +168338,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4a51da01-f92d-4580-b605-ee9fa30b0391", + "id": "fc3c91f6-1aa7-471e-a944-2b7611ea92c1", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -168382,7 +168382,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ed162c40-bbb2-4712-815f-66888b51f73e", + "id": "361d4852-a28a-4641-93b6-05b7f38c0a5c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -168426,7 +168426,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f10eba04-2492-4010-b954-229c4700c7b0", + "id": "306bf540-7cac-48cf-be40-7ae704a852be", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -168470,7 +168470,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0d22d5b4-af33-40f2-89ba-ba42eccac1b8", + "id": "c589f808-0e73-4003-bbe4-acd83056f7c0", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -168520,7 +168520,7 @@ } }, { - "id": "01112638-8e77-4ca2-8d86-1ee458cca4a1", + "id": "344dd973-e75e-4a02-b404-6a01c1076218", "name": "Create Workflow", "request": { "name": "Create Workflow", @@ -168568,7 +168568,7 @@ }, "response": [ { - "id": "57c9359d-5678-4963-9246-7a367e9abd7d", + "id": "5a083070-ef3a-4aff-938a-c62b3285d587", "name": "Event Trigger", "originalRequest": { "url": { @@ -168620,12 +168620,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 \"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 },\n \"displayName\": \"labore lab\"\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 \"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 },\n \"displayName\": \"ex voluptate Lorem non eiusmod\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f2e51a0c-0952-41be-97b5-acb38272a4cd", + "id": "411ffbdf-aee0-43a4-b09e-8c965536febe", "name": "Scheduled Trigger", "originalRequest": { "url": { @@ -168677,12 +168677,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 \"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 },\n \"displayName\": \"labore lab\"\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 \"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 },\n \"displayName\": \"ex voluptate Lorem non eiusmod\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "0d0cada1-344d-4225-83dc-5d0c794c7eb2", + "id": "0b3fb90f-f1b3-4f92-98e1-18f1fe702c8e", "name": "External Trigger", "originalRequest": { "url": { @@ -168734,12 +168734,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 \"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 },\n \"displayName\": \"labore lab\"\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 \"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 },\n \"displayName\": \"ex voluptate Lorem non eiusmod\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "5e15c6a9-c799-4ac0-9183-7f613b407273", + "id": "9c34a100-cf19-44c1-9713-ef47d29aff57", "name": "Event Trigger", "originalRequest": { "url": { @@ -168796,7 +168796,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5196c3b8-5679-42cc-9e4b-33ff8b27305c", + "id": "8c58adac-d316-4e4b-a96e-8b7622f1a4fe", "name": "Scheduled Trigger", "originalRequest": { "url": { @@ -168853,7 +168853,7 @@ "_postman_previewlanguage": "json" }, { - "id": "991f4401-b65b-48d5-9e31-fd7d785459fe", + "id": "a330e7f1-55fd-4111-9a87-9f40a65a1a36", "name": "External Trigger", "originalRequest": { "url": { @@ -168910,7 +168910,7 @@ "_postman_previewlanguage": "json" }, { - "id": "43b3af82-45de-4b9f-be63-c9eb1e90168d", + "id": "cd61cdf2-35fb-428b-b46d-dd383a702723", "name": "Event Trigger", "originalRequest": { "url": { @@ -168967,7 +168967,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3f4188e0-e0bc-4edd-bb26-0af0b7aa6dca", + "id": "e1262573-95f0-4c80-af6a-94556485ce28", "name": "Scheduled Trigger", "originalRequest": { "url": { @@ -169024,7 +169024,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c4216814-cb1b-4171-9450-f4a1b03d50fb", + "id": "b362f2b3-7e06-4b09-b671-a83d8d6dfe2c", "name": "External Trigger", "originalRequest": { "url": { @@ -169081,7 +169081,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7f6e5c53-3e0c-40f0-a35c-dbc42595cfa4", + "id": "02c5bd46-9a4c-4df8-8ea1-3714e606cb48", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -169138,7 +169138,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7deaa6da-a860-4bef-aeb9-7dcb46d825de", + "id": "c71a7c41-fb83-4424-8d25-f9a62893cd05", "name": "Scheduled Trigger", "originalRequest": { "url": { @@ -169195,7 +169195,7 @@ "_postman_previewlanguage": "json" }, { - "id": "89728218-3d92-4cce-909e-6509c1b23c12", + "id": "4a50a814-1ced-4d4f-ac65-bc73c43a6970", "name": "External Trigger", "originalRequest": { "url": { @@ -169252,7 +169252,7 @@ "_postman_previewlanguage": "json" }, { - "id": "48c6c1b7-5019-471b-91ef-364e8e5a7204", + "id": "e893be17-3aae-4b01-8753-6b2f669aa659", "name": "Event Trigger", "originalRequest": { "url": { @@ -169309,7 +169309,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a35cec78-21e9-414e-9797-857fcddb8887", + "id": "579802d0-1f57-4f15-9a30-79fe6170d648", "name": "Scheduled Trigger", "originalRequest": { "url": { @@ -169366,7 +169366,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dd87d4e3-a8ea-47e8-a06d-b53020237db2", + "id": "82b9cb99-17ff-4b73-8cd8-5767214d4844", "name": "External Trigger", "originalRequest": { "url": { @@ -169423,7 +169423,7 @@ "_postman_previewlanguage": "json" }, { - "id": "266d9324-c632-4faf-b168-e311fb341b7e", + "id": "654cbce3-eac0-4c1b-94ba-064a47b1d36f", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -169480,7 +169480,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5a615e5e-56fa-47cb-bad8-fb330ef3d5e5", + "id": "1e120c67-6f96-44bf-bec3-7e491753cd46", "name": "Scheduled Trigger", "originalRequest": { "url": { @@ -169537,7 +169537,7 @@ "_postman_previewlanguage": "json" }, { - "id": "736fde6c-1981-47cd-8ea7-6379e29fbef1", + "id": "245953b0-254c-4621-8058-bf79c1adf9d9", "name": "External Trigger", "originalRequest": { "url": { @@ -169600,7 +169600,7 @@ } }, { - "id": "4ce6d767-fcc4-4255-90e9-2a2cb8b8d3ee", + "id": "2b6b9d7f-0c5c-4e4e-aca1-ac6c2d0861e1", "name": "Test Workflow By Id", "request": { "name": "Test Workflow By Id", @@ -169655,7 +169655,7 @@ }, "response": [ { - "id": "752893e9-9f94-494a-b4a1-e81ab04e8352", + "id": "6b6e9f45-0b05-418b-8645-9dc03f1d654c", "name": "The Workflow object", "originalRequest": { "url": { @@ -169713,7 +169713,7 @@ "_postman_previewlanguage": "json" }, { - "id": "298f7ede-b510-4c5e-9b2f-bd2c7f4063f6", + "id": "1ab35313-9109-4d02-ac70-ea044ec9c437", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -169771,7 +169771,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7049f205-5a25-409c-9d2e-13f086bc2b45", + "id": "da8744f1-3370-431b-8e04-c421cca50a28", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -169829,7 +169829,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e583bba2-b430-4217-9d0d-707cd81f43c4", + "id": "4aab6685-239f-48e5-8d89-1f3876137663", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -169887,7 +169887,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b485ce3e-d932-4cfa-8d0d-21d19f2e766c", + "id": "d451fbac-aff4-4fb6-a763-739e9004ede8", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -169945,7 +169945,7 @@ "_postman_previewlanguage": "json" }, { - "id": "57c88ade-140b-4188-98c5-9e398652c359", + "id": "dd08120e-c0ad-44b4-8f8b-f7cda91eb6fb", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -170009,7 +170009,7 @@ } }, { - "id": "297baef9-660e-4ef0-b062-97a45706fa42", + "id": "9501117d-451f-4f25-aa59-861c099bde5a", "name": "List Workflow Executions", "request": { "name": "List Workflow Executions", @@ -170088,7 +170088,7 @@ }, "response": [ { - "id": "7d2eecbc-7bbd-4d29-a882-be4e8afb72af", + "id": "2d071497-75a9-455c-9d37-a1214440bd65", "name": "List of workflow executions for the specified workflow.", "originalRequest": { "url": { @@ -170170,7 +170170,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1d2c1f87-d022-48da-a82a-1cb39562b2cf", + "id": "18aec09d-bb1e-4320-be39-06456868bee6", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -170252,7 +170252,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a19f7485-cc82-44f4-9d96-4957f5ee8ee9", + "id": "ffe2c805-bff9-4c4e-9b39-f588e20ed3a8", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -170334,7 +170334,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e33b39d6-9ad5-49fb-9b3e-55c9b1f7656c", + "id": "f32580bb-88a4-408b-97ef-dd4c1628ba67", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -170416,7 +170416,7 @@ "_postman_previewlanguage": "json" }, { - "id": "95709d6a-8405-4fee-b448-8516fa5fd213", + "id": "b905bbfb-0019-4b29-ac92-d8fc2a7da884", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -170498,7 +170498,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2a478b33-c05f-48b4-b108-7d91aae62976", + "id": "c30459fa-8a15-40df-86b8-e1cd952c8ca8", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -170580,7 +170580,7 @@ "_postman_previewlanguage": "json" }, { - "id": "80061aa9-e062-43a1-a4bb-ff2e1e4377ef", + "id": "ec7e8432-b132-45b7-86ae-a33af2d80c8e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -170668,7 +170668,7 @@ } }, { - "id": "9c64e3a0-626c-4006-bf07-79217cdb738e", + "id": "c00f0c6b-4b12-45aa-ae42-fa9e41a82764", "name": "Get Workflow Execution", "request": { "name": "Get Workflow Execution", @@ -170709,7 +170709,7 @@ }, "response": [ { - "id": "209d0eee-fa0f-45af-aab1-aa8a843b33d7", + "id": "33a9dffd-ba92-40ca-be99-a1cbdbbe5191", "name": "Workflow execution.", "originalRequest": { "url": { @@ -170753,7 +170753,7 @@ "_postman_previewlanguage": "json" }, { - "id": "33194f3c-f2f6-40e7-b3f5-66534e97aab9", + "id": "4c601a24-39c2-48b0-b803-67aa4f9e5023", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -170797,7 +170797,7 @@ "_postman_previewlanguage": "json" }, { - "id": "892de551-4530-4fda-a931-97eadd50a439", + "id": "28ba4f60-167c-4e6e-8afa-6cd164974377", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -170841,7 +170841,7 @@ "_postman_previewlanguage": "json" }, { - "id": "737ecade-9d19-4d8b-8b9b-eed28f7f16d5", + "id": "4159d4d6-504f-4d6e-9e8c-0f6017aae51a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -170885,7 +170885,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0b11c91f-38fc-409f-9675-e13ae886fedb", + "id": "d863d0ae-b68b-4738-ba85-d333341e38cd", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -170929,7 +170929,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3e87c6a6-dea3-44ed-8edb-97a3eba1e470", + "id": "15c68022-e86e-431a-90fb-33328feb6b26", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -170973,7 +170973,7 @@ "_postman_previewlanguage": "json" }, { - "id": "02cf2353-e1c6-46f0-a237-eaf8d2a54fe3", + "id": "d90d29d3-5b49-4fd7-94fe-0f4beafda446", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -171023,7 +171023,7 @@ } }, { - "id": "410f9c4d-9308-42d3-b800-98dcf318146f", + "id": "eed3f0a0-65a2-442f-afcd-9cb597d62cb3", "name": "Get Workflow Execution History", "request": { "name": "Get Workflow Execution History", @@ -171065,7 +171065,7 @@ }, "response": [ { - "id": "a530a94c-6561-4e74-9ce8-247378c6a4dc", + "id": "99768929-22bb-4022-b77d-0ab20f4e9ed3", "name": "List of workflow execution events for the given workflow execution", "originalRequest": { "url": { @@ -171110,7 +171110,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6127415c-d78d-4531-b4e9-b430c9f46650", + "id": "ce795cb9-0b34-41a5-8ea7-a92b323323f1", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -171155,7 +171155,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6be0b3fc-277e-4309-b615-6aa037e73ec9", + "id": "0d72198f-aca1-44c5-b867-0a95a032a650", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -171200,7 +171200,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1bf55fc2-a8f9-47c4-bd07-9ce2140222de", + "id": "0df99136-0008-4fc0-a1cc-ab7e2a799529", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -171245,7 +171245,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e85c98ed-4026-407e-bd9d-8cecc2f91670", + "id": "6b14b253-ce99-445f-8403-690147b6fc53", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -171290,7 +171290,7 @@ "_postman_previewlanguage": "json" }, { - "id": "195586c3-a70f-4663-8ae0-af6af751c2e5", + "id": "d23a2f94-3a50-4356-8cc7-77f71ba197b2", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -171335,7 +171335,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a0f41705-9ed3-4f00-9447-2caa8c7bb75e", + "id": "dc8e483e-9c00-4ed7-a9ed-8eb88ae13772", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -171386,7 +171386,7 @@ } }, { - "id": "0ef45347-a329-47e5-86bc-839fdb3a8c9a", + "id": "49de640d-4138-4f04-9952-d693573d8ebd", "name": "Cancel Workflow Execution by ID", "request": { "name": "Cancel Workflow Execution by ID", @@ -171428,7 +171428,7 @@ }, "response": [ { - "id": "b0a2a6cd-0736-494b-9b6d-6d2fff704b40", + "id": "b989fcd0-d770-4b49-abad-d6663687c2dd", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -171463,7 +171463,7 @@ "_postman_previewlanguage": "text" }, { - "id": "2c44af72-5e71-4643-9502-f7086b495d8f", + "id": "27228764-bee8-4cb5-96f6-6aa1a5a16c2e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -171508,7 +171508,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d56c9346-a1b7-4f7b-9862-9cbdf3fd5264", + "id": "20e1bb3a-7638-439c-8d7c-995b47d56ad4", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -171553,7 +171553,7 @@ "_postman_previewlanguage": "json" }, { - "id": "85544bd9-06d7-43f7-a672-0a3f87639a95", + "id": "0314e227-6ba7-4aef-b141-ef575561bb2b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -171598,7 +171598,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4bc43f0c-23a7-4ee9-ad4e-9a4a08578b94", + "id": "dc1b81a4-cea4-4f91-878a-3abe98d8767f", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -171643,7 +171643,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2a280846-8938-4bd3-afb6-06087f70862e", + "id": "043f3688-418d-418a-b9b4-08297f791ad1", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -171688,7 +171688,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bff6cebd-4909-443a-a4cc-04d2f8d9cfeb", + "id": "1fbe9634-a944-4e6c-b126-b6ad28218313", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -171739,7 +171739,7 @@ } }, { - "id": "2fc7f8e5-7f26-4a1a-894e-6329f5400cba", + "id": "9810c704-a101-4a79-9479-0cdccf7b95bc", "name": "List Complete Workflow Library", "request": { "name": "List Complete Workflow Library", @@ -171787,7 +171787,7 @@ }, "response": [ { - "id": "2e3dc6f9-c96b-4789-9d99-437897050408", + "id": "72c296b4-4302-4d71-99d5-ba4388b4ced6", "name": "List of workflow steps", "originalRequest": { "url": { @@ -171849,7 +171849,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a98aa44b-13fb-42c6-bc28-dd6f79c3f63d", + "id": "64541cc9-60b6-4220-9925-86c5cbc8b932", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -171911,7 +171911,7 @@ "_postman_previewlanguage": "json" }, { - "id": "23305cd5-51ac-4e65-8bf4-28d07824d92c", + "id": "2f7cad14-5fe7-4b65-9ac3-d6a72af067ee", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -171973,7 +171973,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3284fc18-f5ce-4628-9ff2-d826e9ace669", + "id": "71a548cf-ddfb-44d2-821c-f9346051f7d1", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -172035,7 +172035,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c19ece39-093b-4598-bd9f-ecc1a90b5201", + "id": "4e2b6e8e-cff7-4609-be5f-99cafcf21ea6", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -172097,7 +172097,7 @@ "_postman_previewlanguage": "json" }, { - "id": "58be22db-3cd2-4b30-9421-5c003d213b06", + "id": "1187c439-9b73-493a-adcf-f65f7ee649df", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -172165,7 +172165,7 @@ } }, { - "id": "05642e97-6821-4d58-97ed-4c2f14e6bbbf", + "id": "729b1f2f-8242-45f3-af7a-7dd0cab11a5c", "name": "List Workflow Library Actions", "request": { "name": "List Workflow Library Actions", @@ -172223,7 +172223,7 @@ }, "response": [ { - "id": "7c6704a4-7870-4551-b6ad-e5766a0e1cac", + "id": "5b2a45ad-9b2b-45c2-bf97-702dcc37032e", "name": "List of workflow actions", "originalRequest": { "url": { @@ -172295,7 +172295,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9f34a212-c87a-4dce-90ea-c1a2482227f9", + "id": "7c9f662d-14a4-41bb-9cef-394e9403e3d6", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -172367,7 +172367,7 @@ "_postman_previewlanguage": "json" }, { - "id": "50800aef-d41e-4745-b5cd-248ab444dbea", + "id": "bc29ddb4-95b0-4e24-a6f3-484a0d8be762", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -172439,7 +172439,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9706a662-4127-4a5f-95d7-b4af29e49d09", + "id": "a0e94878-7985-4954-af5f-47de68b22f15", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -172511,7 +172511,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6b46cec3-4823-402f-968a-824ea3f77315", + "id": "d3b00218-7ed5-4201-9a8e-3c7f4b4a12da", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -172583,7 +172583,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b7436876-1291-4b3d-a4fb-38da783b265d", + "id": "dcd6e7df-a4e8-4580-93d9-d3756da3c27d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -172661,7 +172661,7 @@ } }, { - "id": "c7467bcf-1b49-499b-b3f2-27719bf85828", + "id": "0e788a30-cf08-49bb-b029-0c4a2b623e00", "name": "List Workflow Library Triggers", "request": { "name": "List Workflow Library Triggers", @@ -172719,7 +172719,7 @@ }, "response": [ { - "id": "810f4e91-8eff-47bb-8479-116697746de9", + "id": "809e9456-672b-4744-9e4f-a2a22ee6a018", "name": "List of workflow triggers", "originalRequest": { "url": { @@ -172791,7 +172791,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b93846c6-f369-42a3-9551-0f3fdab363ca", + "id": "6e07d2ec-67d9-4b1d-b2aa-87397d1b7cb8", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -172863,7 +172863,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9fa15f81-6b35-4c21-9f3c-ab92fc1edbb9", + "id": "4bd0f5e7-18ff-4f39-ad9b-fa891f2df810", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -172935,7 +172935,7 @@ "_postman_previewlanguage": "json" }, { - "id": "01deaacd-6bad-41f5-a9d5-7bdbcbc84cef", + "id": "70c437bd-da98-47ec-a94e-b63e959ed655", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -173007,7 +173007,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b4b7eec3-a6b4-45d2-8517-5340d8392577", + "id": "c1c27aea-c8ea-49df-adc7-e8f8fa756949", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -173079,7 +173079,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bac8c267-795e-41fb-8fd4-85ca4633dd77", + "id": "c9025794-d7d9-4128-88b7-dbfb30ce9bc3", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -173157,7 +173157,7 @@ } }, { - "id": "9b5f275a-c2ad-4aad-ac5e-a03dbf3d9785", + "id": "be5c8cf9-d825-4e45-baae-3b197ba0f773", "name": "List Workflow Library Operators", "request": { "name": "List Workflow Library Operators", @@ -173187,7 +173187,7 @@ }, "response": [ { - "id": "51006dfe-9838-4e08-8b32-b182ef9724dd", + "id": "b43683cb-ab29-45d8-a047-f50526f68ca5", "name": "List of workflow operators", "originalRequest": { "url": { @@ -173231,7 +173231,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dfed753f-03ff-4c19-a226-6d7e3304701f", + "id": "a50fc1c4-7101-4ea8-96e0-41259c0cffd6", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -173275,7 +173275,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fb063da5-98d4-4a90-9dd4-4ab4c27f1e4f", + "id": "786c68f8-b582-4a88-9a62-06bdc8b7d2c4", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -173319,7 +173319,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5c2dc482-2b04-4e62-86c1-f2ddc39576cd", + "id": "9dd9b712-dc9d-4dee-af57-378dfb5ffdf1", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -173363,7 +173363,7 @@ "_postman_previewlanguage": "json" }, { - "id": "af24f6a1-67b2-4715-96a5-4c5f97275cf6", + "id": "b323d0f0-5113-49de-bc00-06e5625c1288", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -173407,7 +173407,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ee50fadd-0559-4c1e-ba3d-ac2ebc36be9a", + "id": "c2a76bff-f567-4c4a-95e0-897677281a63", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -173457,7 +173457,7 @@ } }, { - "id": "9b092310-b0e5-423c-b9c4-be566330868c", + "id": "b93a890f-6845-46f1-aa59-add48ef4c5ed", "name": "Generate External Trigger OAuth Client", "request": { "name": "Generate External Trigger OAuth Client", @@ -173500,7 +173500,7 @@ }, "response": [ { - "id": "a9bdf647-af11-4d50-b965-03956878ee5e", + "id": "3fcfcf44-f32b-4c17-a7b1-1c5ca499bcff", "name": "The OAuth Client object", "originalRequest": { "url": { @@ -173546,7 +173546,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0cbdf984-3800-4962-ace7-67b5e2f7223c", + "id": "21dd5797-2c74-4247-b00b-a2b56bb7bb3a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -173592,7 +173592,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c22a8aee-4bd5-4e97-94c6-4182b19819ea", + "id": "14061f95-5739-4f07-b227-9f54251a8590", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -173638,7 +173638,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f59962d9-a3dd-4811-be2d-170ff08260a1", + "id": "df6b6893-5f42-4b7e-943c-e47eebb404b8", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -173684,7 +173684,7 @@ "_postman_previewlanguage": "json" }, { - "id": "da8fc641-5511-4173-bf96-dbad289c465a", + "id": "0ce1cc5a-d184-4550-b29c-694e733c4e72", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -173730,7 +173730,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ab8982ed-7f76-4c26-a8cf-633097540972", + "id": "8be9ce28-d801-471b-a004-b9543ad4e9f4", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -173782,7 +173782,7 @@ } }, { - "id": "4dc8eca6-6d2b-4e5f-9ef6-fd57a661ca30", + "id": "851364fd-a5bb-42a3-824c-3b0c4d8476db", "name": "Execute Workflow via External Trigger", "request": { "name": "Execute Workflow via External Trigger", @@ -173838,7 +173838,7 @@ }, "response": [ { - "id": "77841a0f-a539-4264-88c7-16d6049dc4f0", + "id": "0980d234-f940-4409-bb42-42b0dcf1f05f", "name": "The Workflow object", "originalRequest": { "url": { @@ -173897,7 +173897,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fa3f4831-9a75-43e3-8c77-e4a771411d84", + "id": "6b8122e6-938e-4c42-9938-b5800d48a70d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -173956,7 +173956,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d3344969-6026-4e58-a700-614f68258253", + "id": "3b98a161-49b9-4707-b1f8-c99d02014412", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -174015,7 +174015,7 @@ "_postman_previewlanguage": "json" }, { - "id": "27545815-4b4d-4556-85f0-2d914cc05734", + "id": "433bd4e1-0692-4138-b315-13a688afcd5d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -174074,7 +174074,7 @@ "_postman_previewlanguage": "json" }, { - "id": "87123cdc-ad3b-43fe-87db-9b2f64845d3a", + "id": "b78083e4-abc8-44a8-afc8-f89507df3468", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -174133,7 +174133,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3e13f363-245e-4597-9de3-31072ef59d15", + "id": "09848dc0-b652-405d-b468-e06ccad23944", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -174198,7 +174198,7 @@ } }, { - "id": "aae6655d-a9a1-4c99-9633-8b846c00964e", + "id": "632d3c35-00bf-4530-bcc1-bad636a53c2a", "name": "Test Workflow via External Trigger", "request": { "name": "Test Workflow via External Trigger", @@ -174255,7 +174255,7 @@ }, "response": [ { - "id": "762b3b31-fafd-4d4b-a969-a11671f08a3e", + "id": "ab2b1ab6-c28a-45f2-9eb4-e792c39143fc", "name": "Responds with the test input", "originalRequest": { "url": { @@ -174315,7 +174315,7 @@ "_postman_previewlanguage": "json" }, { - "id": "08c8ac02-7a5f-454f-87a5-a75533f09ff6", + "id": "4c0c1e5c-1405-4766-bb9c-fda2df523a5a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -174375,7 +174375,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8c0e5f40-1fb6-45aa-b201-92b49d5708a6", + "id": "9815b808-1612-4e11-8696-9b62106e42d6", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -174435,7 +174435,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9c9a70bd-4aa0-470a-aa41-b9e9c3e5cba4", + "id": "d7cd6159-1064-4fd2-bed6-f4ea81773edf", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -174495,7 +174495,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bc56f0d6-6b7d-4403-9112-7723fda576a9", + "id": "fd165fb0-5430-429e-b3f3-f443e5f9f3d1", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -174555,7 +174555,7 @@ "_postman_previewlanguage": "json" }, { - "id": "97b6d3cb-59ef-4502-be7a-aad2b1bbc455", + "id": "2d750f82-f57c-4898-b4d4-bf071be3d150", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -174627,7 +174627,7 @@ "description": "", "item": [ { - "id": "67a22f31-2e60-4998-ab7d-15d9c8e9bb39", + "id": "54e1df48-374f-4a8a-94c7-b940cb17575d", "name": "Create a vendor connector mapping", "request": { "name": "Create a vendor connector mapping", @@ -174669,7 +174669,7 @@ }, "response": [ { - "id": "a7f48b0f-71b2-404a-8d08-edcec8747512", + "id": "a5bc3bb7-cbdf-41c8-9fad-0175def76347", "name": "Successfully created a new vendor connector mapping.", "originalRequest": { "url": { @@ -174725,7 +174725,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9370ff4e-0cb4-4db9-806f-efdd3feb4870", + "id": "f1a3e9a4-9860-4c30-a5df-c78983d20afe", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -174781,7 +174781,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4c8f2380-14a5-4a5a-8a1f-c396ecc9903e", + "id": "8d9129f2-f943-4644-8f48-62cad2f8804c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -174837,7 +174837,7 @@ "_postman_previewlanguage": "json" }, { - "id": "33354a97-3292-4f25-a5a0-0fadcf205dad", + "id": "16ccb590-3145-4e5f-a434-a2753cb94886", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -174893,7 +174893,7 @@ "_postman_previewlanguage": "json" }, { - "id": "009f157e-97ad-4556-8112-feace806a9aa", + "id": "e0544499-39f8-4a79-8190-a710f1eec475", "name": "Method Not Allowed - indicates that the server knows the request method, but the target resource doesn't support this method.", "originalRequest": { "url": { @@ -174949,7 +174949,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3be2ca38-e1a3-4595-b45e-390a81b15fc7", + "id": "443b0073-98c1-4e54-83de-d81f10247623", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -175005,7 +175005,7 @@ "_postman_previewlanguage": "json" }, { - "id": "64ac371f-4603-43c3-ac6b-90788cec853a", + "id": "d7cd8787-e313-4864-b552-571ded319cba", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -175067,7 +175067,7 @@ } }, { - "id": "1efdfc54-1895-4efb-8047-53b6a1903492", + "id": "ee05af05-e1a2-4a0d-a923-1dc47e5c53cd", "name": "Delete a vendor connector mapping", "request": { "name": "Delete a vendor connector mapping", @@ -175109,7 +175109,7 @@ }, "response": [ { - "id": "f7f1fff1-1fdd-44d9-95d4-0879b4580f82", + "id": "0d579c02-e51f-4e1d-a091-9dbdcf4042f4", "name": "Successfully deleted the specified vendor connector mapping.", "originalRequest": { "url": { @@ -175165,7 +175165,7 @@ "_postman_previewlanguage": "json" }, { - "id": "73df07d3-1143-4313-a2f5-da911a4607f5", + "id": "86b2be51-b2c5-4012-aa12-a47dfb66ac66", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -175221,7 +175221,7 @@ "_postman_previewlanguage": "json" }, { - "id": "44bd1560-63e7-40ca-b4b4-5b2bf16ba85b", + "id": "48b71f51-3604-418b-b404-4e433c247e57", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -175277,7 +175277,7 @@ "_postman_previewlanguage": "json" }, { - "id": "efc75b35-ab22-4495-9a5c-41fba1237a6d", + "id": "164391bc-cf17-40ec-b536-7d5cbaea0c82", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -175333,7 +175333,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b10faef6-683d-41d9-899f-ff764b838e8d", + "id": "4133585c-e448-4f87-9047-2aac00ac21a7", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -175389,7 +175389,7 @@ "_postman_previewlanguage": "json" }, { - "id": "96b5c762-91e0-4d85-9e9a-ef9af2b1e404", + "id": "bf2439c9-bdb7-48ee-8907-5616f9b29e56", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -175445,7 +175445,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a8d4fa85-f23c-4385-a33a-6f4472412a18", + "id": "548d0d56-4456-4884-ba93-e86e83a14137", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -175587,7 +175587,7 @@ } ], "info": { - "_postman_id": "08134800-9c17-40ae-9587-a37f66e11e53", + "_postman_id": "b7987b75-57de-4877-8cc8-50059658b562", "name": "Identity Security Cloud V3 API", "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json", "description": {